2014-02-28 70 views
0

我有一個要求,我必須從非活動調用佈局的視圖(按鈕,文本)。如何從android中的非活動調用佈局的視圖

For Example: 

1.Utils.java->which is core java class 
2.calling setContentView(R.layout.loing); 
3.Button btnlogin = (Button)findViewById(R.id.btnlogin); 

所以請告訴我該怎麼做這個事情。

+1

你的問題不清楚! –

+2

嘗試使用上下文。 –

+0

使用context.findViewById();' –

回答

0

做到這一點:

Button myBtn = (Button)mContext.findViewById(R.id.btnlogin);