<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="match_parent" >
<LinearLayout
android:id="@+id/buttons"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true" >
<Button
android:id="@+id/insertButtonVIEW"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="insert" />
<Button
android:id="@+id/removeButtonVIEW"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="remove" />
</LinearLayout>
</RelativeLayout>
有时,根据情况,我使用方法隐藏 removeButtonVIEWsetVisibility(View.INVISIBLE);
发生这种情况时,我希望我的 insertButtonVIEW 占据屏幕的整个宽度(当两者都存在时,每个占据屏幕的 50%)。
由于这可能会或可能不会发生,我正在以编程方式进行这些更改。
我尝试了以下可行的方法,但是,它导致所有界面都变得笨拙,因为屏幕上所有内容的位置都变得混乱。
modifyButton.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT));
有什么提示吗?
应用答案后更新 1:我正在使用以下代码将按钮设置为不可见。
Bundle extras;
extras = getIntent().getExtras();
String answer = extras.getString("answer");
if(answer.equalsIgnoreCase("yes")
{
insertButton.setEnabled(true);
insertButton.setText("INSERT");
removeButton.setVisibility(View.INVISIBLE);
}
else
{
//whatever
}