使用另一个片段中的方法/函数

时间:2018-10-11 08:07:15

标签: android android-fragments

这是我想要做的, 我有一个带有Frame布局的Drawer Layout,它显示了一个Fragment,并且此Fragment具有Fragment2的另一个Frame布局。

所以我希望这个Fragment2在单击按钮时在第一个Fragment中使用或激活一个功能,因为我将Fragment 2切换到Fragment 3,依此类推,而该功能位于第一个Fragment中。

所以MainActivity> MainFragment>(Fragment1,Fragment2等)。

我经常看到的是MainActivity>(Fragment1,Fragment2)。

所以我的切换方法在MainFragment内部,而Fragment1,2将使用它来替换自身。

,我做不到。 我已经尝试使用此代码,但是它不起作用,

bookingFragment = (BookingFragment) getFragmentManager().findFragmentById(R.id.fragment_booking);

和错误响应总是说我正在尝试读取空对象。

主要:

<android.support.v4.widget.DrawerLayout
    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:id="@+id/drawer_layout"
    tools:context=".Modules.Activities.MainActivity">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/bg_tan"
        android:orientation="vertical">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            android:elevation="4dp"
            android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light">

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_margin="5dp"
                android:layout_gravity="center"
                android:src="@drawable/img_logo_header"/>
        </android.support.v7.widget.Toolbar>

        <FrameLayout
            android:id="@+id/main_container"
            android:layout_width="match_parent"
            android:layout_height="match_parent"/>

    </LinearLayout>

    <android.support.design.widget.NavigationView
        android:id="@+id/nav_view"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:fitsSystemWindows="true"
        android:background="#FFF"
        app:menu="@menu/drawer_view"
        app:headerLayout="@layout/nav_header"  />

</android.support.v4.widget.DrawerLayout>

第一个片段:

<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:id="@+id/fragment_booking"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/bg_tan"
    android:orientation="vertical"
    tools:context=".Modules.Fragments.BookingFragment">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <LinearLayout
            android:id="@+id/layout_status"
            android:layout_marginTop="3dp"
            android:layout_alignParentTop="true"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
            <ImageView
                android:id="@+id/iv_book_status_address"
                android:layout_weight="1"
                android:background="@drawable/one_orange"
                android:layout_width="0dip"
                android:layout_height="wrap_content" />
            <ImageView
                android:id="@+id/iv_book_status_recipient"
                android:layout_weight="1"
                android:background="@drawable/two_gray"
                android:layout_width="0dip"
                android:layout_height="wrap_content" />
            <ImageView
                android:id="@+id/iv_book_status_package"
                android:layout_weight="1"
                android:background="@drawable/three_gray"
                android:layout_width="0dip"
                android:layout_height="wrap_content" />
        </LinearLayout>

        <LinearLayout
            android:layout_marginTop="3dp"
            android:layout_alignParentTop="true"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
            <TextView
                android:id="@+id/tv_book_status_address"
                android:layout_weight="1"
                android:layout_width="0dip"
                android:layout_height="wrap_content"
                android:gravity="center_horizontal"
                android:paddingVertical="@dimen/_5sdp"
                android:text="Address"
                android:textColor="@color/colorPrimaryDark"/>
            <TextView
                android:id="@+id/tv_book_status_recipient"
                android:layout_weight="1"
                android:layout_width="0dip"
                android:layout_height="wrap_content"
                android:gravity="center_horizontal"
                android:paddingVertical="@dimen/_5sdp"
                android:text="Recipient"
                android:textColor="@color/hint"/>
            <TextView
                android:id="@+id/tv_book_status_package"
                android:layout_weight="1"
                android:layout_width="0dip"
                android:layout_height="wrap_content"
                android:gravity="center_horizontal"
                android:paddingVertical="@dimen/_5sdp"
                android:text="Packaging"
                android:textColor="@color/hint"/>
        </LinearLayout>

        <FrameLayout
            android:layout_below="@id/layout_status"
            android:id="@id/container"
            android:layout_width="match_parent"
            android:layout_height="fill_parent"/>

    </RelativeLayout>
</LinearLayout>

