防止文本被裁剪并附加到下一行,如果在android中的表格布局中剪裁

时间:2013-07-01 16:13:06

标签: android tablelayout

我正在动态实现TableLayout。它由多个TextView组成。当我在TableRow上动态添加TextView时,它们会被剪切到屏幕边界。根据要求,需要将剪切的文本追加到下一个TableRow。这是我的代码。需要帮助..

private void init(){

    arrayList=new ArrayList<String>();
    arrayList.add("Name");
    arrayList.add("Address");
    arrayList.add("obj");
    arrayList.add("age");
    TableLayout.LayoutParams params = new TableLayout.LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.WRAP_CONTENT,0.1f);
    TableLayout rl = (TableLayout) this.findViewById(R.id.tblLayout);

    for(int i = 0; i<50; i++)
    { 
        tr = new TableRow(this);
        for(int j=0;j<50;j++){
            tv = new TextView(this);
            tv.setOnTouchListener(this);
            tv.setText(arrayList.get(j).toString());
            Log.e("text", tv.getText().toString());
            tr.addView(tv);
            tv.setPadding(5, 5, 0, 0);

            tr.setId(i);
        }
        tr.setPadding(0, 1, 0, 1); 
}

1 个答案:

答案 0 :(得分:0)

在TextView上调用setSingleLine(false)。这样,如果需要它会自动换行并占用更多的垂直空间。