1

我希望能夠以同樣的方式來獲得參照RelativeLayout作爲可能得到參照視圖沒有設置一個活動

RelativeLayout relative = (RelativeLayout)findViewById(R.id.relative);

的內容查看,但沒有設置ActivityContentView 。我認爲這可能與Infalter有關?我的最終目標是獲得它並將其添加爲自定義視圖對象的子視圖。

回答

3

是的,你可以使用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); 
相關問題