Fragment2:

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:map="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:background="@color/bg_tan"
    tools:context=".Modules.Fragments.BookAddressFragment">
    <fragment
        android:id="@+id/map_address"
        android:name="com.google.android.gms.maps.SupportMapFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        map:cameraZoom="17"/>

    <LinearLayout
        android:layout_above="@id/layout_address"
        android:layout_width="match_parent"
        android:layout_height="@dimen/_35sdp">

        <Button
            android:id="@+id/btn_on_demand"
            android:layout_marginHorizontal="@dimen/_5sdp"
            android:background="@drawable/btn_white"
            android:elevation="10dp"
            android:layout_weight="1"
            android:layout_width="0dip"
            android:layout_height="@dimen/_30sdp"
            android:text="On Demand"
            android:textColor="@color/hint"
            android:textAllCaps="false"/>

        <Button
            android:id="@+id/btn_next_day"
            android:layout_marginHorizontal="@dimen/_5sdp"
            android:background="@drawable/btn_white"
            android:elevation="10dp"
            android:layout_weight="1"
            android:layout_width="0dip"
            android:layout_height="@dimen/_30sdp"
            android:text="Next Day"
            android:textColor="@color/hint"
            android:textAllCaps="false"/>

        <Button
            android:id="@+id/btn_2_3_days"
            android:layout_marginHorizontal="@dimen/_5sdp"
            android:background="@drawable/btn_white"
            android:elevation="10dp"
            android:layout_weight="1"
            android:layout_width="0dip"
            android:layout_height="@dimen/_30sdp"
            android:text="2-3 Days"
            android:textColor="@color/hint"
            android:textAllCaps="false"/>
    </LinearLayout>

    <LinearLayout
        android:id="@+id/layout_address"
        android:background="@drawable/btn_white"
        android:layout_alignParentBottom="true"
        android:layout_margin="@dimen/_5sdp"
        android:elevation="10dp"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="@dimen/_5sdp"
            android:text="Single Booking"
            android:textColor="@color/hint"/>

        <LinearLayout
            android:gravity="center_vertical"
            android:layout_marginHorizontal="@dimen/_5sdp"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
            <ImageView
                android:layout_margin="@dimen/_5sdp"
                android:background="@drawable/ic_circle_pickup_small"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />

            <EditText
                android:id="@+id/et_book_address_pickup"
                android:background="@drawable/border_round_gray"
                android:layout_width="match_parent"
                android:layout_height="@dimen/_35sdp"
                android:layout_marginVertical="@dimen/_5sdp"
                android:paddingHorizontal="@dimen/_10sdp"
                android:textColorHint="@color/hint"
                android:textColor="@color/blitz_gray"
                android:inputType="text"
                android:hint="Pick up at"
                android:singleLine="true" />
        </LinearLayout>

        <LinearLayout
            android:gravity="center_vertical"
            android:layout_marginHorizontal="@dimen/_5sdp"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
            <ImageView
                android:layout_margin="@dimen/_5sdp"
                android:background="@drawable/ic_circle_deliver_small"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />

            <EditText
                android:id="@+id/et_book_address_deliver"
                android:background="@drawable/border_round_gray"
                android:layout_width="match_parent"
                android:layout_height="@dimen/_35sdp"
                android:layout_marginVertical="@dimen/_5sdp"
                android:paddingHorizontal="@dimen/_10sdp"
                android:textColorHint="@color/hint"
                android:textColor="@color/blitz_gray"
                android:inputType="text"
                android:hint="Deliver to"
                android:singleLine="true" />
        </LinearLayout>

        <Button
            android:id="@+id/btn_book_address"
            android:layout_width="match_parent"
            android:layout_height="@dimen/_35sdp"
            android:background="@color/blitz_yellow"
            android:text="Enter recipient details"
            android:textAllCaps="false"
            android:textSize="16sp"
            android:textColor="#000" />
    </LinearLayout>
</RelativeLayout>

4 个答案:

答案 0 :(得分:0)

当您切换到第二个片段时,我想您正在事务中执行替换而不是 add 。调用replace时,现有片段将位于 backstack 中,因此所有方法和变量都将被销毁。因此,当您从 Frag2 调用 Frag1 中声明的方法时,由于Frag1不再存在于内存中,因此肯定会返回空指针异常。

如果您想在不同的片段中大量使用该功能,请尝试将其重构为活动类,然后通过调用

getActivity().method_name();

答案 1 :(得分:0)

//在您的片段中

public void callFunction(){

}

//在另一个片段中

MyClassName obj=new MyClassName();
obj.callFunction()

答案 2 :(得分:0)

最有效的方法是使用BroadcastReceiver,在您的第一个片段中创建一个接收器

public class CustomBroadcastReceiver extends BroadcastReceiver {
 @Override
    OnReceive(Intent intent){
     // do what you need to do
    }
}

IntentFilter filter = new IntentFilter(“filter”);
CustomerBroadcastReceiver receiver = new BroadcastReceiver();

注册

LocalBroadcastReceiver.getInstance(this).registerReceiver(receiver, filter);

在fragment2中,要激活它,只需要做的

LocalBroadcastReceiver.getInstance(this).sendBroadcast(new Intent);

答案 3 :(得分:0)

您的片段不应直接相互交互,不建议这样做。取而代之的是,他们应该在这个cas中通过一个中间语进行交谈,这是您的活动:

这是您需要做的  -创建界面

    public interface Communicator {

    public void switchFragments();
}

-现在您的活动应实现此接口并覆盖switchFragments()方法

  • 现在在片段中创建Communicator接口的实例,应调用该实例来更改片段,然后覆盖片段中的onAttach并进行如下分配:

    沟通交流者; @Override public void onAttach(Context context){     super.onAttach(context);

    try {
        communicator = (YourActivity) context;
    }catch (ClassCastException cce){
        cce.printStackTrace();
    }
    

    } 现在,当您需要调用以更改片段时:

    communicator.switchFragments();

在活动中,您可以在第一个片段中调用一个方法,然后执行您需要做的事情。