我正在使用 ListView,如果列表为空,我将显示 EmptyView。如何检查此视图是否显示为布尔变量?
这是我的 ListView 的代码:
deviceList = (ListView) findViewById(R.id.DeviceList);
ListAdapter listenAdapter = new ArrayAdapter(this,
android.R.layout.simple_list_item_2, deviceArray);
//add a view which is shown if the ListView is empty
deviceList.setEmptyView( findViewById( R.id.empty_list_view ) );
deviceList.setAdapter(listenAdapter);