gpt4 book ai didi

android - 第一个布局可以是一个 fragment ?

转载 作者:行者123 更新时间:2023-11-29 17:26:08 25 4
gpt4 key购买 nike

我有带 fragment 的 Navigator Drawer,但第一个布局是 main_activity,在启动应用程序后可能调用 fragment 。

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();
}
}

我的问题是我可以在启动应用程序后立即调用 fragment 吗?我想过类似的事情,但行不通。

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

例如,为我的 fragment_fragment1 更改 R.layout.activity_main

主要 Activity :

<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>

最佳答案

好吧,要查看 fragment ,您需要一个 FragmentManager,这意味着您的 Activity 需要扩展 ActivityFragment。 (我不确定 AppCombatActivity 是否这样做)从代码的外观来看,您似乎已经知道这一点。

最终,不,你不能这样做,因为 fragment 是通过名为 onCreateView 而不是 Oncreate 的 fragment 类方法放在屏幕上的。 Activity 不是为了托管 fragment ,也不是为了直接膨胀 fragment 。

关于android - 第一个布局可以是一个 fragment ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34593591/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com