gpt4 book ai didi

android - 在android中制作可点击的textview

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:21:04 26 4
gpt4 key购买 nike

我正在制作一个 android 应用程序,我有 4 个 TextView ,即 ProductId、Title、description、image。我希望当我点击其中的每一个时应该显示产品 ID。我有一个 web 服务。

网络服务的输出是

vmsc>
<response code="0" message="Success"/>

<responsedata>

<productcategories>

<productcategory>
<id>1</id>
<title>Celebrities</title>
<description>Celebrities</description>
<image>
</image>
</productcategory>

<productcategory>
<id>2</id>
<title>Music</title>
<description>Music</description>
<image>
</image>
</productcategory>

<productcategory>
<id>3</id>
<title>Sports</title>
<description>Sports</description>
<image>
</image>
</productcategory>

<productcategory>
<id>4</id>
<title>Fashion</title>
<description>Fashion</description>
<image>
</image>
</productcategory>

<productcategory>
<id>5</id>
<title>Religion</title>
<description>Religion</description>
<image>
</image>
</productcategory>

<productcategory>
<id>6</id>
<title>Others</title>
<description>Others</description>
<image>
</image>
</productcategory>
</productcategories>
</responsedata>
</vmsc>

提前致谢图沙尔

最佳答案

final TextView view = (TextView) findViewById(R.id.textview1);
view.setOnClickListener(new View.OnClickListener() {

@Override
public void onClick(View v) {
// request your webservice here. Possible use of AsyncTask and ProgressDialog
// show the result here - dialog or Toast
}

});

关于android - 在android中制作可点击的textview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5537043/

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