Example usage for android.widget ListView getSelectedView

List of usage examples for android.widget ListView getSelectedView

Introduction

In this page you can find the example usage for android.widget ListView getSelectedView.

Prototype

@Override
    @ViewDebug.ExportedProperty
    public View getSelectedView() 

Source Link

Usage

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();
}