當你創建一個佈局,你定義一個ID爲您的看法是這樣的:如何獲取視圖的關聯ID作爲字符串?
<ImageView
android:id="@+id/myImage"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/main01" />
,並在你的代碼中有:
ImageView img = (ImageView) findViewById(R.id.myImage);
現在你有img
對象。
如何獲得img
(「myImage」)的字符串作爲字符串?我需要這樣的東西:
String strId = getStringId(img);
// now strId is "myImage"
是感謝的字符串值的函數。這是我的答案。 :) – breceivemail