Android Function(3)| 共用Fragment

一.前言

Fragment碎片,可以當(dāng)成是一個微型的Activity脱拼,并且一個Fragment能夠嵌套進(jìn)不同的Activity中。例如許多音樂App的每一個活動的下方都會有一個播放欄,不管你進(jìn)入到哪一個頁面中該播放欄都會存在下方,簡單來說就是Fragment的共用竟闪。

二.實現(xiàn)

1.創(chuàng)建Fragment

先來看主代碼:

public class MyFragment extends Fragment implements View.OnClickListener {

    private Button play;

    private Button next;

    private Button stop;


    public synchronized MyFragment newInstance(){
        return new MyFragment();
    }


    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState){
        super.onCreateView(inflater,container,savedInstanceState);
        View view = inflater.inflate(R.layout.fragment,container,false);
        play = (Button)view.findViewById(R.id.play);
        stop = (Button)view.findViewById(R.id.stop);
        next = (Button)view.findViewById(R.id.next);

        play.setOnClickListener(this);
        stop.setOnClickListener(this);
        next.setOnClickListener(this);
        return view;
    }


    @Override
    public void onClick(View view) {
        switch (view.getId()){
            case R.id.play:
                Toast.makeText(getContext(), "play", Toast.LENGTH_SHORT).show();
                break;
            case R.id.stop:
                Toast.makeText(getContext(), "stop", Toast.LENGTH_SHORT).show();
                break;
            case R.id.next:
                Toast.makeText(getContext(), "next", Toast.LENGTH_SHORT).show();
                break;
        }
    }
}

接著是Fragment的布局文件:

<?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="50dp"
    android:orientation="horizontal"
    android:background="#fff">

    <TextView
        android:layout_gravity="center_vertical"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:text="嘻唰唰"/>

    <Button
        android:id="@+id/play"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:text="播放"/>

    <Button
        android:id="@+id/stop"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:text="停止"/>

    <Button
        android:id="@+id/next"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:text="下一首"/>

</LinearLayout>

2.創(chuàng)建Activity

我們在項目中創(chuàng)建出許多個Activity,然后在Activity的布局文件中來寫布局芒炼,這里為了簡單瘫怜,就只用純色來對Activity進(jìn)行填充:

<!--MainActivity.xml-->
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="#78b"
    tools:context="com.example.yzbkaka.onefragment.MainActivity">

    <fragment
        android:id="@+id/fragment"
        android:name="com.example.yzbkaka.onefragment.MyFragment"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_marginTop="50dp">
    </fragment>
    
    <Button
        android:id="@+id/start_second"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" 
        android:text="start second"/>

</LinearLayout>
<!--SecondActivity.xml-->
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="#fff"
    tools:context="com.example.yzbkaka.onefragment.MainActivity">

    <fragment
        android:id="@+id/fragment"
        android:name="com.example.yzbkaka.onefragment.MyFragment"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_marginTop="50dp">
    </fragment>


    <Button
        android:id="@+id/start_third"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="start_third"/>

</LinearLayout>
<!--ThirdActivity.xml-->
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="#076"
    tools:context="com.example.yzbkaka.onefragment.MainActivity">

    <fragment
        android:id="@+id/fragment"
        android:name="com.example.yzbkaka.onefragment.MyFragment"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_marginTop="50dp">
    </fragment>

</LinearLayout>

在activity的布局里面我們將創(chuàng)建好的MyFragment引入,然后設(shè)置一個按鈕用于啟動其他的Activity本刽。需要注意的是在每一個Activity的布局文件中,引用的fragment的id都必須是相同的赠涮,在這里我用的id是andoird:id="@id/fragment"子寓。

接著我們來修改Activity的主代碼,這里以MainActivity為例笋除,后面的Activity都是相似的:

public class MainActivity extends FragmentBaseActivity {

  private Button start;


