我有一個問題,我的滾動型佈局:滾動型切割文本中的TextView
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_gravity="center_horizontal|center_vertical"
android:id="@+id/editRelativeLayout"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall" />
<TextView
android:id="@+id/typeTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge" />
</LinearLayout>
</ScrollView>
問題是,當我有很多的文字在TextView的顯示,TextView2消失...任何知道如何解決它?
我不明白它是如何成爲「隱形」,你應該仍然能夠向下滾動並查看它,而不管第一個TextView是多長時間。 – Sam
是的,我可以向下滾動,但我無法向上滾動以查看TextView2 – Mithrand1r
因此,您只能向一個方向滾動? – Sam