这种问题很难搜索,最好用图像来解释。这是我目前的形象。
按钮位于底部,但我无法读取 String4 的值。我尝试了 padding、layout_margin 、更改 layout_width 和 layout_height 等,但徒劳无功。有人能帮我一下吗?任何类型的信息表示赞赏。
我的布局是
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/labelInfo"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/priceInfo"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/description"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/brand"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout>
</ScrollView>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<Button
android:id="@+id/goToUrl"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:text="@string/buy" />
</RelativeLayout>
</RelativeLayout>
请注意有滚动条,因为第一个 TextView 的值可能很长。我知道一个解决方案是使用 Listview,但我将其保留为最后的手段。
谢谢