我正在做一個Android應用程序,我有4個textviews,即ProductId,標題,說明,image.I想當我點擊他們每個人產品ID應該顯示。我有一個web服務這個。 Web服務的製作一個textview可點擊在android
輸出爲預先
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>
感謝圖莎爾
這裏有什麼問題?你試過什麼了? – 2011-04-04 10:12:10
我已經創建了一個帶有4個文本的xml。這裏是我的java代碼 – User 2011-04-04 10:13:28
如果我正確理解它,您希望爲每個TextView定義一個ClickListener,因此它可以顯示帶有產品ID的多士爐。 – gnclmorais 2011-04-04 10:17:04