我正在建设中的应用。在其中一个子菜单中,我需要按钮的通用显示,因此我想进行一项活动,可以显示给定数量的所需按钮。
我已经成功地以编程方式实现了这一点,但我希望按钮的总网格能够填满它们所放置的整个父级,这恰好是横向屏幕的3/4。按钮数量从16-38不等。!
我还成功地使用其他网格按钮(xml),重量值和条目的match_parent值来实现这一点。
当我以编程方式为按钮或行指定match_parent值时,它会占用整个父布局,而不是像我期望的那样共享它,即使它们具有相同的权重值1.0f
相关代码如下。我也想发布图片,但我没有这样做的声誉。
`LinearLayout layout =(LinearLayout)findViewById(R.id.linear_custom_draw); layout.setOrientation(LinearLayout.VERTICAL);
int columns = Math.min(6, 4+category); //sets number of buttons per row to 4-6
for (int i = 0; i < 4+category; i++) {
LinearLayout row = new LinearLayout(this);
row.setLayoutParams(new android.view.ViewGroup.LayoutParams(android.view.WindowManager.LayoutParams.MATCH_PARENT,
android.view.WindowManager.LayoutParams.MATCH_PARENT)); //上面的行是填充整个linearlayout的行,即使有更多的条目,不像我的xml定义的尝试。 row.setOrientation(LinearLayout.HORIZONTAL); row.setWeightSum(1.0F); if(i%2 == 0){ row.setBackgroundColor(getResources()的getColor(R.color.listview_red_backgr_color)); }
for (int j = 0; j < columns; j++) {
int index = (i*columns)+j;
if(formations.size() > index){
Button btnTag = new Button(this);
btnTag.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
btnTag.setText(formations.get(index).getName());
btnTag.setTextColor(getResources().getColor(R.color.black_overlay));
btnTag.setId(formations.get(index).getId());
row.addView(btnTag);
}
}
layout.addView(row);`
答案 0 :(得分:1)
尝试使用TableLayout。每一行将强制执行整个元素以匹配具有相同权重的父级。您可以使用计数器以编程方式控制每行中的按钮数。循环结束计数器添加按钮然后添加新的表行
TableLayout tbl=new TableLayout(context);//create table
TableRow tr=new TableRow(context);//create table row
tr.addView(view);//add your button instead of the view
tbl.addView(tr);//add the row into the Table
在XML文件中
<TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/keypad"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:stretchColumns="*">
<TableRow>
<Button android:id="@+id/keypad_1" android:text="@string/_1"></Button>
<Button android:id="@+id/keypad_2" android:text="@string/_2"></Button>
<Button android:id="@+id/keypad_3" android:text="@string/_3"></Button>
</TableRow>
</TableLayout>