0

我对 ActionBarSherlock 的片段和视图有疑问:

我已经成功实现了 2 个选项卡,这些选项卡打开了我的片段视图。

public class AFragment extends SherlockFragment {

private ImageButton imageButton1;
private ImageButton imageButton2;


@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {
    // Inflate the layout for this fragment


    return inflater.inflate(R.layout.activity_afragment, container, false);



}
}

这是我的代码,布局显示一个 TextView 和 2 个 ImageButtons。我想像 imagebutton = (ImageButton) findViewById(R.id.imagebutton1); 这样声明图像按钮 但这给了我一个 findViewById 错误。我尝试了 AFragment Activity 中的每个位置,但仍然存在相同的错误。我还尝试添加一个 OnCreate 函数,但这也不起作用......那么我需要将我的代码放在哪里才能使该视图工作?谢谢!

4

1 回答 1

1

你应该声明一个包含你的视图的变量,做你想要的声明和修改,然后返回视图

public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {
    // Inflate the layout for this fragment
    View v = inflater.inflate(R.layout.activity_afragment, container, false);
    ImageButton imageButton = (ImageButton) v.findViewById(R.id.imagebutton1); 
    return v;

}
于 2012-07-20T23:06:04.110 回答