Android用Fragment创建选项卡
程序员文章站
2024-03-04 14:31:59
本文结合之前的动态创建fragment来进行一个实践,来实现用fragment创建一个选项卡
项目布局
本文结合之前的动态创建fragment来进行一个实践,来实现用fragment创建一个选项卡
项目布局
<linearlayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context=".mainactivity" > <linearlayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" > <textview android:id="@+id/tab1" android:layout_width="0dip" android:layout_height="wrap_content" android:layout_weight="1" android:gravity="center" android:text="社会新闻" /> <textview android:id="@+id/tab2" android:layout_width="0dip" android:layout_height="wrap_content" android:layout_weight="1" android:gravity="center" android:text="生活新闻" /> <textview android:id="@+id/tab3" android:layout_width="0dip" android:layout_height="wrap_content" android:layout_weight="1" android:gravity="center" android:text="军事新闻" /> <textview android:id="@+id/tab4" android:layout_width="0dip" android:layout_height="wrap_content" android:layout_weight="1" android:gravity="center" android:text="娱乐新闻" /> </linearlayout> <linearlayout android:id="@+id/content" android:layout_width="fill_parent" android:layout_height="fill_parent" > </linearlayout> </linearlayout>
新建fragment1.java~fragment4.java,其中fragment1.java中的代码如下:
public class fragment1 extends fragment { @override public view oncreateview(layoutinflater inflater, viewgroup container, bundle savedinstancestate) { return inflater.inflate(r.layout.fragment1, null); } }
其他几个文件的代码类似
新建fragment1.xml~fragment4.xml,其中fragment1.xml中的代码如下:
<?xml version="1.0" encoding="utf-8"?> <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="center" android:orientation="vertical" > <textview android:id="@+id/textview1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="社会新闻" android:textappearance="?android:attr/textappearancelarge"/> </linearlayout>
其他几个文件的代码类似
mainactivity.java中的代码如下:
public class mainactivity extends activity implements onclicklistener { private linearlayout content; private textview tv1, tv2, tv3, tv4; private fragmentmanager fm; private fragmenttransaction ft; @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_main); content = (linearlayout) findviewbyid(r.id.content); tv1 = (textview) findviewbyid(r.id.tab1); tv2 = (textview) findviewbyid(r.id.tab2); tv3 = (textview) findviewbyid(r.id.tab3); tv4 = (textview) findviewbyid(r.id.tab4); tv1.setonclicklistener(this); tv2.setonclicklistener(this); tv3.setonclicklistener(this); tv4.setonclicklistener(this); fm = getfragmentmanager(); ft = fm.begintransaction(); ft.replace(r.id.content, new fragment1()); // 默认情况下fragment1 } @override public void onclick(view v) { ft = fm.begintransaction(); switch (v.getid()) { case r.id.tab1: ft.replace(r.id.content, new fragment1()); break; case r.id.tab2: ft.replace(r.id.content, new fragment2()); break; case r.id.tab3: ft.replace(r.id.content, new fragment3()); break; case r.id.tab4: ft.replace(r.id.content, new fragment4()); break; default: break; } ft.commit(); } }
运行项目后如下效果:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
/** * created by gerry.zhong on 2016/10/11. */ var gerry = (function(){ //创建一个独立的对象,注入所有的方法,包括你想抛出去和不想抛出去的 var tool = { aaaa:function(){}, bbbb:function(){ console.log("我只想内部使用,不想给别人用"); } }; /* * 该对象承载所有需要抛出去的对象 * 1.该对象中的方法可以自己写 * 2.该对象中的方法可以注入(例子中的tempobj.tool.aa) * 3.该对象也可以选择性抛出给使用者需要的方法,也可以隐藏(tool.bbbb) * */ var tempobj ={ //reader为一些初始化需要的操作,有时候会有注册事件等,或者一些预操作 reader:function(){ }, //注入所有的选择器,方便选择器变化,直接修改该对象中的选择器,而不需要全局去更改 selector:{ myselector:"#myselector", //原密码 }, //注入所有的接口地址,方便接口变化可以进行,快速变更,不需要全局找引用的对象 interface:{ loginurl:"", }, //注入page中所有的事件,统一管理,建议命名规范:事件_命名,例 click_login registerele:{ click_login:function(){ //注册单击事件 } }, //注入所有ajax请求,页面所有请求,将在这里统一管理,建议命名规范:ajax_命名,例 ajax_login /* * 该请求中有2种方案,看需求使用 * 1.不公用一个请求方案 * 2.公用一个请求,但是回调处理不一样 * */ ajaxrequest:{ //不公用一个请求方案 ajax_login:function(){ $.post("","",function(data){ tempobj.callback.call_login(data); }); }, //会有多个业务公用这个请求 ajax_login_t:function(callback){ //所有接口地址从interface中获取,callback中tempobj.callback中处理 $.post("","",callback); }, }, //处理所有回调函数,针对一个请求,处理一个回调 callback:{ //不共用请求处理回调 call_login:function(data){ //处理回调 }, //公用请求处理回调 call_login_t:function(){ var temp = function(){ }; tempobj.ajaxrequest.ajax_login_t(temp); } }, //所有使用的工具类,如果每个项目都单独的unit.js或者common.js等存放一些公共方法的,这里可以不使用 // ps:这里存放的只是仅针对于这个页面处理的一些tool,一般没必要抛出去,不过看业务而定 tool:{ a:function(){ console.log("我是自己写的方法"); }, aa:tool.aaaa, //这是我想抛出去给别人用的东西 }, //临时缓存存放区域,仅针对本页面,如果跨页面请存放cookie或者localstorage等 //主要解决有时候会使用页面控件display来缓存当前页面的一些数据 temp:{ }, /* * 业务使用区域,针对每个特别的业务去串上面所有的一个个原子 * 因为上面所有的方法,只是做一件事,这边可以根据业务进行串服务,很简单的 * */ firm:{ } }; /* * 闭包抛出去的方法 * */ var outputobj =function(){ //首先执行reader方法,初始化一些操作,比如注册事件啥啥啥的 tempobj.reader(); /* * 抛出给别人使用的对象 * 想给别人看和使用的东西,可以注入tempobj对象,就像tool中的aa的方式 * 不想给别人看和使用的东西,就像内部tool对象中的bbbb方法,你内部可以使用,外部是无法引用的 * */ return tempobj; } //抛出你希望抛出去的对象,因为你掌控了所有,哈哈。 return new outputobj(); })();
推荐阅读
-
Android用Fragment创建选项卡
-
Android App开发中创建Fragment组件的教程
-
Android中Fragment子类及其PreferenceFragment的创建过程演示
-
Android Fragment动态创建详解及示例代码
-
Android中Fragment子类及其PreferenceFragment的创建过程演示
-
Android App开发中创建Fragment组件的教程
-
Android Fragment动态创建详解及示例代码
-
详解Android中Fragment的两种创建方式
-
浅谈Android App开发中Fragment的创建与生命周期
-
详解Android中Fragment的两种创建方式