我有以下xml文件;哪个1/3按钮似乎显示得非常好,但我不能对跟随它的两个按钮说同样的事情,并且应该一个接一个地显示。
按钮“hull”完美放置但是以下两个按钮彼此重叠,由于某种原因滚动视图没有踢。有什么想法?滚动视图只要屏幕高度停止就会停止。
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ScrollView01"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
>
<LinearLayout android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:src="@drawable/k" />
<Button
android:id="@+id/hull"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_marginBottom="62dp"
android:text="Hull Lines" />
<Button
android:id="@+id/offsets"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dip"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:text="Table of Offsets" />
<Button
android:id="@+id/finishPa"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dip"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:text="Keel and Rudder Details" />
</RelativeLayout>
</LinearLayout>
</ScrollView>
答案 0 :(得分:0)
试试这个
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ScrollView01"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:src="@drawable/ic_launcher" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="fill_parent" >
<Button
android:id="@+id/hull"
android:layout_width="fill_parent"
android:layout_height="60dp"
android:layout_above="@id/offsets"
android:text="Hull Lines" />
<Button
android:id="@+id/offsets"
android:layout_width="fill_parent"
android:layout_height="60dp"
android:layout_above="@id/finishPa"
android:layout_marginTop="15dip"
android:text="Table of Offsets" />
<Button
android:id="@+id/finishPa"
android:layout_width="fill_parent"
android:layout_height="60dp"
android:layout_alignParentBottom="true"
android:layout_marginTop="15dip"
android:text="Keel and Rudder Details" />
</RelativeLayout>
</LinearLayout>