1
我希望能夠以同樣的方式來獲得參照RelativeLayout
作爲可能得到參照視圖沒有設置一個活動
RelativeLayout relative = (RelativeLayout)findViewById(R.id.relative);
的內容查看,但沒有設置Activity
的ContentView
。我認爲這可能與Infalter
有關?我的最終目標是獲得它並將其添加爲自定義視圖對象的子視圖。
我希望能夠以同樣的方式來獲得參照RelativeLayout
作爲可能得到參照視圖沒有設置一個活動
RelativeLayout relative = (RelativeLayout)findViewById(R.id.relative);
的內容查看,但沒有設置Activity
的ContentView
。我認爲這可能與Infalter
有關?我的最終目標是獲得它並將其添加爲自定義視圖對象的子視圖。
是的,你可以使用LayoutInflater。例如:
LayoutInflater inflater = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View mv = inflater.inflate(R.layout.yourlayout, null);
然後你能...
RelativeLayout relative = (RelativeLayout)mv.findViewById(R.id.relative);