安卓中实现Activity向Fragment传值

1.写主布局文件,有一个输入框,发送按钮,用来放Fragment的LinearLayout

    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

            android:id="@+id/text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textColor="#00ff00"/>
   

你可能感兴趣的:(安卓,Fragment)