我正在使用xml文件进行活动。 xml具有相对布局。
布局内部..我有小工具
Textview..Gridview..Edittext..Button ...按照与上述相同的顺序。
我想将整个布局设为Scrollable。为此,我尝试在根级别布局中添加Scrollable。
但是当我启动活动时,只有Gridview部分变得可滚动。
我希望整个活动可以滚动...而不是gridview部分。
当活动中有Gridview时,Scrollable有什么问题吗?
答案 0 :(得分:0)
尝试使用带有relativelayout或linerlayout的滚动视图,你想要什么,然后将yout对象放入其中。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/rloverworld"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="0dp"
android:paddingLeft="0dp"
android:paddingRight="0dp"
android:paddingTop="0dp"
tools:context="com.gore.fruitsplashparty.Overworld" >
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="0dp"
android:scrollbars="none" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="0dp" >
<Button
android:id="@+id/btn_101"
android:layout_width="40dp"
android:layout_height="40dp"
android:adjustViewBounds="true"
android:background="@drawable/btnlvl"
android:padding="0dp"
/>
</RelativeLayout>
</ScrollView>
</RelativeLayout>