我想使用滾動視圖,使在它滾動包裹TextView的。滾動型隱藏TextView的文本在橫向模式
我使用的網格佈局和我能夠爲我需要,特別是長文本塊,包在一個滾動視圖(大標題下的文本)來定位的項目。
然而,在旋轉時,長文本塊完全消失,我必須繼續滾動起來,以使其可見。我需要它在橫向模式下按預期顯示。
landscape mode, now visible after swiping up
這是我的XML
<?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">
<include layout="@layout/toolbar" android:id="@+id/toolbar"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="centerCrop"
android:adjustViewBounds="true"
android:layout_marginTop="20dp"
android:id="@+id/articlesummaryimageview"
android:layout_below="@id/toolbar"
android:layout_centerHorizontal="true"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/articlesummaryheadingtextview"
android:layout_below="@id/articlesummaryimageview"
android:layout_centerHorizontal="true"
android:textSize="26dp"
android:textStyle="bold"
android:textAlignment="center"
android:layout_marginTop="20dp"
/>
<ScrollView
android:layout_width="match_parent"
android:layout_height="50dp"
android:id="@+id/articlesummaryscreenscrollview"
android:layout_below="@id/articlesummaryheadingtextview"
android:fillViewport="false"
android:layout_above="@+id/showfullarticlebutton"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/articlesummarytextview"
android:textSize="18dp"
android:textAlignment="center"
android:padding="5dp"
/>
</ScrollView>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/showfullarticlebutton"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:textSize="18dp"
android:text="Full Article"
style="@style/AlertDialog.AppCompat.Light"
/>
</RelativeLayout>
謝謝