对于我的应用程序需要一个良好的Ui设计和标签布局,我在谷歌搜索,我发现一个使用View Pager和Action bar标签的用户界面。
链接是: http://www.androidhive.info/2013/10/android-tab-layout-with-swipeable-views-1/
我下载了模板&导入到eclipse.i尝试使用该模板,不知道在哪里添加我的活动编码。 我上传了下面的一个片段,我试图获得一个按钮的动作。但“它显示创建一个方法finViewById”。
public class MoviesFragment extends Fragment {
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_movies, container, false);
Button bu=(Button) findViewById(R.id.button1);
return rootView;
}
我对片段知之甚少。我在谷歌搜索,但我无法得到与此相关的解决方案。任何人都可以帮助我使用上面的UI模板如何以及在哪里添加我的活动编码。提前谢谢。