我已經通過意向傳遞了我的資源ID到另一個類。然後我從intent中檢索額外的內容並將其存儲在int中。Android:查看資源ID?
現在我想獲得該int轉換成視圖或東西,以便我可以使用getTag()?我試圖將其分配到的ImageView,但一直得到空指針
通過:
int resourceId = v.getId();
Intent intent = new Intent(FetchMenu.this,FetchContent.class);
intent.putExtra("ResourceId",resourceId);
startActivity(intent);
收稿日期:
int id;
Intent callingIntent = getIntent();
int getView= callingIntent.getIntExtra("ResourceId", 1);
id = getView;
這版畫的logcat:
System.out.println("Resource ID: " + id);
Logcat:"Resource ID: 2131099660"
這是給我的空指針:
View v = (View)findViewById(id);
String str=(String) v.getTag();
System.out.println("Tag : " + str);
謝謝
在哪裏的問題,好嗎? – Gangnus 2012-02-12 20:56:16
我想將接收到的int轉換成某種視圖? – Jonno 2012-02-12 20:59:22