這是我一直在處理的自定義警報對話框的佈局。這只是一個TextView與下方的複選框:佈局中的元素沒有出現(被另一個元素掩蓋)
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/help_dialog_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20dp" />
</ScrollView>
<CheckBox
android:id="@+id/display_help_dialogs_checkbox"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:text="@string/display_help_dialogs" />
當TextView中的TEXTSIZE足夠大時(即當滾動型實際上是「投入使用」),該複選框無處可看。
感謝您的幫助, 米切爾
只是在另一個滾動視圖中包裝整個上面的代碼。 – Urban 2011-12-29 16:03:21
@Urban:嗯......我很好奇scrollview如何處理其中包含的另一個滾動視圖。 – DeeV 2011-12-29 16:13:54
oh right..hmm ...來想一想,現在即使我好奇... – Urban 2011-12-29 19:17:43