0

我试图找出有人如何制作 TableView 而无需在 XML 文件中指定它。我有两个活动:

  1. 取行数和列数
  2. 使用给定的行和列创建一个 TableView(单元格填充 0 - 2 之间的随机数)

所以,这个工作正常,但是当我试图放置太多列时,显然这些数字几乎看不到。

第二个活动:

    public class TableCreator extends Activity {

    private String getRandomPoints(){
        Random rn = new Random();

        return new Integer(Math.abs(rn.nextInt()%3)).toString();
    }

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.table_creator);

        Bundle extras = getIntent().getExtras();
        int rows = extras.getInt("rows");
        int columns = extras.getInt("columns");


        TableLayout table = (TableLayout) findViewById(R.id.TableLayout);
        for(int i=0;i<rows;i++){
            TableRow row = new TableRow(this);
            row.setLayoutParams(new TableRow.LayoutParams(LayoutParams.MATCH_PARENT,LayoutParams.WRAP_CONTENT));

            for(int j=0;j<columns;j++){
                TextView tv = new TextView(this);
                tv.setText(getRandomPoints());
                tv.setLayoutParams(new TableRow.LayoutParams(0,LayoutParams.WRAP_CONTENT,1));
                tv.setGravity(Gravity.CENTER);

                row.addView(tv);
            }
            table.addView(row);
        }
    }
}

和 XML 文件:

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/TableLayout"
    android:stretchColumns="0,1"
    android:layout_weight="1"    
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >
</TableLayout> 

之后,我尝试在 xml 文件中添加一个 Horizo​​ntalScrollView,因此 TableView 位于其中。这引发了一个异常,因为系统无法确定 TableLayout 将使用的确切宽度和高度......

我还尝试以编程方式添加一个 Horizo​​ntalScrollView,但没有显示数字。我可以说我在这个网站上仔细搜索过相同的问题,但答案仍然与我的无关......

4

1 回答 1

0

在这里,您可以将布局设置为水平滚动视图,而表格布局是孩子

<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".EvacRouteTableActivity" >

<TableLayout android:id="@+id/TableLayout01" android:layout_width="match_parent" android:layout_height="wrap_content"  android:stretchColumns="0">

  <TableRow 
      android:id="@+id/TableRow01" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content">
    <TextView 
        android:id="@+id/TextView01" 
        android:background="@drawable/cell_shape"
        android:layout_width="match_parent" 
        android:layout_height="wrap_content" 
        android:text=" Evacuation Routes (To view route click name)"
        android:width="340dp"
        android:height="30dp"
        android:textStyle="bold"></TextView>

  </TableRow>

</TableLayout>  
于 2013-07-01T22:18:27.510 回答