我的ImageButton
孩子 xml 布局是这样的:
<ImageButton
android:id="@+id/favoriteButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/citrus_orange"
android:paddingLeft="@dimen/feed_item_padding_left_right"
android:background="@null"
andorid:onClick="flipVote"/>
我以编程方式使此按钮在我的适配器中不可聚焦:
ImageButton favButton = (ImageButton) convertView.findViewById(R.id.favoriteButton);
favButton.setFocusable(false);
在相同的布局中,我有一个TextView
喜欢:
<TextView
android:id="@+id/store_id"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:visibility="gone" />
点击会调用flipVote(View view)
方法:
public void flipVote(View view) {
// make a network call with the value from store_id
}
如何从TextView
与单击的按钮关联的值中获取值以包含在网络调用中?