gpt4 book ai didi

android - 如何与列表中一行中的对象进行交互

转载 作者:搜寻专家 更新时间:2023-11-01 08:06:52 24 4
gpt4 key购买 nike

我的应用程序中有一个列表。列表中的每一行都有一个图像和一个 TextView 。

当相应的行被点击时,我希望 textView 向右移动。

如何“获取”“setOnItemClickListener” 中的 textView?

这是我的适配器:

public class MyAdapter extends ArrayAdapter<String> {
private final Context context;
private final String[] values;
private TextView textView;
private ImageView icon;
public boolean first;

public MyAdapter(Context context, String[] values) {
super(context, R.layout.rowlayout, values);
this.context = context;
this.values = values;
this.first = true;
}

@SuppressWarnings("deprecation")
@Override
public View getView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View rowView = inflater.inflate(R.layout.rowlayout, parent, false);
textView = (TextView) rowView.findViewById(R.id.row_text_view);
icon = (ImageView) rowView.findViewById(R.id.icon);
if (first) {
rowView.setBackgroundColor(Color.TRANSPARENT);
textView.setBackgroundColor(Color.TRANSPARENT);
icon.setBackgroundColor(Color.TRANSPARENT);
first = false;
rowView.setClickable(false);
rowView.setEnabled(false);
} else {
rowView.setBackgroundColor(Color.WHITE);
textView.setBackgroundColor(Color.WHITE);
icon.setBackgroundDrawable(context.getResources().getDrawable(R.drawable.ic_launcher));
}
textView.setText(values[position]);

return rowView;
}}

谢谢!

最佳答案

OnItemClickListener 具有以下签名的方法:

onItemClick(AdapterView<?> parent, View view, int position, long id)

因此您点击了用户所在的行。您现在可以从行中获取 TextView :

view.findViewById(R.id.row_text_view)`.

关于android - 如何与列表中一行中的对象进行交互,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13440302/

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