我在ScrollView上遇到了一个问题,在非常小的屏幕上,比如480x800,TextView被ScrollView切掉了,不能滚动到最后。在非常小的屏幕上,比如480x800,TextView被ScrollView切掉了,它不能滚动到最后。我想它剪掉了最后2-3行,而且滚动视图不能测量全高。在普通屏幕上工作得很好。我的代码是这样的。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_vertical">
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:cardCornerRadius="10dp"
android:layout_margin="5dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="530dp">
<ImageView
android:layout_width="match_parent"
android:layout_height="180dp"
android:scaleType="centerCrop"
android:id="@+id/image"
android:src="@drawable/xyz"/>
<View
android:layout_width="match_parent"
android:layout_height="2dp"
android:alpha=".5"
android:layout_above="@id/title"
android:background="@android:color/darker_gray" />
<TextView
android:id="@+id/title"
android:textColor="#262626"
android:layout_below="@id/image"
android:layout_marginTop="10dp"
android:layout_marginStart="16dp"
android:text="Title"
android:textSize="20sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/title"
android:layout_marginTop="5dp"
android:layout_gravity="center_vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/desc"
android:textSize="16sp"
android:fontFamily="@font/open_sans"
android:layout_marginLeft="16dp"
android:layout_marginBottom="16dp"
android:layout_marginRight="16dp"
android:drawablePadding="10dp"
android:ellipsize="end"
android:text="Description"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</RelativeLayout>
</ScrollView>
</RelativeLayout>
</androidx.cardview.widget.CardView>
我找到了一个解决方案。只要把RelativeLayout android:layout_height="530dp "改为wrap_content,然后设置为CardView。