fragment向fragment传值

2018-01-11  本文已影响0人  小毕_先生

一,首页布局
<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="horizontal"
tools:context="laobi.com
.viewpagedemo.MainActivity">

  <fragment
  android:id="@+id/fragment_left"
  android:layout_width="0dp"
  android:layout_weight="1"
  android:layout_height="match_parent"/>

<fragment
  android:id="@+id/fragment_right"
  android:layout_width="0dp"
  android:layout_weight="1"
  android:layout_height="match_parent"/>

</LinearLayout>

二,实现方式;

上一篇下一篇

猜你喜欢

热点阅读