@Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    addDocumentView(
        new ArticleBuilder()
            .append(
                testName,
                false,
                new RelativeSizeSpan(2f),
                new StyleSpan(Typeface.BOLD),
                new LeftSpan())
            .append(
                "<font color=0xFFC801>Justin Worland</font><font color=0x888888> @justinworland  Oct. 25, 2014</font>",
                false,
                new RelativeSizeSpan(0.8f),
                new StyleSpan(Typeface.BOLD),
                new DirectionSpan(Direction.RIGHT_TO_LEFT))
            .append(
                "<font color=0x888888>Updated: Oct. 25, 2014 2:34 PM</font>".toUpperCase(),
                true,
                new RelativeSizeSpan(0.6f),
                new StyleSpan(Typeface.BOLD))
            .append(
                "State health department staff will be on the ground at state airports",
                true,
                new RelativeSizeSpan(1.2f),
                new StyleSpan(Typeface.BOLD),
                new StyleSpan(Typeface.ITALIC))
            .append(
                "Healthcare workers returning to New York or New Jersey after treating Ebola patients in West Africa will be placed under a mandatory quarantine, officials announced Friday, one day after a Doctors Without Borders doctor was diagnosed with the virus in New York City. Illinois announced a similar policy Saturday, meaning it will be enforced in states with three of the five airports through which passengers traveling from the Ebola-stricken West African countries must enter the United States.",
                true,
                new RelativeSizeSpan(1f),
                new JustifiedSpan(),
                new DirectionSpan(Direction.RIGHT_TO_LEFT))
            .append(
                "N.J. Gov. Chris Christie and N.Y. Gov. Andrew Cuomo made the announcement as part of a broader procedural plan to help protect the densely packed, highly populated area from any further spread of the disease.",
                true,
                new RelativeSizeSpan(1f),
                new RightSpan(),
                new DirectionSpan(Direction.RIGHT_TO_LEFT))
            .append(
                "“Since taking office, I have erred on the side of caution when it comes to the safety and protection of New Yorkers, and the current situation regarding Ebola will be no different,” Gov. Cuomo said. “The steps New York and New Jersey are taking today will strengthen our safeguards to protect our residents against this disease and help ensure those that may be infected by Ebola are treated with the highest precautions.”",
                true,
                new RelativeSizeSpan(1f),
                new JustifiedSpan(),
                new StyleSpan(Typeface.ITALIC))
            .append(
                "New York and New Jersey state health department staff will be present on the ground at John F. Kennedy International Airport in New York and Newark Liberty Airport in New Jersey. In addition to implementing the mandatory quarantine of health care workers and others who had direct contact with Ebola patients, health department officials in each state will determine whether others should travelers should be hospitalized or quarantined.",
                true,
                new RelativeSizeSpan(1f),
                new JustifiedSpan(),
                new StyleSpan(Typeface.ITALIC))
            .append(
                "“The announcements mark a dramatic escalation in measures designed to prevent the spread of Ebola in the United States. Previously, only individuals with symptoms of Ebola would be quarantined upon entry to the U.S. under a federal rule from the Centers for Diseases Control and the Department of Homeland Security.”",
                false,
                new RelativeSizeSpan(1f),
                new JustifiedSpan()),
        DocumentView.FORMATTED_TEXT);
  }
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    ArrayList<HashMap<String, ?>> data = new ArrayList<HashMap<String, ?>>();
    data.add(
        new HashMap<String, Object>() {
          {
            put("Title", "Item 1");
          }
        });

    data.add(
        new HashMap<String, Object>() {
          {
            put("Title", "Item 2");
          }
        });

    data.add(
        new HashMap<String, Object>() {
          {
            put("Title", "Item 3");
          }
        });

    final ListView listview = (ListView) findViewById(R.id.list);
    SimpleAdapter adapter =
        new SimpleAdapter(
            this,
            data,
            R.layout.test_listview_item,
            new String[] {"Title"},
            new int[] {R.id.title});

    listview.setAdapter(adapter);
  }