ScrollView 没有向下滚动
ScrollView is not Scrolling down
我知道这是一个非常基本的问题。我仍然无法解决它。我在标题视图下方有一个 Scrollview,而 Scrollview 根本没有滚动。我将在下面 post 我的代码。请看一下。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/page_background"
android:clickable="true"
android:orientation="vertical"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize"
android:gravity="center_vertical"
android:layout_weight="0"
android:clickable="true"
android:background="@color/button_colour">
</RelativeLayout>
<ScrollView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:fillViewport="true"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="14"
android:padding="2dp"
android:clickable="true"
android:orientation="vertical">
</LinearLayout>
</ScrollView>
</LinearLayout>
在这种情况下 android:layout_weight
没有用处。而且您不必在 ScrollView
中使用 android:layout_weight
。如果您使用 Views
将被包裹在 ViewGroup
内并且不会滚动。并且 fill_parent
被描述为使用 match_parent
.
使用下面的布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayout"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize"
android:background="@color/colorPrimary"
android:clickable="true"
android:gravity="center_vertical">
</RelativeLayout>
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorAccent"
android:orientation="vertical"
android:padding="2dp"
>
<!--Other views goes here without weight-->
</LinearLayout>
</ScrollView>
</LinearLayout>
我知道这是一个非常基本的问题。我仍然无法解决它。我在标题视图下方有一个 Scrollview,而 Scrollview 根本没有滚动。我将在下面 post 我的代码。请看一下。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/page_background"
android:clickable="true"
android:orientation="vertical"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize"
android:gravity="center_vertical"
android:layout_weight="0"
android:clickable="true"
android:background="@color/button_colour">
</RelativeLayout>
<ScrollView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:fillViewport="true"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="14"
android:padding="2dp"
android:clickable="true"
android:orientation="vertical">
</LinearLayout>
</ScrollView>
</LinearLayout>
在这种情况下 android:layout_weight
没有用处。而且您不必在 ScrollView
中使用 android:layout_weight
。如果您使用 Views
将被包裹在 ViewGroup
内并且不会滚动。并且 fill_parent
被描述为使用 match_parent
.
使用下面的布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayout"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize"
android:background="@color/colorPrimary"
android:clickable="true"
android:gravity="center_vertical">
</RelativeLayout>
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorAccent"
android:orientation="vertical"
android:padding="2dp"
>
<!--Other views goes here without weight-->
</LinearLayout>
</ScrollView>
</LinearLayout>