私は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()
。どうすればそれをフラグメントで行うことができますか?