gpt4 book ai didi

android - 使用 ContextMenu 从 listfragment 获取单个项目

转载 作者:行者123 更新时间:2023-11-29 00:42:53 25 4
gpt4 key购买 nike

当使用上下文菜单检测到长按时,我试图从列表 fragment 中获取单个项目。事情是它得到的项目是列表中的第一项而不是选定的项目,这意味着......

如果我的列表是这样的

项目 5项目 4项目 3项目 2项目 1

然后我长按 item 2

它会给我 item 5

@Override
public void onCreateContextMenu(ContextMenu menu,View v,ContextMenuInfo menuInfo){
super.onCreateContextMenu(menu, v, menuInfo);
menu.add(Menu.NONE,Menu.NONE,Menu.NONE,"Delete");
}

@Override
public boolean onContextItemSelected(MenuItem item) {

Vibrator vibrator = (Vibrator)getActivity().getSystemService(Context.VIBRATOR_SERVICE);
vibrator.vibrate(new long [] {0,20,0,0}, -1);
TextView tv = (TextView)getActivity().findViewById(R.id.bListTextView);
name = tv.getText().toString();
Log.d("List", name);
Cursor cID = getActivity().getContentResolver().query(BowlersDB.CONTENT_URI,new String[] {BowlersDB.ID,BowlersDB.NAME},BowlersDB.NAME + "=" + name,null,null);
String nameID = cID.getString(1);
getActivity().getContentResolver().delete(BowlersDB.CONTENT_URI,"_id" + "=" + nameID,null);
return super.onContextItemSelected(item);
}

xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<TextView
android:id="@+id/bListTextView"
android:layout_width="wrap_content"
android:layout_height="60dp"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:text="Large Text"
android:paddingLeft="10dp"
android:paddingTop="10dp"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textSize="30dp" />

</RelativeLayout>

在 ListView 中,我通常只是像这样通过 id 获取 textview

mContactList = (ListView) findViewById(R.id.contactList);
mContactList.setOnItemLongClickListener(new OnItemLongClickListener() {

@Override
public boolean onItemLongClick(AdapterView<?> arg0,View arg1,int arg2,long arg3) {

Vibrator v = (Vibrator)getSystemService(VIBRATOR_SERVICE);
v.vibrate(new long [] {0,20,0,0}, -1);
SharedPreferences pref = PreferenceManager.getDefaultSharedPreferences(Contacts.this);
SharedPreferences.Editor edit = pref.edit();
TextView tv =(TextView)arg1.findViewById(R.id.contactEntryText);
n = tv.getText().toString();
edit.putString(SmsPrefs.NAME, n).commit();
showDialog(1);
return false;
}
});

但是那个方法在这里好像行不通

最佳答案

在您的 onContextItemSelected 中,您首先需要获取所选项目:

AdapterContextMenuInfo info = (AdapterContextMenuInfo) item.getMenuInfo();

然后你可以决定是通过id还是position来查询,都可以从AdapterContextMenuInfo中获取.

你这样做的方式(使用 findViewById)我想它只会获取它可以在 View 层次结构中找到的第一个 View ,即列表中的第一个。

关于android - 使用 ContextMenu 从 listfragment 获取单个项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8334870/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com