-2
如何通過引用其屬性來獲取組件?如何通過android中的自定義屬性查找視圖
Button attribute1 = "@+myAttributes/one"/>
//something like
Button Button1 = (Button) findViewByattribute1(R.myAttributes.one);
如何通過引用其屬性來獲取組件?如何通過android中的自定義屬性查找視圖
Button attribute1 = "@+myAttributes/one"/>
//something like
Button Button1 = (Button) findViewByattribute1(R.myAttributes.one);
請嘗試下面的代碼。
Button buttonName = (Button) findViewById(R.id.yourButton);