1
我有一個在.xml文件中定義的表,但行和標題必須動態添加。我在填充寬度方面存在問題,在水平和垂直方向上使用表格行。我試過了stretchColumns參數,但它沒有幫助。什麼是最好的方式來做到這一點?如何在Android中將TableRow寬度設置爲max?
table = (TableLayout) findViewById(R.id.testList);
TableRow headerRow = new TableRow(this);
JSONObject obj;
obj = new JSONObject(loadJSONFromAsset());
JSONArray records = obj.getJSONArray("tests");
ArrayList<String> headers = new ArrayList<>();
headers.add("Header 1");
headers.add("Header 2");
headers.add("Header 3");
headers.add("Header 4");
headers.add("Header 5");
for(int i = 0; i < headers.size(); i++) {
TextView header = new TextView(this);
header.setText(headers.get(i));
header.setTextColor(Color.WHITE);
header.setBackgroundColor(Color.rgb(24, 116, 205));
header.setPadding(15, 15, 15, 15);
header.setTextSize(20);
header.setTextAlignment(View.TEXT_ALIGNMENT_CENTER);
header.setMaxLines(1);
headerRow.addView(header);
}
table.addView(headerRow);
和XML
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content"
android:layout_width="wrap_content">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<HorizontalScrollView
android:layout_height="wrap_content"
android:layout_width="match_parent">
<TableLayout
android:id="@+id/testList"
android:layout_height="match_parent"
android:layout_width="wrap_content">
</TableLayout>
</HorizontalScrollView>
</ScrollView>
</LinearLayout>
</GridLayout>
由於您的表格在滾動視圖內,因此它沒有寬度和高度的限制。因此無法確定哪個是* max *寬度。你只能手動設置 –
@VladMatvienko如何做到這一點沒有滾動視圖? – Sheppard25
我沒有說你不需要scrollView就可以做到。你需要決定哪個寬度是* max *。它是一些確切的值,如100dp,或者它是屏幕寬度,還是什麼? –