我必须使用 ActionBarSherlock 在我的应用程序中实现选项卡。我在这里遵循这个例子。现在我想向其中一个片段添加按钮,并对其执行操作。我该怎么做 ?假设这是按钮所在的布局
public class AFragment extends SherlockFragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.hello, container, false);
}
}
我如何从视图中读取按钮?