我是android新手。我希望页面顶部有一个ImageView,页面底部有4个按钮,页面中间有一个frameLayout。我已经完成了一个xml文件,可以在FrameLayout中加载。它包含ScrollView和10个按钮。但是当我运行程序时,滚动页面后最后两个按钮没有显示在页面上。
有人可以帮帮我吗?
main.xml中:
<?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:background="@drawable/background">
<ImageView
android:id="@+id/yellowbar"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/smallyelowbar"
android:adjustViewBounds="true"
android:scaleType="fitXY"
android:layout_alignParentTop="true"/>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="0"
android:layout_gravity="bottom"
android:layout_below="@id/yellowbar">
<FrameLayout
android:id="@+id/frameLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"/>
</RelativeLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_alignParentBottom="true">
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/topmenu"
android:adjustViewBounds="true"
android:scaleType="fitXY"/>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_alignParentBottom="true">
<Button android:id="@+id/btn1"
android:layout_width="0dip"
android:layout_weight="1"
android:layout_height="wrap_content"
android:background="@drawable/more_selector"/>
<Button
android:id="@+id/btn2"
android:layout_width="0dip"
android:layout_weight="1"
android:layout_height="wrap_content"
android:background="@drawable/contact_selector"/>
<Button android:id="@+id/btn3"
android:layout_width="0dip"
android:layout_weight="1"
android:layout_height="wrap_content"
android:background="@drawable/product_selector"/>
<Button android:id="@+id/btn4"
android:layout_width="0dip"
android:layout_weight="1"
android:layout_height="wrap_content"
android:background="@drawable/introduce_selector"/>
</LinearLayout>
</LinearLayout>
</RelativeLayout>
scrooll.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical">
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Button
android:id="@+id/btn1_product"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginRight="10dp"
android:layout_marginTop="7dp"
android:background="@drawable/product_sub_selector"
android:text="@string/btn1_product"
android:textColor="@color/white"
android:textSize="10sp"/>
<Button
android:id="@+id/btn2_product"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginRight="10dp"
android:layout_marginTop="7dp"
android:background="@drawable/product_sub_selector"
android:textColor="@color/white"
android:text="@string/btn2_product"
android:layout_below="@id/btn1_product"
android:textSize="10sp"/>
<Button
android:id="@+id/btn3_product"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginRight="10dp"
android:layout_marginTop="7dp"
android:background="@drawable/product_sub_selector"
android:textColor="@color/white"
android:text="@string/btn3_product"
android:layout_below="@id/btn2_product"
android:textSize="10sp"/>
<Button
android:id="@+id/btn4_product"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginRight="10dp"
android:layout_marginTop="7dp"
android:background="@drawable/product_sub_selector"
android:textColor="@color/white"
android:text="@string/btn4_product"
android:layout_below="@id/btn3_product"
android:textSize="12sp"/>
<Button
android:id="@+id/btn5_product"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginRight="10dp"
android:layout_marginTop="7dp"
android:background="@drawable/product_sub_selector"
android:textColor="@color/white"
android:text="@string/btn5_product"
android:layout_below="@id/btn4_product"
android:textSize="12sp"/>
<Button
android:id="@+id/btn6_product"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginRight="10dp"
android:layout_marginTop="7dp"
android:background="@drawable/product_sub_selector"
android:textColor="@color/white"
android:text="@string/btn6_product"
android:layout_below="@id/btn5_product"
android:textSize="12sp"/>
<Button
android:id="@+id/btn7_product"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginRight="10dp"
android:layout_marginTop="7dp"
android:background="@drawable/product_sub_selector"
android:textColor="@color/white"
android:text="@string/btn7_product"
android:layout_below="@id/btn6_product"
android:textSize="12sp"/>
<Button
android:id="@+id/btn8_product"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginRight="10dp"
android:layout_marginTop="7dp"
android:background="@drawable/product_sub_selector"
android:textColor="@color/white"
android:text="@string/btn8_product"
android:layout_below="@id/btn7_product"
android:textSize="12sp"/>
<Button
android:id="@+id/btn9_product"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginRight="10dp"
android:layout_marginTop="7dp"
android:background="@drawable/product_sub_selector"
android:textColor="@color/white"
android:text="@string/btn9_product"
android:layout_below="@id/btn8_product"
android:textSize="12sp"/>
<Button
android:id="@+id/btn10_product"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginRight="10dp"
android:layout_marginTop="7dp"
android:background="@drawable/product_sub_selector"
android:textColor="@color/white"
android:text="@string/btn10_product"
android:layout_below="@id/btn9_product"
android:textSize="12sp"/>
</RelativeLayout>
</ScrollView>
</LinearLayout>
感谢您的帮助。
答案 0 :(得分:0)
尝试将“wrap_content”赋予高度
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content" > </ScrollView>
答案 1 :(得分:0)
在第一个xml的最后android:weightSum=4
中添加LinearLayout
。
答案 2 :(得分:0)
将RelativeLayout转换为LinearLayout,它将起作用。