Android 第一个布局可以是一个片段吗?

Android 第一个布局可以是一个片段吗?,android,fragment,drawable,navigator,Android,Fragment,Drawable,Navigator,我有一个带有片段的导航抽屉,但是第一个布局是main_活动,是启动应用程序后可能的调用片段 public class MainActivity extends AppCompatActivity { private Toolbar toolbar; private ScrimInsetsFrameLayout sifl; private DrawerLayout drawerLayout; private ActionBarDrawerToggle drawerToggle; private

我有一个带有片段的导航抽屉,但是第一个布局是main_活动,是启动应用程序后可能的调用片段

public class MainActivity extends AppCompatActivity {

private Toolbar toolbar;
private ScrimInsetsFrameLayout sifl;
private DrawerLayout drawerLayout;
private ActionBarDrawerToggle drawerToggle;
private ListView ndList;
/**
 * ATTENTION: This was auto-generated to implement the App Indexing API.
 * See https://g.co/AppIndexing/AndroidStudio for more information.
 */
private GoogleApiClient client;

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

    sifl = (ScrimInsetsFrameLayout) findViewById(R.id.scrimInsetsFrameLayout);

    //Toolbar

    toolbar = (Toolbar) findViewById(R.id.appbar);
    setSupportActionBar(toolbar);

    //Menu del Navigation Drawer

    ndList = (ListView) findViewById(R.id.navdrawerlist);

    final String[] opciones = new String[]{"Lunes", "Martes", "Miercoles", };

    ArrayAdapter<String> ndMenuAdapter =
            new ArrayAdapter<>(this,
                    android.R.layout.simple_list_item_activated_1, opciones);

    ndList.setAdapter(ndMenuAdapter);

    ndList.setOnItemClickListener(new AdapterView.OnItemClickListener() {
        @override
        public void onItemClick(AdapterView<?> adapterView, View view, int pos, long l) {
            Fragment fragment = null;

            switch (pos) {
                case 0:
                    fragment = new Fragment1();
                    break;
                case 1:
                    fragment = new Fragment2();
                    break;
                case 2:
                    fragment = new Fragment3();
                    break;



            }

            getSupportFragmentManager().beginTransaction()
                    .replace(R.id.content_frame, fragment)
                    .commit();

            ndList.setItemChecked(pos, true);

            getSupportActionBar().setTitle(opciones[pos]);

            drawerLayout.closeDrawer(sifl);
        }
    });

    //Drawer Layout

    drawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);
    drawerLayout.setStatusBarBackgroundColor(getResources().getColor(R.color.colorPrimaryDark));

    drawerToggle = new ActionBarDrawerToggle(
            this, drawerLayout, R.string.openDrawer, R.string.closeDrawer) {

        @override
        public void onDrawerOpened(View drawerView) {
            super.onDrawerOpened(drawerView);
        }

        @override
        public void onDrawerClosed(View drawerView) {
            super.onDrawerClosed(drawerView);
        }
    };

    drawerLayout.setDrawerListener(drawerToggle);

    getSupportActionBar().setDisplayHomeAsUpEnabled(true);
    getSupportActionBar().setHomeButtonEnabled(true);

    // ATTENTION: This was auto-generated to implement the App Indexing API.
    // See https://g.co/AppIndexing/AndroidStudio for more information.
    client = new GoogleApiClient.Builder(this).addApi(AppIndex.API).build();
}


@override
public boolean onOptionsItemSelected(MenuItem item) {

    if (drawerToggle.onOptionsItemSelected(item)) {
        return true;
    }
    return false;
}

@override
protected void onPostCreate(Bundle savedInstanceState) {
    super.onPostCreate(savedInstanceState);
    drawerToggle.syncState();
}

@override
public void onConfigurationChanged(Configuration newConfig) {
    super.onConfigurationChanged(newConfig);
    drawerToggle.onConfigurationChanged(newConfig);
}

