Android用Fragment创建选项卡
短信预约 -IT技能 免费直播动态提醒
本文结合之前的动态创建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();
}
}
运行项目后如下效果:
var gerry =
(function(){
//创建一个独立的对象,注入所有的方法,包括你想抛出去和不想抛出去的
var tool = {
AAAA:function(){},
BBBB:function(){
console.log("我只想内部使用,不想给别人用");
}
};
var tempObj ={
//reader为一些初始化需要的操作,有时候会有注册事件等,或者一些预操作
reader:function(){
},
//注入所有的选择器,方便选择器变化,直接修改该对象中的选择器,而不需要全局去更改
selector:{
mySelector:"#mySelector", //原密码
},
//注入所有的接口地址,方便接口变化可以进行,快速变更,不需要全局找引用的对象
interface:{
loginUrl:"",
},
//注入page中所有的事件,统一管理,建议命名规范:事件_命名,例 click_login
registerEle:{
click_login:function(){
//注册单击事件
}
},
//注入所有ajax请求,页面所有请求,将在这里统一管理,建议命名规范:ajax_命名,例 ajax_login
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();
return tempObj;
}
//抛出你希望抛出去的对象,因为你掌控了所有,哈哈。
return new outputObj();
})();
您可能感兴趣的文章:android TabHost(选项卡)的使用方法android 选项卡(TabHost)如何放置在屏幕的底部Android实现底部导航栏功能(选项卡)Android TabLayout(选项卡布局)简单用法实例分析Android仿微信底部实现Tab选项卡切换效果Android多个TAB选项卡切换效果Android利用Fragment实现Tab选项卡效果Android组件TabHost实现页面中多个选项卡切换效果Android编程之TabWidget选项卡用法实例分析Android ViewPager实现选项卡切换Android编程实现自定义Tab选项卡功能示例Android开发之选项卡功能的实现方法示例
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341