<TextView
android:id="@android:id/empty"
style="@style/FacebookFont"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:text="@string/no_result_found"
android:textColor="@color/white" />
これは空のビューの xml コードです。次のように空のビューを設定しています:
list.setAdapter(adapter);
list.setEmptyView(findViewById(android.R.id.empty));
それでもリストビューに項目があり、リストビューにデータが入力される前に空のビューが表示されます。リストビューにアイテムが含まれている場合、その空のビューを表示したくありません。
助けてください。