安卓控件:Fragment

feagment可以实现多窗口,类似与html的frame,现在主流的APP中,基本的架构也都是一个主页,然后每个Tab项用Fragment做布局。
一,继承关系图
在这里插入图片描述
二,实例
1,运行效果
在这里插入图片描述
2,实现步骤
(1)界面布局
多窗口切换需要多个揭秘那布局,一个主布局和其他布局内容
maina_ctivity布局

<FrameLayout
    android:id="@+id/content"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="3.5"
    android:background="#ffe545">

</FrameLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="0.5"
    android:orientation="horizontal"
    android:gravity="center"
    android:background="#f54565">

    <ImageButton
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:onClick="doMessage"
        android:background="@mipmap/message"/>

    <ImageButton
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:onClick="doAddress"
        android:background="@mipmap/addressbook"/>

    <ImageButton
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:onClick="doFind"
        android:background="@mipmap/find"/>

    <ImageButton
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:onClick="doMe"
        android:background="@mipmap/me"/>
</LinearLayout>
其他布局
   <LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
        android:layout_height="match_parent">
        <TextView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:text="@string/find"/>
    </LinearLayout>

(2)主界面Main
类似于打气筒的方式导入布局内容

public class FindActivity extends Fragment {

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        return inflater.inflate(R.layout.activity_find,null);
    }
}

在主界面中导入,按钮触发事件

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

    }

    public void doMessage(View view){
        MessageActivity ma = new MessageActivity();
        FragmentManager fm = getFragmentManager();
        FragmentTransaction ft = fm.beginTransaction();
        ft.replace(R.id.content,ma);
        ft.commit();
    }
    public void doAddress(View view){
        AddressActivity aa = new AddressActivity();
        FragmentManager fm = getFragmentManager();
        FragmentTransaction ft = fm.beginTransaction();
        ft.replace(R.id.content,aa);
        ft.commit();
    }
    public void doFind(View view){
        FindActivity fa = new FindActivity();
        FragmentManager fm = getFragmentManager();
        FragmentTransaction ft = fm.beginTransaction();
        ft.replace(R.id.content,fa);
        ft.commit();
    }
    public void doMe(View view){
        MeActivity mea = new MeActivity();
        FragmentManager fm = getFragmentManager();
        FragmentTransaction ft = fm.beginTransaction();
        ft.replace(R.id.content,mea);
        ft.commit();
    }
}
评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值