1
私はScrollViewにTableLayoutを埋め込んでスクロールすることができます。この(それについては本当に何も特別な)のように設定されていますスクロール可能なTableLayoutが空であればメッセージを表示する
<ScrollView android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@id/rejectDataTypeButton"
android:layout_above="@id/datalist_nextButton" >
<TableLayout android:id="@+id/dataListTable"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:stretchColumns="1" />
</ScrollView>
どのように私はそれがListActivityはそれをしない方法と同様に、空の場合にメッセージを表示するのですか? TableLayoutにListView
のような.setEmptyView(View)
メソッドがないので、それは可能ですか?