0
public void onListItemClick(ListView parent, View v, int position, long id) {
Intent intent = new Intent(this, HaberGoster.class);
startActivityForResult(intent, position);
}
這是我的代碼,用於在列表視圖上單擊標籤時啓動新的活動。問題是,當我點擊標籤,我想在HaberGoster.classAndroid ListView OnItemClick問題
拿到現在的位置我應該怎麼辦其他類來獲得的ListView現在的位置
你想要的X,拿到了點擊的ListView其中y座標? – ethrbunny