@override
public void onStart() {
    super.onStart();

    // ATTENTION: This was auto-generated to implement the App Indexing API.
    // See https://g.co/AppIndexing/AndroidStudio for more information.
    client.connect();
    Action viewAction = Action.newAction(
            Action.TYPE_VIEW, // TODO: choose an action type.
            "Main Page", // TODO: Define a title for the content shown.
            // TODO: If you have web page content that matches this app activity's content,
            // make sure this auto-generated web page URL is correct.
            // Otherwise, set the URL to null.
            Uri.parse("http://host/path               // TODO: Make sure this auto-generated app deep link URI is correct.
            Uri.parse("android-app://com.arisguimera.calisthenicsroutine/http/host/path      );
    AppIndex.AppIndexApi.start(client, viewAction);
}

@override
public void onStop() {
    super.onStop();

    // ATTENTION: This was auto-generated to implement the App Indexing API.
    // See https://g.co/AppIndexing/AndroidStudio for more information.
    Action viewAction = Action.newAction(
            Action.TYPE_VIEW, // TODO: choose an action type.
            "Main Page", // TODO: Define a title for the content shown.
            // TODO: If you have web page content that matches this app activity's content,
            // make sure this auto-generated web page URL is correct.
            // Otherwise, set the URL to null.
            Uri.parse("http://host/path               // TODO: Make sure this auto-generated app deep link URI is correct.
            Uri.parse("android-app://com.arisguimera.calisthenicsroutine/http/host/path      );
    AppIndex.AppIndexApi.end(client, viewAction);
    client.disconnect();
 }
}
例如,更改我的片段的R.layout.activity\u main\u fragment1

主要活动:

<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">



<!-- Contenido de la actividad -->
<include layout="@layout/content_layout" />

<!-- Navigation Drawer Layout -->
<include layout="@layout/navdrawer_layout" />



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

内容布局:

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

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">



<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:clickable="true"
tools:context=".MainActivity"
tools:showIn="@layout/activity_main">




 <!-- Toolbar -->
  <android.support.v7.widget.Toolbar xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/appbar"
    android:layout_height="?attr/actionBarSize"
    android:layout_width="match_parent"
    android:minHeight="?attr/actionBarSize"
    android:background="?attr/colorPrimary"
    android:elevation="4dp"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

<!-- Resto de la interfaz de usuario -->
<FrameLayout
    android:id="@+id/content_frame"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >



</FrameLayout>

</LinearLayout>

</RelativeLayout>

导航抽屉:

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

<com.arisguimera.calisthenicsroutine.ScrimInsetsFrameLayout 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/scrimInsetsFrameLayout"
android:layout_width="300dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@android:color/white"
android:elevation="10dp"
android:fitsSystemWindows="true"
app:insetForeground="#4000"
tools:showIn="@layout/activity_main">

 <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_gravity="left|start"
    android:background="@android:color/white"
    android:orientation="vertical">

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="200dp"
        android:src="@drawable/clogo"
        android:scaleType="centerCrop" />

    <ListView
        android:id="@+id/navdrawerlist"
        android:layout_height="match_parent"
        android:layout_width="match_parent"
        android:divider="@null"
        android:choiceMode="singleChoice" />

</LinearLayout>

</com.arisguimera.calisthenicsroutine.ScrimInsetsFrameLayout>

对于处于活动状态的片段,它应该绑定到活动。因为它需要上下文来继承它的一些用法

这真的取决于你作为一个片段理解了什么

但让我直截了当地说:是的,您的第一个布局肯定是一个片段。但是怎么做

您的第一个活动的XML可能有一个占位符,您的片段可以在其中膨胀。 片段有一个名为“replace”的方法,该方法将给定片段膨胀为xml占位符。你只需要为它写一个R.id

例如:

// Create new fragment and transaction
Fragment newFragment = new ExampleFragment();
FragmentTransaction transaction = getFragmentManager().beginTransaction();

// Replace whatever is in the fragment_container view with this fragment,
// and add the transaction to the back stack
transaction.replace(R.id.fragment_container, newFragment);
transaction.addToBackStack(null);

// Commit the transaction
transaction.commit();

要查看片段,您需要一个FragmentManager,这意味着您的活动需要扩展ActivityFragment。(我不确定AppCombatActivity是否能做到这一点)从代码的外观来看,您似乎已经知道了这一点


最终,不,您不能这样做,因为片段是由名为onCreateView的片段类方法(而不是Oncreate)放在屏幕上的。活动并不意味着承载碎片,也不意味着直接膨胀碎片

能否添加主要的_activity.xml代码?要查看片段,您需要一个FragmentManager,这意味着您的活动需要扩展ActivityFragment。@Daniel Netzer补充道@穆罕默德沙拉我可以看到我所有的片段没有扩展,因为我扩展我的工具栏不工作。我只需要打开第一个“视图”与碎片我不明白!我以后会有这段代码,要打开每个片段,我也必须在Oncreate方法上创建?如果我在main_activity.xml上添加上下文,可能会更容易?但所有的信息都会在Tiago Dá中断断续续vila@ArisGuimer您需要在主活动的oncreate()方法中替换片段。
// Create new fragment and transaction
Fragment newFragment = new ExampleFragment();
FragmentTransaction transaction = getFragmentManager().beginTransaction();

// Replace whatever is in the fragment_container view with this fragment,
// and add the transaction to the back stack
transaction.replace(R.id.fragment_container, newFragment);
transaction.addToBackStack(null);

// Commit the transaction
transaction.commit();