android-fragments 如何从一个片段切换到另一个片段?

eoigrqb6  于 2022-11-14  发布在  Android
关注(0)|答案(3)|浏览(201)

我想向用户显示一个片段,而不是当前显示的片段。
我已经在片段管理器和片段事务上折腾了好几天了,我不明白。请有人用简单的英语帮助我,如何做到这一点。我已经收到了代码示例和所有东西,这是非常令人沮丧的。请我请求你,我只想让fragmentRegister消失,并让fragmentLogin出现在单击textViewLogin。
这是密码
RegisterFragment.java

public class RegisterFragment extends Fragment implements View.OnClickListener {

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        // Inflate the layout for this fragment
        v = inflater.inflate(R.layout.fragment_register, container, false);
.........

 @Override
    public void onClick(View view) {
        if(view == textViewLogin)
            return inflater.inflate(R.layout.fragment_login, container, false);
    }

}

我不知道是否需要,但这里是主要的Activity.java

public class MainActivity extends AppCompatActivity {

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

        final DrawerLayout drawerLayout = findViewById(R.id.drawerLayout);

        findViewById(R.id.imageMenu).setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                drawerLayout.openDrawer(GravityCompat.START);
            }
        });

        NavigationView navigationView = findViewById(R.id.navigationView);
        navigationView.setItemIconTintList(null);

        NavController navController = Navigation.findNavController(this, R.id.navHostFragment);
        NavigationUI.setupWithNavController(navigationView, navController);

    }
}
wwwo4jvm

wwwo4jvm1#

在androidx中,你可以使用navigation。它就像IOS中的故事板一样。你在res navigation folder under res/下做一个文件夹导航。在里面你做一个导航图,在那里你把片段和连接起来。
在Activity布局中,您可以放置片段布局:

<fragment
    android:id="@+id/frame_layout"
    android:name="androidx.navigation.fragment.NavHostFragment"
    app:defaultNavHost="true"
    app:navGraph="@navigation/before_offer_navigation"
    android:layout_width="match_parent"
    android:layout_height="0dp"

    app:layout_constraintBottom_toTopOf="@+id/bottom_navigation_menu"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    />

导航图中的第一个项目将默认显示。然后在onViewCreated片段中初始化navController

private lateinit var navController: NavController
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
    super.onViewCreated(view, savedInstanceState)
    navController = Navigation.findNavController(view)

}

之后,片段之间的导航就像

navController.navigate(R.id.action_fragment1_to_fragment2)

您可以在navGraph-〉text-〉action中找到的id

<fragment
    android:id="@+id/fragment1"
    android:name="com.example.mark7.Fragment1"
    android:label="Fragment1">
    <action
        android:id="@+id/action_fragment1_to_fragment2"
        app:destination="@id/fragment2" />
</fragment>
i7uq4tfw

i7uq4tfw2#

将框架布局放入MainActivity,默认设置可见性消失。
当用户单击您textViewLogin时,会看到框架布局,并在其中设置您的loginfrgament,如以下代码

@Override
        public void onClick(View view) {
            if(view == textViewLogin){
                  containerView.setVisibility(VISIBLE);
                  LoginFragment fragment=new LoginFragment()
                  FragmentManager fragmentManager = getSupportFragmentManager();
                  fragmentManager.beginTransaction().add(R.id.containerView,fragment).addToBackStack("login").commit();
                  //here R.id.containerView is id of your frameLayout.
        }
    }
7qhs6swi

7qhs6swi3#

在nav_graph中为片段添加动作

<fragment
    android:id="@+id/splashFragment"
    android:name="com.tech.SplashFragment"
    android:label="fragment_splash"
    tools:layout="@layout/fragment_splash" >
    <action
        android:id="@+id/action_splashFragment_to_loginFragment"
        app:destination="@id/loginFragment" />
</fragment>

然后用你的片段中的这一行

findNavController().navigate(R.id.action_splashFragment_to_loginFragment)

相关问题