我在android应用程序中组织布局有问题。我正在动态创建按钮并将这些代码添加到我的布局中:
LayoutInflater layoutInflater = (LayoutInflater)getBaseContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
for (int i = 0; i < NO_NUMBERS; i++){
Button btn = new Button(this);
btn = (Button) layoutInflater.inflate(R.layout.button, null);
btn.setId(2000+i);
Integer randomNumber = sort.getNumbersCopy()[i];
btn.setText(randomNumber.toString());
btn.setOnClickListener((OnClickListener) this);
buttonList.addView(btn);
list.add(btn);
}
我将它添加到LinearLayout:
<LinearLayout
android:id="@+id/buttonlist"
android:layout_alignParentLeft="true"
android:layout_marginTop="185dp"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:orientation="horizontal"
android:gravity="center_horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
</LinearLayout>
我正在导入这个.xml,我正在定义按钮布局:
<Button xmlns:android="http://schemas.android.com/apk/res/android"
android:textSize="26dp"
android:textStyle ="bold"
android:textColor="#ffffff"
android:background="@drawable/button"
android:layout_marginLeft="8px"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"/>
好吧,布局总是这样结束:
而不是像这样的东西(甚至按钮,方形按钮之间的间距):
总结一下:我必须:
答案 0 :(得分:51)
请注意,android:layout_*
属性为LayoutParams
。它们是父级的参数,并影响父级在该视图上执行布局的方式。您在按钮上指定了layout_margin
属性,但它们会被忽略。原因如下:
由于LayoutParams
特定于父视图类型,因此当您使用顶部的LayoutInflater
或其他layout_
属性来扩充布局时,需要提供正确父类型的实例布局中的级别视图将被删除。 (inflater不知道要生成什么类型的LayoutParams
。)
由于buttonList
是按钮视图的预期父级,因此请将inflate
行更改为:
btn = (Button) layoutInflater.inflate(R.layout.button, buttonList, false);
答案 1 :(得分:2)
在按钮上设置layout_weight
将导致按钮展开而不会在它们之间留出空间。 LinearLayout
永远不会在其子视图之间添加空格。
您应将每个人用FrameLayout
打包并在按钮上使用layout_gravity="center"
,然后在layout_weight="1"
上设置FrameLayout
。
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1">
<Button android:layout_{width,height}="wrap_content"
android:layout_gravity="center"/>
</FrameLayout>
答案 2 :(得分:0)
这也可以通过将TextView嵌入到LinearLayout(垂直)
中来实现text_view.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Large Text"
android:id="@+id/textView"
android:layout_margin="10dp"
android:textColor="@color/white"/>
</LinearLayout>
这被嵌入到另一个视图中,其中根视图也是LinerLayout。 一个错综复杂的解决方法......