我正在为每个帖子创建一个像 CustomListview 这样的聊天,其中包含一个 textview 和一个 Imageview,如下所示:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textIsSelectable="true" />
<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher" />
</LinearLayout>
如果有人发送图片,它会显示在 ImageView 中。现在我想实现单击 Imageview 并获取内容以在 facebook 上共享它的功能。所以基本问题是我如何通过单击它来获取 Imageview 的内容。仅仅传递源是行不通的,因为如果有人发送另一张图片,它就会改变。