我已经发布了几次相同的问题,但尚未解决。我有一个ListFragment
并且我想突出显示列表中的选定项目。有人建议我使用“选择器”。我不明白如何使用这个选择器。我的ListFragment
课是:
// Create an adapter with list of stores and populate the list with
// values
ArrayAdapter<String> adapter = new ArrayAdapter<String>(getActivity(),
android.R.layout.simple_list_item_1, StoreList);
setListAdapter(adapter);
mDbHelper.close();
}
/*
* (non-Javadoc)
*
* Handles the event when an item is clicked on left pane, performs action
* based on the selection in left pane
*
* @see android.app.ListFragment#onListItemClick(android.widget.ListView,
* android.view.View, int, long)
*/
@Override
public void onListItemClick(ListView l, View v, int position, long id) {
String selectedStore = (String) getListAdapter().getItem(position);
DetailFragment fragment = (DetailFragment) getFragmentManager()
.findFragmentById(R.id.detailFragment);
if (fragment != null && fragment.isInLayout()) {
v.setBackgroundColor(getResources().getColor(R.color.BLUE));
// passes selectedStore to detail fragment
fragment.setText(selectedStore);
// getItemList(selectedStore);
}
使用 setBackground 永久设置颜色,但我希望它在选择另一个项目时消失。我了解如何在 a 中使用选择器,ListView
但在我的情况下,如果我没有为 定义任何 xml Listview
,那么我将如何使用“选择器”?我使用android.R.layout.simple_list_item_1
的是预定义的。