创建一个init()函数并指向表布局。然后创建所需的行和列。

public void init() {

TableLayout stk = (TableLayout) findViewById(R.id.table_main);

TableRow tbrow0 = new TableRow(this);

TextView tv0 = new TextView(this);

tv0.setText(" Sl.No ");

tv0.setTextColor(Color.WHITE);

tbrow0.addView(tv0);

TextView tv1 = new TextView(this);

tv1.setText(" Product ");

tv1.setTextColor(Color.WHITE);

tbrow0.addView(tv1);

TextView tv2 = new TextView(this);

tv2.setText(" Unit Price ");

tv2.setTextColor(Color.WHITE);

tbrow0.addView(tv2);

TextView tv3 = new TextView(this);

tv3.setText(" Stock Remaining ");

tv3.setTextColor(Color.WHITE);

tbrow0.addView(tv3);

stk.addView(tbrow0);

for (int i = 0; i < 25; i++) {

TableRow tbrow = new TableRow(this);

TextView t1v = new TextView(this);

t1v.setText("" + i);

t1v.setTextColor(Color.WHITE);

t1v.setGravity(Gravity.CENTER);

tbrow.addView(t1v);

TextView t2v = new TextView(this);

t2v.setText("Product " + i);

t2v.setTextColor(Color.WHITE);

t2v.setGravity(Gravity.CENTER);

tbrow.addView(t2v);

TextView t3v = new TextView(this);

t3v.setText("Rs." + i);

t3v.setTextColor(Color.WHITE);

t3v.setGravity(Gravity.CENTER);

tbrow.addView(t3v);

TextView t4v = new TextView(this);

t4v.setText("" + i * 15 / 32 * 10);

t4v.setTextColor(Color.WHITE);

t4v.setGravity(Gravity.CENTER);

tbrow.addView(t4v);

stk.addView(tbrow);

}

}

在onCreate方法中调用init函数:

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

requestWindowFeature(Window.FEATURE_NO_TITLE);

setContentView(R.layout.activity_main);

init();

}

布局文件如下:

android:id="@+id/scrollView1"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:background="#3d455b"

android:layout_alignParentLeft="true" >

android:id="@+id/hscrll1"

android:layout_width="fill_parent"

android:layout_height="wrap_content" >

android:id="@+id/RelativeLayout1"

android:layout_width="fill_parent"

android:layout_gravity="center"

android:layout_height="fill_parent"

android:orientation="vertical" >

android:id="@+id/table_main"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_centerHorizontal="true" >

看起来像:

296a52e961d3bf396d18f89005d2a28c.png

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