我的RelativeLayout
是这样的:
ImageView
(向后箭头)TextView
(标题)ImageButton
(关闭按钮)
ImageView
只是一个箭头TextView
可以更改,并且必须保持在两个图像之间ImageView
是关闭按钮我试图将第一张图片的可见度更改为GONE或VISIBLE
为此,我需要更新TextView
的布局参数,但这不能正常工作
这是我的方法:
private void setBackButton(boolean visible) {
RelativeLayout.LayoutParams params = (RelativeLayout.LayoutParams) mTitle.getLayoutParams();
if (visible) {
mImageArrowBack.setVisibility(View.VISIBLE);
params.addRule(RelativeLayout.RIGHT_OF, R.id.fragment_back);
} else {
mImageArrowBack.setVisibility(View.GONE);
params.addRule(RelativeLayout.ALIGN_PARENT_LEFT);
}
params.addRule(RelativeLayout.LEFT_OF, R.id.fragment_close);
mTitle.setLayoutParams(params);
}
箭头背面是GONE和VISIBLE没有问题,但textview只是堆叠在上面。 RIGHT_OF不起作用。
有什么想法吗?
完整的布局:
<RelativeLayout
android:id="@+id/fragment_title_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/fragment_back"
android:layout_width="@dimen/button_favorite"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:src="@drawable/arrow_left" />
<TextView
android:id="@+id/fragment_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_toLeftOf="@+id/fragment_list_country_close"
android:singleLine="true" />
<ImageButton
android:id="@+id/fragment_close"
android:layout_width="@dimen/button_favorite"
android:layout_height="match_parent"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:src="@drawable/close_btn" />
</RelativeLayout>
答案 0 :(得分:1)
您无需以编程方式更改TextView的布局参数,而是使用android:layout_alignWithParentIfMissing="true"
。当您创建第一个ImageView GONE
时,RelativeLayout将移动TextView以使其与parentLeft对齐。
像这样编写TextView:
<TextView
android:id="@+id/fragment_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_toRightOf="@+id/fragment_back"
android:layout_toLeftOf="@+id/fragment_close"
android:layout_alignWithParentIfMissing="true"
android:singleLine="true" />
如果这不是您想要的,并且您希望TextView在移动ImageView时保持居中,那么解决方案甚至更简单:将ImageView的可见性设置为INVISIBLE
,而不是GONE
。< / p>
答案 1 :(得分:0)
如果你只是这样设置你的布局:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fragment_title_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/fragment_back"
android:layout_width="50dp"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:src="@drawable/ic_launcher" />
<TextView
android:id="@+id/fragment_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_toRightOf="@+id/fragment_back"
android:gravity="center"
android:singleLine="true"
android:text="Title" />
<ImageButton
android:id="@+id/fragment_close"
android:layout_width="50dp"
android:layout_height="match_parent"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:src="@drawable/ic_launcher" />
</RelativeLayout>
以编程方式更改mImageArrowBack的可见性,它将起作用。
当ImageView
为GONE时,其布局不会膨胀,但会保留对视图的引用。因此,TextView
在这种情况下与布局的左侧对齐。