Android滚动视图不起作用?

时间:2017-06-30 12:27:34

标签: xml android-layout scrollview

我在android studio上使用简单的导航主题,在这个模板中的contentmain.xml文件我需要在其上添加自定义布局设计,它不会滚动,一旦横向模式改变,设计就无法滚动。

以下是content-main.xml的代码。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.techinfoworld.gymfitnessworkoutinstructions.MainActivity"
android:orientation="vertical"
tools:showIn="@layout/app_bar_main">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/side_nav_bar">
        <ImageView
            android:background="@drawable/gym1"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginTop="2dp"
            android:id="@+id/imageView3"
            android:layout_centerHorizontal="true"
            android:layout_alignParentTop="true" />
    </LinearLayout>

<LinearLayout
    android:gravity="center"
    android:layout_marginTop="176dp"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    android:background="@android:drawable/spinner_background"
    android:layout_marginLeft="5dp">

    <LinearLayout
        android:gravity="center"
        android:orientation="vertical"
        android:layout_weight="1"
        android:layout_width="0dp"
        android:layout_height="wrap_content" >
        <Button
            android:background="@drawable/abs_workout"
            android:layout_width="100dp"
            android:layout_height="100dp"
            />
        <Button
            android:layout_marginTop="20dp"
            android:background="@drawable/butt_workout"
            android:layout_width="100dp"
            android:layout_height="100dp" />
        <Button
            android:layout_marginTop="20dp"
            android:background="@drawable/favourites"
            android:layout_width="100dp"
            android:layout_height="100dp" />

    </LinearLayout>

    <LinearLayout
        android:gravity="center"
        android:orientation="vertical"
        android:layout_weight="1"
        android:layout_width="0dp"
        android:layout_height="wrap_content">
        <Button
            android:background="@drawable/arm_workout"
            android:layout_width="100dp"
            android:layout_height="100dp" />
        <Button
            android:layout_marginTop="20dp"
            android:background="@drawable/full_workout"
            android:layout_width="100dp"
            android:layout_height="100dp" />
        <Button
            android:layout_marginTop="20dp"
            android:background="@drawable/share"
            android:layout_width="100dp"
            android:layout_height="100dp" />
    </LinearLayout>
    <LinearLayout
        android:gravity="center"
        android:orientation="vertical"
        android:layout_weight="1"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
       >

        <Button
            android:background="@drawable/leg_workout"
            android:layout_width="100dp"
            android:layout_height="100dp" />

        <Button
            android:layout_marginTop="20dp"
            android:background="@drawable/workout_tips"
            android:layout_width="100dp"
            android:layout_height="100dp" />
        <Button
            android:layout_marginTop="20dp"
            android:background="@drawable/rate"
            android:layout_width="100dp"
            android:layout_height="100dp" />
    </LinearLayout>
</LinearLayout>


<Button
    android:textColor="#fff"
    android:text="Workout Daily to Get Fit GYM Body !!! "
    android:layout_alignParentBottom="true"
    android:background="@color/colorAccent"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />


</RelativeLayout>

1 个答案:

答案 0 :(得分:2)

您需要将布局包装在ScrollView标记中以获得滚动行为。

look here for more