gpt4 book ai didi

java - 应用程序启动时调用 onCreateOptionsMenu 方法

转载 作者:太空宇宙 更新时间:2023-11-04 13:09:00 25 4
gpt4 key购买 nike

我是 Android 编程新手。我正在尝试创建一个带有选项菜单的登录表单应用程序。

当应用程序启动时,它仅显示welcome.xml。但我也希望菜单位于顶部。

我应该如何以及何时调用 onCreateOptionsMenu()?

AndroidManifest.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="it.fruci.davide.firstapplication">

<application android:allowBackup="true" android:label="@string/app_name"
android:icon="@mipmap/ic_launcher" android:supportsRtl="true"
android:theme="@style/AppTheme">

<activity android:name=".MainClass"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

MainClass.java

public class MainClass extends Activity {

@Override
public void onCreate(Bundle saveOnInstanceState){
super.onCreate(saveOnInstanceState);
setContentView(R.layout.welcome);
}

@Override
public boolean onCreateOptionsMenu(Menu menu)
{
MenuInflater inflater=getMenuInflater();
inflater.inflate(R.menu.menu, menu);
return true;
}
}

welcome.xml

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TableRow
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Username:"/>
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="text"
android:id="@+id/username" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Password:"/>
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="textPassword"
android:id="@+id/password" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:onClick="login"
android:text="Login"/>
<Button
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:onClick="cancel"
android:text="Cancella"/>
</TableRow>
</TableLayout>

menu.xml

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:id="@+id/MENU_1"
android:title="Nuova nota"/>
<item
android:id="@+id/MENU_2"
android:title="Elenco note"/>
</menu>

styles.xml (@style/AppTheme)

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>

</resources>

这是应用程序启动时显示的内容:

This is what is shown when the application starts:

最佳答案

添加Toolbar在您的welcome.xml中

welcome.xml

<RelativeLayout 
xmlns:android="http://schemas.Android.com/apk/res/Android"
xmlns:app="http://schemas.Android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize">

<Android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimary"></Android.support.v7.widget.Toolbar>

<TableLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout-below="@+id/toolbar">

......
</TableLayout>
</RelativeLayout>

然后将 Toolbar 设置为 Activity 中的 ActionBar

MainClass.java

public class MainClass extends Activity {

@Override
public void onCreate(Bundle saveOnInstanceState){
super.onCreate(saveOnInstanceState);
setContentView(R.layout.welcome);

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

}

How and when I should call onCreateOptionsMenu()?

onCreateOptionsMenu() 将在 onCreate() 之后但 onCreate 完成之前调用。您不需要手动调用它。

关于java - 应用程序启动时调用 onCreateOptionsMenu 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34160276/

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