我尝试了多种解决方案,但似乎都没有效果。布局:
--------------------
|btn1| txt1 |btn2|
--------------------
| |
| |
| |
| txtview1 |
| |
| |
| |
--------------------
btn1 - 左上对齐 - 减少txt1
btn2 - 右上角对齐 - 增加txt1
txt1 - 顶部中心对齐 - 用代码输入的文本/数字
textview1 - 客户端与垂直滚动条对齐(如果需要) - 使用代码
答案 0 :(得分:3)
试试这个:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Button
android:id="@+id/btn1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="btn1"/>
<TextView
android:id="@+id/txt1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:text="txt1"/>
<Button
android:id="@+id/btn2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:text="btn2"/>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@id/btn1">
<TextView
android:id="@+id/txt2"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="txt2"/>
</ScrollView>
</RelativeLayout>
答案 1 :(得分:1)
您还应该将第二个按钮对齐到右边 您的版本将第二个按钮放在第一个按钮上...
示例:强>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Button android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="back"/>
<TextView android:id="@+id/txt1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:text="txt1"/>
<Button android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:text="btn2"/>
<ScrollView android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@id/button1">
<TextView android:id="@+id/txt2"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@id/button2"
android:text="txt2"/>
</ScrollView>
</RelativeLayout>