android - Activity 中的默认 fragment

标签 android android-fragments android-activity android-fragmentactivity

我看过很多关于这个问题的帖子,但我无法弄清楚我的代码。我创建了一个选项卡式 Activity 并在底部设置了三个按钮。按钮在不同 fragment 之间切换。 MainActivity 中的按钮打开此选项卡式 Activity ,但问题是 fragment 布局为空(见下图)。

按钮工作完美,将我发送到正确的 fragment ,但是当它打开时,没有加载任何 fragment 。

enter image description here

我按照 YouTube 教程构建的代码如下所示:

TabbedActivity.class

import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.design.widget.BottomNavigationView;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentTransaction;
import android.support.v7.app.AppCompatActivity;
import android.view.MenuItem;

public class TabbedActivity extends AppCompatActivity {

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

        BottomNavigationView navigation = (BottomNavigationView) findViewById(R.id.navigation);
        navigation.setOnNavigationItemSelectedListener(mOnNavigationItemSelectedListener);
    }

    private BottomNavigationView.OnNavigationItemSelectedListener mOnNavigationItemSelectedListener
            = new BottomNavigationView.OnNavigationItemSelectedListener() {


        @Override
        public boolean onNavigationItemSelected(@NonNull MenuItem item) {
            android.support.v4.app.FragmentManager fragmentManager = getSupportFragmentManager();
            android.support.v4.app.FragmentTransaction transaction = fragmentManager.beginTransaction();
            int intentFragment = getIntent().getExtras().getInt("frgToLoad");
            switch (item.getItemId()) {
                case R.id.navigation_home:
                    transaction.replace(R.id.content,new Fragment_B1()).commit();
/*                    mTextMessage.setText(R.string.title_home);*/
                    return true;
                case R.id.navigation_dashboard:
                    transaction.replace(R.id.content,new Fragment_B2()).commit();
                    /*mTextMessage.setText(R.string.title_dashboard);*/
                    return true;
                case R.id.navigation_notifications:
                    transaction.replace(R.id.content,new Fragment_B3()).commit();
                    /*mTextMessage.setText(R.string.title_notifications);*/
                    return true;

            }
            return false;
        }
    };

}

fragment 内部有相同的代码模式,这是基本的,在这里添加它没有意义。 TabbedActivity 的 xml 如下所示:

<?xml version="1.0" encoding="utf-8"?>

<android.support.constraint.ConstraintLayout 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/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="TabbedActivity">

    <FrameLayout
        android:id="@+id/content"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_constraintTop_toBottomOf="@+id/appbar">

    </FrameLayout>

    <android.support.design.widget.BottomNavigationView
        android:id="@+id/navigation"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginEnd="0dp"
        android:layout_marginStart="0dp"
        android:background="?android:attr/windowBackground"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:menu="@menu/navigation" />

</android.support.constraint.ConstraintLayout>

谁能帮我弄清楚如何默认打开 Fragment_B1?我尝试添加来自 here 的最佳答案中的代码,但仍然不起作用。

最佳答案

您可以直接在 onCreate 上添加原始 fragment ,如下所示:

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

    BottomNavigationView navigation = (BottomNavigationView) findViewById(R.id.navigation);
    navigation.setOnNavigationItemSelectedListener(mOnNavigationItemSelectedListener);

    if(savedInstanceState == null) {
       getSupportFragmentManager().
       beginTransaction().replace(R.id.content,new Fragment_B1()).commit();
    }
 }

关于android - Activity 中的默认 fragment ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48126849/

相关文章:

android - 为什么我无法从我的应用程序中打开我的 Launch Activity

android - 在 Android 的 GridView 中水平滚动

android - 绘制渐变填充多边形以在选择器中使用

android - 访问不同的xml元素

android - onAttach() 如何知道哪个 Activity 正在调用它 (Android Studio)

android - findFragmentByTag 始终返回 null

android - android中AsyncTask中启动Activity的问题

android - Youtubestandaloneplayer在recycleradapter错误中

Android:使用 Graph API Facebook SDK 3.0 让 friend 过生日

android - Recyclerview 在调用 notifydatasetchanged 后滚动到顶部