如果设备屏幕太小,请添加滚动条

时间:2015-01-07 14:41:53

标签: android gridview scrollbar scrollview android-linearlayout

我的主要活动有这个布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:layout_marginTop="10dp"
        android:layout_marginBottom="10dp"
        android:contentDescription="@string/my_app"
        android:src="@drawable/logo" />

    <GridView
        android:id="@+id/gridView1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:horizontalSpacing="10dp"
        android:numColumns="auto_fit"
        android:paddingBottom="10dp"
        android:paddingLeft="10dp"
        android:paddingRight="10dp"
        android:verticalSpacing="10dp" >

    </GridView>

    <TextView  
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:text="@string/about"
        android:textColor="#FFFFFF"
        android:background="#F7921A"
        android:gravity="center"
    />    
</LinearLayout>

我尝试使用LinearLayout作为其子项添加ScrollView,但是当我运行应用程序时,滚动条仅应用于gridview,仅显示gridview的一行... 如何将滚动条应用于整个屏幕?

1 个答案:

答案 0 :(得分:1)

据我了解,您希望GridView覆盖屏幕的某个部分(可能是中心)并在底部(固定)使用TextView,对吗?如果这样使用相对布局作为你的root并使用android:layout_alignParentBottom =&#34; true&#34;对于TextView和android:layout_alignParentTop =&#34; true&#34;对于ImageView。然后,您可以使用android对齐GridView:layout_below =&#34; @ + id / imageView1&#34;和android:layout_above =&#34; @ + id / yourTextView&#34;。

更新

<?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="wrap_content"
    android:orientation="vertical" >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_gravity="center_horizontal"
        android:layout_marginBottom="10dp"
        android:layout_marginTop="10dp"
        android:src="@drawable/logo"
        android:contentDescription="@string/my_app" />

    <GridView
        android:id="@+id/gridView1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/textView1"
        android:layout_below="@+id/imageView1"
        android:horizontalSpacing="10dp"
        android:numColumns="auto_fit"
        android:paddingBottom="10dp"
        android:paddingLeft="10dp"
        android:paddingRight="10dp"
        android:verticalSpacing="10dp" >
    </GridView>

    <TextView
        android:id="@+id/textView1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:background="#F7921A"
        android:gravity="center"
        android:text="@string/about"
        android:textColor="#FFFFFF" />

</RelativeLayout>