按钮边距的布局问题

时间:2011-03-15 17:25:01

标签: android layout android-layout

我在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"/>

好吧,布局总是这样结束:enter image description here

而不是像这样的东西(甚至按钮,方形按钮之间的间距): enter image description here

总结一下:我必须:

  • 描述xml中的按钮
  • 动态生成N个按钮
  • 将描述按钮的属性添加到动态创建的按钮
  • 组织布局,以便它可以在buttonList中均匀分布按钮,并在tham
  • 之间留出空格

3 个答案:

答案 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。 一个错综复杂的解决方法......