我正在尝试完成一个简单的布局任务,但我仍然坚持RelativeLayout
中的视图重叠。
截图:
标题TextView
应始终居中(垂直和水平)。问题是标题有点长,它覆盖了后面Button
。
所需的行为是标题TextView
左对齐后退按钮,或最终修剪(例如singleLine
)。
这是我的XML:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="#ffffff">
<LinearLayout
android:id="@+id/backbutton"
android:layout_width="100dp"
android:layout_height="match_parent"
android:background="#cccccc">
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center"
android:text=" < Back"
android:textSize="20sp" />
</LinearLayout>
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_centerHorizontal="true"
android:gravity="start|center_vertical"
android:text="Centered title"
android:textSize="22sp" />
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginTop="30dp"
android:background="#ffffff">
<LinearLayout
android:id="@+id/backbutton2"
android:layout_width="100dp"
android:layout_height="match_parent"
android:background="#cccccc">
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center"
android:text=" < Back"
android:textSize="20sp" />
</LinearLayout>
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_centerHorizontal="true"
android:gravity="center"
android:text="A very long centered title"
android:textSize="22sp" />
</RelativeLayout>
</LinearLayout>
答案 0 :(得分:0)
我认为你不能通过XML做到这一点。我会在运行时计算出来。将文字放入TextView
并计算其宽度(以像素为单位)。默认情况下,它将居中,但是,如果它的宽度大于screenWidth - 2 * backButtonWidth
,那么它不应居中,而是与后退按钮边缘对齐并在末尾修剪。
答案 1 :(得分:0)
你可以尝试这样的后退按钮行。 您可以更改后退按钮和占位符以使用重量。 默认情况下,这会截断尾部的长文本。
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="100dp"
android:layout_height="wrap_content"
android:background="#cccccc"
android:text="< Back"/>
<TextView
android:id="@+id/button_search"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:singleLine="true"
android:text="Title"/>
<View <!--- Placeholder -->
android:layout_width="100dp"
android:layout_height="wrap_content" />
</LinearLayout>
答案 2 :(得分:-1)
首先,实现此布局是一种错误的方法。您只需使用线性布局即可创建此布局: - 试试这个:`
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Back"
android:layout_gravity="left"/>
<TextView
android:id="@+id/textView2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:text="456546546"
android:singleLine="true"
android:ellipsize="end"
android:layout_gravity="right" />
</LinearLayout>
<LinearLayout
android:id="@+id/linearLayout2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Back"
android:layout_gravity="left"/>
<TextView
android:id="@+id/textView4"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:text="456546546"
android:singleLine="true"
android:ellipsize="end"
android:layout_gravity="right" />
</LinearLayout>
`