0

プログラムでテーブル レイアウトを作成しました。ここに画像の説明を入力

ここで、各行の後に水平線を追加したいのですが、プログラムでそれを行う方法。テーブル レイアウトを作成するサンプル コード

ScrollView scrollView = new ScrollView(this);
TableLayout resultLayout = new TableLayout(this);
resultLayout.setStretchAllColumns(true);
resultLayout.setShrinkAllColumns(true);
TableRow tablerowMostRecentVehicle = new TableRow(this);
tablerowMostRecentVehicle.setGravity(Gravity.CENTER_HORIZONTAL);

TextView textViewMostRecentVehicle = new TextView(this);
textViewMostRecentVehicle.setText("Most Recent Vehicle Details");
textViewMostRecentVehicle.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 12);
textViewMostRecentVehicle.setTypeface(Typeface.SERIF, Typeface.BOLD);
tablerowMostRecentVehicle.addView(textViewMostRecentVehicle);
// ...
resultLayout.addView(tablerowMostRecentVehicle);
resultLayout.addView(tableRowRegistrationMark);
resultLayout.addView(tableRowMakeModel);
resultLayout.addView(tableRowColour);
resultLayout.addView(tableRowChasisNo);
resultLayout.addView(tableRowDateofFirstUse);
resultLayout.addView(tableRowTypeofFuel);
// ...
4

4 に答える 4

1

このコードを使用します。

View view = new View(this);
view.setBackgroundResource(R.drawable.line);
resultLayout.addView(view);

すべての表の行の後にこのコードを追加します。

于 2013-09-18T10:02:41.913 に答える
0
View view = new View(this);
view.setBackgroundColor(Color.GRAY);
tablerowMostRecentVehicle.addView(view);

お役に立てば幸いです。

于 2013-09-18T04:43:31.297 に答える
0

R.drawable.row_border :

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >

    <solid android:color="#ffffff" />
    <stroke android:width="3dp" android:color="#99cc00" />

</shape>

それから:

tbrow.setBackgroundResource(R.drawable.row_borders);
于 2013-09-18T09:49:36.360 に答える