根据特定条件加载片段

时间:2018-11-21 11:11:34

标签: android android-activity fragment rewardedvideoad

我有一个问题,请帮帮我。我正在构建一个android应用程序,并且已成功将Rewarded video ads集成到其中。

我想显示一个片段或在满足以下条件时自动重定向到特定片段:

@Override
    public void onRewarded(RewardItem rewardItem) {
// I want to redirect the user to a particular fragment here. 
}

所以请帮助我,如果还有其他方法可以实现这一目标,请告诉我。

2 个答案:

答案 0 :(得分:1)

为此使用Fragment Manager和Fragment Transaction Manager。

getFragmentManager().beginTransaction().replace(R.id.your_framelayout_id, new your_fragment()).commit();

答案 1 :(得分:1)

在您的onRewarded内写以下代码:

    android.support.v4.app.Fragment fragment = new FragmentA();
    android.support.v4.app.FragmentManager fragmentManager = getActivity()
                .getSupportFragmentManager();
    android.support.v4.app.FragmentTransaction fragmentTransaction = 
                fragmentManager.beginTransaction();
    fragmentTransaction.replace(R.id.fragment_container, fragment);
    fragmentTransaction.commit();

此处 fragment_container 是您要在其中托管片段的Activity中定义的FrameLayout。

我要说的是一个具有框架布局的示例活动。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/main_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity">

     <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Below is a fragment Container" />
     <FrameLayout
         android:id="@+id/fragment_container"
         android:layout_height="wrap_content"
         android:layout_width="match_content" />
</LinearLayout>