我想實現一個功能,如果填充列表視圖的遊標是空的,將顯示一個圖像而不是列表視圖。Android如果沒有結果替換Listview與圖像
我試圖把圖像中,但它與上面或下面的列表視圖和遺址佈局
我使用的是listFragment的時刻,但我的問題是定位的圖像。我如何放置它,使圖像在被調用之前「不可見」?
XML
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/coordinatorLayout">
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ListView>
<android.support.design.widget.FloatingActionButton
android:id="@+id/filterButton"
app:backgroundTint="@color/floatingButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|right"
android:clickable="true"
android:src="@drawable/ic_filter"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"
android:layout_marginBottom="63dp"
android:layout_marginRight="16dp" />
</android.support.design.widget.CoordinatorLayout>
代碼
if(cursor!=null && cursor.getCount()>0)
{
//call to populate the image?
Toast.makeText(getActivity(), "Sorry no match, please refine search", Toast.LENGTH_SHORT).show();
}
else
{
//display list as normal
}
您選擇welcome..happy編碼! (: – yUdoDis