我想在我的一个活动中有一个滚动视图(我的应用程序中有两个活动)我知道我必须在XML的顶部添加“ Scrollview”标签,并在其中放置线性布局,但是根本不起作用。我已经在StackOverflow上阅读了很多书,但没有帮助。这是XML代码。
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight=".2">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="10dp"
android:background="@drawable/mainphotos">
<ImageButton
android:id="@+id/topMovies_imageButton1"
android:layout_width="100dp"
android:layout_height="match_parent"
android:layout_margin="5dp"
android:background="@mipmap/breakingbads"
/>
<TextView
android:id="@+id/topMovies_textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Top 10 Serials"
android:layout_gravity="center"
android:textSize="30sp"
android:textColor="@color/textcolor"/>
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight=".2">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="10dp"
android:background="@drawable/mainphotos">
<ImageButton
android:id="@+id/topMovies_imageButton2"
android:layout_width="100dp"
android:layout_height="match_parent"
android:layout_margin="5dp"
android:background="@mipmap/breakingbads"
/>
<TextView
android:id="@+id/topMovies_textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Top 10 Serials"
android:layout_gravity="center"
android:textSize="30sp"
android:textColor="@color/textcolor"/>
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight=".2">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="10dp"
android:background="@drawable/mainphotos">
<ImageButton
android:id="@+id/topMovies_imageButton3"
android:layout_width="100dp"
android:layout_height="match_parent"
android:layout_margin="5dp"
android:background="@mipmap/breakingbads"
/>
<TextView
android:id="@+id/topMovies_textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Top 10 Serials"
android:layout_gravity="center"
android:textSize="30sp"
android:textColor="@color/textcolor"/>
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight=".2">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="10dp"
android:background="@drawable/mainphotos">
<ImageButton
android:id="@+id/topMovies_imageButton4"
android:layout_width="100dp"
android:layout_height="match_parent"
android:layout_margin="5dp"
android:background="@mipmap/breakingbads"
/>
<TextView
android:id="@+id/topMovies_textView4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Top 10 Serials"
android:layout_gravity="center"
android:textSize="30sp"
android:textColor="@color/textcolor"/>
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="10dp"
android:background="@drawable/mainphotos">
<ImageButton
android:id="@+id/topMovies_imageButton5"
android:layout_width="100dp"
android:layout_height="match_parent"
android:layout_margin="5dp"
android:background="@mipmap/breakingbads"
/>
<TextView
android:id="@+id/topMovies_textView5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Top 10 Serials"
android:layout_gravity="center"
android:textSize="30sp"
android:textColor="@color/textcolor"/>
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="10dp"
android:background="@drawable/mainphotos">
<ImageButton
android:id="@+id/topMovies_imageButton6"
android:layout_width="100dp"
android:layout_height="match_parent"
android:layout_margin="5dp"
android:background="@mipmap/breakingbads"
/>
<TextView
android:id="@+id/topMovies_textView6"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Top 10 Serials"
android:layout_gravity="center"
android:textSize="30sp"
android:textColor="@color/textcolor"/>
</LinearLayout>
</LinearLayout>
</LinearLayout>
</ScrollView>
有一个LinearLayout包含许多内部LinearLayouts,因此外部LinearLayout是滚动视图的子级。 请注意,每个内部布局都包含一个视图,因此默认情况下我将其设置为水平(例如,最内部的视图包含两个视图,并且我希望它对其进行水平设置,因为我未设置方向)