android Fragment靜態載入使用詳解
阿新 • • 發佈:2019-02-08
Fragment是activity的介面中的一部分或一種行為。你可以把多個Fragment們組合到一個activity中來建立一個多面介面並且你可以在多個activity中重用一個Fragment。你可以把Fragment認為模組化的一段activity,它具有自己的生命週期,接收它自己的事件,並可以在activity執行時被新增或刪除。
Fragment分為靜態載入和動態載入兩種,這裡就先講靜態載入,這種方式簡單但是不靈活。
一 佈局檔案
activity_main.xml
fragment_first.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" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context="com.example.fragmentdemo.MainActivity" > <!-- 靜態載入fragment:把fragment當成一個ui標籤使用 --> <fragment android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/first" android:name="com.example.fragmentdemo.FirstFragment" android:layout_weight="1"/> <fragment android:layout_width="match_parent" android:layout_height="wrap_content" android:name="com.example.fragmentdemo.SecondFragment" android:id="@+id/second" android:layout_weight="1"/> </LinearLayout>
fragment_second.xml<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#00ff00"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:text="我是第一個Fragment" android:textColor="#fff"/> </RelativeLayout>
二 java 檔案<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#ff00ff" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="我是第第二個Fragment" android:textColor="#fff"/> </RelativeLayout>
FirstFragment.java
package com.example.fragmentdemo;
import android.content.Context;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.Toast;
public class FirstFragment extends Fragment{
public View onCreateView(LayoutInflater inflater,
@Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
// TODO Auto-generated method stub
//View.inflate(context, resource, root)
View view = inflater.inflate(R.layout.fragment_first, container,false);
return view;
}
}
SecondFragment.java
package com.example.fragmentdemo;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
public class SecondFragment extends Fragment{
@Override
@Nullable
public View onCreateView(LayoutInflater inflater,
@Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
// TODO Auto-generated method stub
//View.inflate(context, resource, root)
View view = inflater.inflate(R.layout.fragment_second, container,false);
return view;
}
}
MianActivity.java
package com.example.fragmentdemo;
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.view.Menu;
import android.view.MenuItem;
public class MainActivity extends FragmentActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
三 截圖:
四 總結
靜態載入Fragment時只需要在佈局檔案中加在fragment標籤中即可,它更像是被當作一個ui標籤使用,這種使用簡單,但是使用場景單一,極其不靈活,也違背了設計Fragment的初衷。同時在引入Fragment可以引入android.support.v4.app.Fragment也可以引入android.app.Fragment,但是我建議使用android.support.v4.app.Fragment。