我正在使用Android應用程序。在我的應用程序中,我必須更改按鈕點擊片段的視圖。下面是我的代碼:更改按鈕單擊片段的視圖
public View onCreateView(final LayoutInflater inflater, final ViewGroup container,
Bundle savedInstanceState) {
// TODO Auto-generated method stub
if (container == null) {
return null;
}
LinearLayout theLayout = (LinearLayout)inflater.inflate(R.layout.settings, container, false);
Button edit = (Button) theLayout.findViewById(R.id.btn_edit);
edit.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
// Here I want to change the view.[xml file]
}
});
return theLayout;
}
在活動,我們可以通過使用setContentView()
改變視圖。我該如何做到這一點?
http://developer.android.com/reference/android/app/Fragment.html#getView()是指該鏈接 – Thiru 2012-08-07 10:55:34