Android用Fragment建立選項卡_Android

來源:互聯網
上載者:User

本文結合之前的動態建立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();})();

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.