NestedScrollView 不滚动?知道如何解决这个问题
NestedScrollView not scrolling?Got any idea how to fix this
我正在从事一个电子商务项目,其产品详细信息布局中没有嵌套滚动视图 scrolling.The 显示的内容只是固定的。
几乎所有方法都试过了,但它没有滚动
我原以为它会滚动,但它根本没有。它只是固定的。
所有内容都在下面,我无法滚动
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ProductDetails">
<include
android:id="@+id/appbarlayout"
layout="@layout/appbar"/>
<android.support.v4.widget.NestedScrollView
android:layout_below="@+id/appbarlayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="vertical"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
>
<ImageView
android:id="@+id/productimg"
android:layout_width="match_parent"
android:background="@color/colorPure"
android:layout_height="220dp" />%
<LinearLayout
android:layout_marginTop="10dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
>
<TextView
android:id="@+id/pname"
android:layout_marginLeft="10dp"
android:layout_marginBottom="6dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Product Name"
android:textColor="@color/colorFade"
/>
<TextView
android:id="@+id/pprice"
android:layout_marginLeft="10dp"
android:layout_marginBottom="6dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Price"
android:textColor="@color/colorGreenary"
/>
<TextView
android:id="@+id/pavailability"
android:layout_marginLeft="10dp"
android:layout_marginBottom="6dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Availablity"
android:textColor="@color/colorFade"
/>
<TextView
android:id="@+id/prackno"
android:layout_marginLeft="10dp"
android:layout_marginBottom="6dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Rack No"
android:textColor="@color/colorFade"
/>
<TextView
android:id="@+id/pfloorno"
android:layout_marginLeft="10dp"
android:layout_marginBottom="6dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Floor No"
android:textColor="@color/colorFade"
/>
<View
android:layout_margin="10dp"
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/colorLightFade"
/>
<TextView
android:id="@+id/pdescription"
android:layout_marginLeft="10dp"
android:layout_marginBottom="6dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Description"
android:textColor="@color/colorFade"
/>
</LinearLayout>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
<LinearLayout
android:layout_alignParentBottom="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum="1"
>
<Button
android:id="@+id/addtowishlist"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0.5"
android:text="ADD TO WISHLIST"
android:background="@color/colorPure"
/>
<Button
android:id="@+id/addtocart"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0.5"
android:background="@color/colorAccent"
android:textColor="@color/colorPure"
android:text="ADD TO CART"
/>
</LinearLayout>
</RelativeLayout>
请在您的 NestedScrollView
中更改此属性:
android:layout_height="wrap_content"
到
android:layout_height="match_parent"
如果您需要下方的一些小部件,或者固定高度
所以尝试在父布局中更改此属性
android:layout_height="wrap_content"
成功了我更改了父相对布局属性
android:layout_height="match_parent"
至
android:layout_height="wrap_content"
我正在从事一个电子商务项目,其产品详细信息布局中没有嵌套滚动视图 scrolling.The 显示的内容只是固定的。 几乎所有方法都试过了,但它没有滚动
我原以为它会滚动,但它根本没有。它只是固定的。 所有内容都在下面,我无法滚动
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ProductDetails">
<include
android:id="@+id/appbarlayout"
layout="@layout/appbar"/>
<android.support.v4.widget.NestedScrollView
android:layout_below="@+id/appbarlayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="vertical"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
>
<ImageView
android:id="@+id/productimg"
android:layout_width="match_parent"
android:background="@color/colorPure"
android:layout_height="220dp" />%
<LinearLayout
android:layout_marginTop="10dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
>
<TextView
android:id="@+id/pname"
android:layout_marginLeft="10dp"
android:layout_marginBottom="6dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Product Name"
android:textColor="@color/colorFade"
/>
<TextView
android:id="@+id/pprice"
android:layout_marginLeft="10dp"
android:layout_marginBottom="6dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Price"
android:textColor="@color/colorGreenary"
/>
<TextView
android:id="@+id/pavailability"
android:layout_marginLeft="10dp"
android:layout_marginBottom="6dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Availablity"
android:textColor="@color/colorFade"
/>
<TextView
android:id="@+id/prackno"
android:layout_marginLeft="10dp"
android:layout_marginBottom="6dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Rack No"
android:textColor="@color/colorFade"
/>
<TextView
android:id="@+id/pfloorno"
android:layout_marginLeft="10dp"
android:layout_marginBottom="6dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Floor No"
android:textColor="@color/colorFade"
/>
<View
android:layout_margin="10dp"
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/colorLightFade"
/>
<TextView
android:id="@+id/pdescription"
android:layout_marginLeft="10dp"
android:layout_marginBottom="6dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Description"
android:textColor="@color/colorFade"
/>
</LinearLayout>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
<LinearLayout
android:layout_alignParentBottom="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum="1"
>
<Button
android:id="@+id/addtowishlist"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0.5"
android:text="ADD TO WISHLIST"
android:background="@color/colorPure"
/>
<Button
android:id="@+id/addtocart"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0.5"
android:background="@color/colorAccent"
android:textColor="@color/colorPure"
android:text="ADD TO CART"
/>
</LinearLayout>
</RelativeLayout>
请在您的 NestedScrollView
中更改此属性:
android:layout_height="wrap_content"
到
android:layout_height="match_parent"
如果您需要下方的一些小部件,或者固定高度
所以尝试在父布局中更改此属性
android:layout_height="wrap_content"
成功了我更改了父相对布局属性
android:layout_height="match_parent"
至
android:layout_height="wrap_content"