如何在Android ListView
中列表爲空時顯示文本的格式?爲ListView設置「空列表」文本android
<ListView
android:id="@+id/android:list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/transparent"
android:cacheColorHint="@android:color/transparent"
android:dividerHeight="1dip" />
<TextView
android:id="@+id/android:empty"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/test_list"
android:textColor="@color/white"
android:textSize="25sp"
/>
我想將字體設置爲從資產字樣..
mTypeFace = Typeface.createFromAsset(context.getAssets(), "fonts/myFont.ttf");
mEmptyTextView = (TextView)findViewById(**????**)
mEmptyTextView.setTypeface(mTypeFace);
它會爲ListFragment工作嗎?在ListFragment的API 22的list_content.xml中,使用了@ + android:id/internalEmpty。 – sandrstar