android - ListView getting displayed, but App crashes on Scrolling and clicking -
i have listview custom layout named custom_ listview.xml : <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> <textview xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content" android:textsize="20dp" android:padding="5dp" android:id="@+id/file_name" /> <textview android:layout_width="match_parent" android:layout_height="wrap_content" android:textsize="18dp" android:id="@+id/file_path"/> </linearlayout> and customadapter class: public class customadapter extends baseadapter { arraylist<file> result; context context; private static layoutinflater inflater=null; public customadapter(activit...