  @Override
  protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      start = (Button)findViewById(R.id.start_second);
      start.setOnClickListener(new View.OnClickListener() {
          @Override
          public void onClick(View view) {
              Intent intent = new Intent(MainActivity.this,SecondActivity.class);
              startActivity(intent);
          }
      });
  }
}

這里我們讓MainActivity繼承FragmentBaseActivity斜友,其他的Activity也是同樣。FragmentBaseActivity代碼如下:

public abstract class FragmentBaseActivity extends AppCompatActivity {

    private MyFragment myFragment;


    @Override
    protected void onCreate(Bundle savedInstanceState){
        super.onCreate(savedInstanceState);
        showFragment();
    }


    private void showFragment(){
       FragmentTransaction fragmentTransaction = getSupportFragmentManager().beginTransaction();
       if(myFragment == null){
           myFragment = MyFragment.newInstance();
           fragmentTransaction.add(R.id.fragment,myFragment).commit();
       }else{
           fragmentTransaction.show(myFragment).commit();
       }
    }
}

可以很清晰的看到垃它,當(dāng)每一個繼承它的Activity在調(diào)用onCreate()方法時鲜屏,都會調(diào)用父類的showFragment()方法,在該方法里面我們就是動態(tài)的將MyFragment進(jìn)行添加国拇。

最終效果
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末洛史,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子酱吝,更是在濱河造成了極大的恐慌也殖,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,378評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件务热,死亡現(xiàn)場離奇詭異忆嗜,居然都是意外死亡己儒,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,356評論 2 382
  • 文/潘曉璐 我一進(jìn)店門捆毫,熙熙樓的掌柜王于貴愁眉苦臉地迎上來闪湾,“玉大人,你說我怎么就攤上這事绩卤∠煳剑” “怎么了?”我有些...
    開封第一講書人閱讀 152,702評論 0 342
  • 文/不壞的土叔 我叫張陵省艳,是天一觀的道長娘纷。 經(jīng)常有香客問我,道長跋炕,這世上最難降的妖魔是什么赖晶? 我笑而不...
    開封第一講書人閱讀 55,259評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮辐烂,結(jié)果婚禮上遏插,老公的妹妹穿的比我還像新娘。我一直安慰自己纠修,他們只是感情好胳嘲,可當(dāng)我...
    茶點故事閱讀 64,263評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著扣草,像睡著了一般了牛。 火紅的嫁衣襯著肌膚如雪辰妙。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,036評論 1 285
  • 那天密浑,我揣著相機與錄音蛙婴,去河邊找鬼尔破。 笑死,一個胖子當(dāng)著我的面吹牛懒构,可吹牛的內(nèi)容都是我干的餐济。 我是一名探鬼主播痴脾,決...
    沈念sama閱讀 38,349評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了滚朵?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,979評論 0 259
  • 序言:老撾萬榮一對情侶失蹤辕近,失蹤者是張志新(化名)和其女友劉穎韵吨,沒想到半個月后移宅,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體归粉,經(jīng)...
    沈念sama閱讀 43,469評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,938評論 2 323
  • 正文 我和宋清朗相戀三年漏峰,在試婚紗的時候發(fā)現(xiàn)自己被綠了糠悼。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,059評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡浅乔,死狀恐怖倔喂,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情靖苇,我是刑警寧澤席噩,帶...
    沈念sama閱讀 33,703評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站贤壁,受9級特大地震影響悼枢,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜脾拆,卻給世界環(huán)境...
    茶點故事閱讀 39,257評論 3 307
  • 文/蒙蒙 一馒索、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧假丧,春花似錦双揪、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,262評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽运吓。三九已至渴邦,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間拘哨,已是汗流浹背谋梭。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留倦青,地道東北人瓮床。 一個月前我還...
    沈念sama閱讀 45,501評論 2 354
  • 正文 我出身青樓,卻偏偏與公主長得像,于是被迫代替她去往敵國和親隘庄。 傳聞我的和親對象是個殘疾皇子踢步,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,792評論 2 345