2011-04-05 49 views
4

我有一個應用程序使用fragments.I'm使用向後兼容包與Android 2.2。我可以充氣xml很好,但是當我嘗試訪問充氣佈局上的對象時,問題就開始了。 LogCat拋出「錯誤膨脹類片段」。我做錯了什麼?這裏是我的代碼:ANDROID:如何訪問片段佈局對象?

View view001 = inflater.inflate(R.layout.bottom_right_view,container,false); 
TextView text001= (TextView)getActivity().findViewById(R.id.textView1); 
text001.setText("Sample text"); 

回答

5
View view001 = inflater.inflate(R.layout.bottom_right_view,container,false); 
TextView text001= (TextView)view001.findViewById(R.id.textView1); 
text001.setText("Sample text"); 
+0

感謝您answer.Now它的工作原理。 – user691285 2011-04-05 10:08:50