List of usage examples for android.widget ListView getSelectedView
@Override
@ViewDebug.ExportedProperty
public View getSelectedView()
From source file:com.madgag.agit.RDTypeListActivityStoryTest.java
private View getItemViewBySelecting(final ListView listView, final int index) { getActivity().runOnUiThread(new Runnable() { public void run() { listView.setSelection(index); }//from w ww .ja va 2 s .c o m }); getInstrumentation().waitForIdleSync(); return listView.getSelectedView(); }