鱼C论坛

 找回密码
 立即注册
查看: 2495|回复: 7

[原创]android学习之fragmentTab

[复制链接]
发表于 2014-11-22 20:57:22 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 青玄 于 2014-11-22 21:00 编辑

本案例主要实现的是不同页面之间的切换操作,其实就是在原有的界面上进行一个界面的替换操作而已,本来activity可以实现这个功能,但是太多的activity使得程序过于臃肿,所以用fragment进行切换,可以减少这个弊端;
一下是主要实现的步骤,当然只是一部分而已:
1. 开始出现的界面:main_activity.xml
<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" >

    <fragment 
        android:id="@+id/tab"
2. TabFragment.java文件主要实现加载标题栏的布局文件:
package com.example.tabfragment_test;

import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

public class TabFragment extends Fragment {

        @Override
        public View onCreateView(LayoutInflater inflater, ViewGroup container,
                        Bundle savedInstanceState) {
                // TODO Auto-generated method stub
                View view = inflater.inflate(R.layout.fragment_tab, null);
                return view;
        }

        
}
3.加载标题栏的布局文件:fragment_tab.xml
<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:background="#55ff66"
    android:gravity="center"
    android:orientation="horizontal"
    
    tools:context=".MainActivity" >

    <TextView
        android:gravity="center"
        android:layout_weight="1"
        android:layout_width="0dip"
        android:layout_height="wrap_content"
        android:id="@+id/tv1"
        android:text="小甲鱼"
         />
    
     <TextView
        android:gravity="center"
        android:layout_weight="1"
        android:layout_width="0dip"
        android:layout_height="wrap_content"
        android:id="@+id/tv2"
        android:text="小白马"
         />
     
      <TextView
        android:gravity="center"
        android:layout_weight="1"
        android:layout_width="0dip"
        android:layout_height="wrap_content"
        android:id="@+id/tv3"
        android:text="小仙"
         />
      
       <TextView
        android:gravity="center"
        android:layout_weight="1"
        android:layout_width="0dip"
        android:layout_height="wrap_content"
        android:id="@+id/tv4"
        android:text="wiliam"
         />
</LinearLayout>
4.在MainActivity.java主程序中进行监听切换操作:
package com.example.tabfragment_test;

import com.cbd.tabfragment.Fragment1;
import com.cbd.tabfragment.Fragment2;
import com.cbd.tabfragment.Fragment3;
import com.cbd.tabfragment.Fragment4;

import android.os.Bundle;
import android.app.Activity;
import android.app.FragmentManager;
import android.app.FragmentTransaction;
import android.content.DialogInterface;
import android.graphics.Color;

import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.TextView;

public class MainActivity extends Activity implements OnClickListener{

        private TextView tv1;
        private FragmentManager manager;
        
        @Override
        protected void onCreate(Bundle savedInstanceState) {
                super.onCreate(savedInstanceState);
                setContentView(R.layout.activity_main);
                
                this.tv1 = (TextView) this.findViewById(R.id.tv1);

                //对这个textView 进行监听
                tv1.setOnClickListener(this);  

                manager = this.getFragmentManager();    //获得fragment管理器
        }

        @Override
        public void onClick(View v) {
                // TODO Auto-generated method stub
                FragmentTransaction ft = manager.beginTransaction();   //得到这个对象调用replace方法进行替换操作
                
                switch(v.getId())
                {
                case R.id.tv1:
                        ft.replace(R.id.content, new Fragment1());
                        tv1.setBackgroundColor(Color.BLUE);
                        tv2.setBackgroundColor(34757495);
                        tv3.setBackgroundColor(57891292);
                        tv4.setBackgroundColor(46897932);
                        break;
                }
                ft.commit();   //提交
        }

}
QQ截图20141122203816.png QQ截图20141122203829.png QQ截图20141122205656.png QQ截图20141122205707.png


评分

参与人数 1荣誉 +5 鱼币 +5 贡献 +3 收起 理由
拈花小仙 + 5 + 5 + 3 感谢楼主无私奉献!

查看全部评分

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2014-11-22 21:37:32 | 显示全部楼层
谢谢 小白马玄玄~
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2014-11-22 21:38:03 | 显示全部楼层
帮我这论坛第一灌水户也出出名哈~
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2014-11-22 21:39:20 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2014-11-22 21:41:03 | 显示全部楼层
强烈支持楼主ing,看来我不过用功
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2014-11-23 14:14:35 | 显示全部楼层

呵呵! 小仙!咱两谁跟谁啊!写程序的时候,实在想不出什么来!就想到你们了!以前写的程序也是这样的!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2014-11-23 14:15:16 | 显示全部楼层
拈花小仙 发表于 2014-11-22 21:38
帮我这论坛第一灌水户也出出名哈~

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2014-11-23 14:26:54 | 显示全部楼层
百日维新 发表于 2014-11-22 21:41
强烈支持楼主ing,看来我不过用功

新新能不能也做个实例,加上偶啦啦~
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-15 16:24

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表