行文本视图的行生成器

时间:2016-12-02 06:45:56

标签: java android

这是我的n应用程序的代码,我想在其中添加textview     动态点击一个按钮而不工作你能告诉我代码有什么问题,我只是一个初学者。     感谢你的期待。

textView.setText(Html.fromHtml(ReadStory.newString));

1 个答案:

答案 0 :(得分:0)

试试这个,

我假设您正在尝试动态添加表格和文本视图。所以我从layout xml中删除了现有的tablerows。

TableLayout tableLayout = (TableLayout) findViewById(R.id.table1);

save.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View view) {
    TableRow tableRow;
    TextView textView;
    for (int i = 0; i < 4; i++) {
    tableRow = new TableRow(this);
    for (int j = 0; j < 3; j++) {
        textView = new TextView(this);
        textView.setText("@@@@");
        textView.setPadding(20, 20, 20, 20);
        tableRow.addView(textView);
   }
   table1.addView(tableRow);
}}});

在XML中:

 <TableLayout
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:id="@+id/table1"/>