我在tablelayout中有按钮。我把按钮动态地放在表格布局中
TableLayout tblHotels=(TableLayout) findViewById(R.id.tblLayout);
if(hotels != null){
int index=0;
for (int i=0; i<(hotels.length/2); i++) {
TableRow tblRow=new TableRow(getApplicationContext());
tblHotels.addView(tblRow);
tblRow.setLayoutParams(new TableLayout.LayoutParams(
TableLayout.LayoutParams.MATCH_PARENT,TableLayout.LayoutParams.MATCH_PARENT));
for (int j=0;j<2; j++)
{
tblRow.addView(hotels[index]);
hotels[index].setLayoutParams(new TableRow.LayoutParams(
TableRow.LayoutParams.MATCH_PARENT,TableRow.LayoutParams.MATCH_PARENT, 1.0F));
hotels[index].setOnClickListener(this);
index++;
}
}
}
但它出现在屏幕上我希望我的按钮宽度相同,高度稍高。我该怎么做?我的xmlfile就是这样的。
`<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.example.arzucaki.sherwoodhotels.Hotels"
android:weightSum="1"
>
<TableLayout
android:id="@+id/tblLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:alpha="0.6"
android:gravity="bottom"
android:orientation="vertical"
android:layout_alignParentTop="true">
</TableLayout>
</RelativeLayout>`
答案 0 :(得分:0)
您可以继续在xml文件中创建表行,并在dimens.xml文件中定义表行的高度:
以下是一个示例代表:
<TableRow
android:layout_width="match_parent"
android:layout_height="@dimen/table_row_height">
<TextView
android:text="Time"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="match_parent"
android:layout_column="1" />
<TextView
android:text="Time"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="match_parent"
android:layout_column="2" />
</TableRow>
为要在其各自文件夹中支持的所有分辨率添加dimens.xml文件。 例如。值,值-w820dp等 只需在这些文件夹中创建一个名为dimens的新文件,并按如下方式声明您的值:
<resources>
<!-- Table Row height -->
<dimen name="table_row_height">16dp</dimen>
根据您的要求,在值-w820dp下的另一个文件中该值会更高,可能是这样的:
<resources>
<!-- Table Row height -->
<dimen name="table_row_height">24dp</dimen>