如何从子弹点中列出一个列表

时间:2016-01-05 00:08:19

标签: java android

public void printStarterservices(View view) {
    ((TextView) findViewById(R.id.smartliving_text))
      .setText("• Personal Care Services" + "• HouseHold Task" +
               "• Shopping Tasks" + "• Rehabilitation" +
               "• Smart Living" + "• Respite & Befriending Care" +
               "• Walking or Sleep overnight" + "• Cleaning" +
               "• Bed making and more");
}

1 个答案:

答案 0 :(得分:0)

最简单的方法是在您的商品之间添加\n换行符。

// ...
"• Personal Care Services" + "\n\n" +
"• HouseHold Task"

这将解决每个项目的新行。

替代方案是

  • 使用HTML文字<ul><li>Html.fromHtml()格式化TextView
  • 在LinearLayout或ListView中有多个TextView
  • 使用webview并显示html内容