gpt4 book ai didi

android - 从android中具有多个id的列表项中获取一个id值

转载 作者:行者123 更新时间:2023-11-29 21:48:54 27 4
gpt4 key购买 nike

我试图在单击列表中的项目时检索某个 ID。

如何检索值 +id/name?我想在如下所示的警告对话框中使用它。

我目前正在使用一个简单的 toast,它在单击列表项时只显示“名称”

这是我的列表项的 xml 代码:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content">

<TextView
android:id="@+id/text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_toLeftOf="@+id/image" android:textSize="20dip"
android:layout_marginLeft="10dip"/>

<ImageView
android:id="@+id/image"
android:layout_width="50dip"
android:layout_height="50dip"
android:layout_centerHorizontal="true"
android:src="@drawable/stub" android:scaleType="centerCrop"/>

<TextView
android:id="@+id/name"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/image"
android:textSize="20dip" android:layout_marginLeft="10dip"/>

</RelativeLayout>

警告对话框代码:

list.setOnItemClickListener(new OnItemClickListener() {

                    String artistname = "get +id/name here";
String items[] = {"Youtube", "Soundcloud"};
@Override
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {

AlertDialog.Builder builder = new
AlertDialog.Builder(JsonActivity.this);

builder.setTitle(artistname);
builder.setItems(items, new
DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {

}
});

AlertDialog alert = builder.create();
alert.show();
}});




}

最佳答案

试试这个

 public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
//name of the artist...
String name=((TextView)view.findViewById(R.id.name)).getText();

}

我想这就是你想要的......我希望这对你有帮助

关于android - 从android中具有多个id的列表项中获取一个id值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14977355/

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