Ниже приведен мой макет списка. Теперь у меня есть изображение и текстовое представление в моем списке просмотра. Я хочу извлечь содержимое текстового представления и показать его в тосте.
<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="#E6E7E2">
<ImageView android:id="@+id/Thumbnail" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:src="@drawable/icon" />
<TextView android:id="@+id/FilePath" android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#000"/>
</LinearLayout>
Обычный способ не работает и происходит сбой приложения, когда я пытаюсь вот так
// on click lister for list view
lv.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,
long arg3) {
String sdcarduri = (((TextView) arg1).getText()).toString();
//Toast.makeText(AndroidThumbnailList.this, "BEEEEEEE", 2000).show();
}
});