我想将滚动视图添加到相对布局,因为当我增加按钮并在我的手机上运行时我有更多按钮我看不到一些按钮所以我想添加按钮的滚动视图。我该如何添加它? 下面是我的xml代码
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity"
android:background="@drawable/background1">
<include layout="@layout/header" />
<include layout="@layout/footer" />
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/header"
android:layout_above="@+id/footer"
>
<Button
android:id="@+id/templesbtn"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:text="Historical"
style="?android:attr/buttonStyleSmall"
android:background="@drawable/mymenubuttons"
android:layout_marginBottom="10dp"
android:layout_marginTop="10dp"/>
<Button
android:id="@+id/resortsbtn"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:text="Resorts"
style="?android:attr/buttonStyleSmall"
android:background="@drawable/mymenubuttons"
android:layout_marginBottom="10dp"
android:layout_below="@+id/templesbtn"/>
<Button
android:id="@+id/shoppingmallsbtn"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:text="Shopping"
style="?android:attr/buttonStyleSmall"
android:background="@drawable/mymenubuttons"
android:layout_marginBottom="10dp"
android:layout_below="@+id/resortsbtn"/>
<Button
android:id="@+id/theatersbtn"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:text="Theaters"
style="?android:attr/buttonStyleSmall"
android:background="@drawable/mymenubuttons"
android:layout_marginBottom="10dp"
android:layout_below="@+id/shoppingmallsbtn"/>
<Button
android:id="@+id/restaurantsbtn"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:text="Restaurants"
style="?android:attr/buttonStyleSmall"
android:background="@drawable/mymenubuttons"
android:layout_marginBottom="10dp"
android:layout_below="@+id/theatersbtn"
/>
<Button
android:id="@+id/hospitalbtn"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:text="Hospitals"
style="?android:attr/buttonStyleSmall"
android:background="@drawable/mymenubuttons"
android:layout_marginBottom="10dp"
android:layout_below="@+id/restaurantsbtn"
/>
<Button
android:id="@+id/collegebtn"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:text="Colleges"
style="?android:attr/buttonStyleSmall"
android:background="@drawable/mymenubuttons"
android:layout_marginBottom="10dp"
android:layout_below="@+id/hospitalbtn"
/>
<Button
android:id="@+id/onlineservicebtn"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:text="Online Services"
style="?android:attr/buttonStyleSmall"
android:background="@drawable/mymenubuttons"
android:layout_marginBottom="10dp"
android:layout_below="@+id/collegebtn"
/>
<RelativeLayout
android:layout_toRightOf="@+id/templesbtn"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<GridView
android:id="@+id/gridView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:numColumns="2"
android:visibility="invisible" >
</GridView>
</RelativeLayout>
</RelativeLayout>
</RelativeLayout>
任何人都可以帮助我吗?
答案 0 :(得分:1)
首先使用linearlayout(Vertical)包装所有按钮,然后使用scrollview包装它:
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<ScrollView
android:id="@+id/scrollView"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<Button
android:id="@+id/templesbtn"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:text="Historical"
style="?android:attr/buttonStyleSmall"
android:background="@drawable/mymenubuttons"
android:layout_marginBottom="10dp"
android:layout_marginTop="10dp"/>
<Button
android:id="@+id/resortsbtn"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:text="Resorts"
style="?android:attr/buttonStyleSmall"
android:background="@drawable/mymenubuttons"
android:layout_marginBottom="10dp"
android:layout_below="@+id/templesbtn"/>
<Button
android:id="@+id/shoppingmallsbtn"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:text="Shopping"
style="?android:attr/buttonStyleSmall"
android:background="@drawable/mymenubuttons"
android:layout_marginBottom="10dp"
android:layout_below="@+id/resortsbtn"/>
<Button
android:id="@+id/theatersbtn"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:text="Theaters"
style="?android:attr/buttonStyleSmall"
android:background="@drawable/mymenubuttons"
android:layout_marginBottom="10dp"
android:layout_below="@+id/shoppingmallsbtn"/>
<Button
android:id="@+id/restaurantsbtn"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:text="Restaurants"
style="?android:attr/buttonStyleSmall"
android:background="@drawable/mymenubuttons"
android:layout_marginBottom="10dp"
android:layout_below="@+id/theatersbtn"
/>
<Button
android:id="@+id/hospitalbtn"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:text="Hospitals"
style="?android:attr/buttonStyleSmall"
android:background="@drawable/mymenubuttons"
android:layout_marginBottom="10dp"
android:layout_below="@+id/restaurantsbtn"
/>
<Button
android:id="@+id/collegebtn"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:text="Colleges"
style="?android:attr/buttonStyleSmall"
android:background="@drawable/mymenubuttons"
android:layout_marginBottom="10dp"
android:layout_below="@+id/hospitalbtn"
/>
<Button
android:id="@+id/onlineservicebtn"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:text="Online Services"
style="?android:attr/buttonStyleSmall"
android:background="@drawable/mymenubuttons"
android:layout_marginBottom="10dp"
android:layout_below="@+id/collegebtn"
/>
</LinearLayout>
</ScrollView>
<RelativeLayout
android:layout_toRightOf="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<GridView
android:id="@+id/gridView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:numColumns="2"
android:visibility="invisible"></GridView>
</RelativeLayout>
</RelativeLayout>
答案 1 :(得分:0)
有关滚动视图visit
的更多详细信息<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
// your child View
// Buttons inside child View
</ScrollView>
答案 2 :(得分:0)
可以使用ListView addHeaderView和addFooterView代替ScrollView。