此布局的问题在于,当我定向时,文本视图与按钮重叠。我尝试过框架布局,中心引力和许多其他选项,但无济于事。下图显示了问题。我肯定需要使用RelativeLayout
。
如您所见,在横向上,TEST文本视图被阻止。我想在纵向模式下保持TextView
的垂直中心位置,在横向模式下,将 textview置于BUTTON1 上方,使其不重叠。按钮必须保持在底部。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/textview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="TEST"
android:textAlignment="center"
android:textSize="36sp" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/btn1"
android:text="button1"/>
<Button
android:id="@+id/btn2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/btn3"
android:text="button 2"/>
<Button
android:id="@+id/btn3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:text="button 3"/>
</RelativeLayout>
答案 0 :(得分:1)
使用RelativeLayout
TextView
以上的btn1
添加另一个android:layout_height="match_parent"
作为父项
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/btn1">
<TextView
android:id="@+id/textview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="TEST"
android:textAlignment="center"
android:textSize="36sp" />
</RelativeLayout>
<Button
android:id="@id/btn1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/btn2"
android:text="button1"/>
<Button
android:id="@+id/btn2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/btn3"
android:text="button 2"/>
<Button
android:id="@+id/btn3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:text="button 3"/>
</RelativeLayout>
另一种解决方案
将android:layout_height="match_parent"
和android:layout_above="@+id/btn1"
添加到TextView
,并使用TextView
android:gravity="center"
的中心位置
<RelativeLayout android:id="@+id/activity_main"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/textview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/btn1"
android:gravity="center"
android:text="TEST"
android:textAlignment="center"
android:textSize="36sp"/>
<Button
android:id="@id/btn1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/btn2"
android:text="button1"/>
<Button
android:id="@+id/btn2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/btn3"
android:text="button 2"/>
<Button
android:id="@+id/btn3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:text="button 3"/>
</RelativeLayout>
任何一种解决方案都应该适用于纵向和横向
答案 1 :(得分:0)
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/textview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="TEST"
android:textAlignment="center"
android:textSize="36sp"/>
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/textview">
<LinearLayout
android:id="@+id/bottom_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<Button
android:id="@+id/btn1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="button1"/>
<Button
android:id="@+id/btn2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="button 2"/>
<Button
android:id="@+id/btn3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="button 3"/>
</LinearLayout>
</ScrollView>
</RelativeLayout>
答案 2 :(得分:0)
您的活动需要有两个布局。首先是纵向模式,第二个是横向模式。要做到这一点,你需要创建一个与你的Activity名称相同的xml,但是附加到它-land。之后,此xml将自动用于横向模式。在那个xml中,你可以为你的视图添加你想要的任何逻辑。不要忘记使用相同的视图:id属性或您将有例外。希望这会有所帮助。
答案 3 :(得分:-1)
将三个按钮插入相对布局,该布局应为align-parent-bottom。然后将textview放在此相对布局的上方。 希望它对你有用。