0

我在代码中添加元素时遇到问题。我想在水平线性布局中添加两个按钮。我的代码有效,但第二个按钮部分覆盖了第一个按钮。

问题:我怎样才能使第二个按钮不覆盖第一个按钮?

这是代码:

public class MainActivity extends Activity {
Button buttonFirst, buttonSecond;
LinearLayout lau;
LayoutParams params;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        buttonFirst = new Button(getApplicationContext());
        buttonSecond = new Button(getApplicationContext());
        lau = (LinearLayout) findViewById(R.id.layoutmadafaka);
        params = new LayoutParams(LayoutParams.WRAP_CONTENT,
                LayoutParams.WRAP_CONTENT);
        LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT);
        lp.setMargins(-30, 0, 0, 0);
        buttonSecond.setLayoutParams(lp);
        buttonSecond.setBackgroundColor(Color.BLACK);
        lau.addView(buttonFirst,params);   
        lau.addView(buttonSecond); 
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.activity_main, menu);
        return true;
    }

}

和xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:text="@string/hello_world" />

    <LinearLayout
        android:id="@+id/layoutmadafaka"
        android:layout_width="match_parent" 
        android:layout_height="match_parent"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"

        android:orientation="horizontal" >
    </LinearLayout>

</RelativeLayout>

这必须以编程方式完成。当我使用 bringToFront() 方法时,按钮会改变位置,但我不想这样做。我想要左侧的第一个按钮和第一个按钮旁边的第二个按钮。

4

2 回答 2

1

我认为这是因为您设置的负边距:

lp.setMargins(-30, 0, 0, 0);

删除它或将它们设置为 0(它的等价物,因为 0 是默认值):

lp.setMargins(0, 0, 0, 0);

这些负边距将 button2 向左移动,因此它位于另一个按钮的后面。

您无法在LinearLayout中管理重叠(这就是为什么在 line 中执行 bringToFront 操作更改顺序而不是重叠顺序的原因)。您需要使用RelativeLayout,将按钮 2 设置在 button1 的右侧,让边距为 -30 并在它应该工作的第二个按钮上调用bringToFront ;)

于 2013-03-03T21:09:56.707 回答
0

您可以在 xml 中为您的 @id/layoutmadafaka 设置属性 android:weightSum=1.0。并且在添加按钮时,为每个 layout_weight=0.5,layout_width=0 设置。

此处示例:Android 中的线性布局和权重

于 2013-03-03T21:10:00.103 回答