gpt4 book ai didi

java - 单击菜单后调用另一个 Activity

转载 作者:行者123 更新时间:2023-12-02 03:31:21 26 4
gpt4 key购买 nike

我有一个菜单,想要调用下一个 Activity ,以便用户可以计算然后想要返回下一页或主页,但不知道该怎么做...Ja尝试了很多方法,但不是正确的,或者当它在另一个页面上运行时,所有前面的菜单都会消失,只留下该 Activity 。

我是编程新手,尤其是 Android 编程新手。

主要 Activity :

@SuppressWarnings("StatementWithEmptyBody")
@Override
public boolean onNavigationItemSelected(MenuItem item) {
// Handle navigation view item clicks here.
int id = item.getItemId();

if (id == R.id.nav_camera) {
//I want to call the page " calculations" here.

} else if (id == R.id.nav_gallery) {

}

DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
drawer.closeDrawer(GravityCompat.START);
return true;
}
}

android_manifest.xml:

    <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.stark.hello_world">

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".Splashscreen"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<activity
android:name=".Calculos"
android:label="@string/action_help"
android:parentActivityName=".MainActivity" />

</application>

</manifest>

calculos.xml

<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"
android:paddingLeft="4dp"
android:paddingRight="4dp"
android:paddingTop="4dp"
android:paddingBottom="4dp"
tools:context=".MainActivity"
android:background="#ff0fffab">


<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="SEM"
android:id="@+id/textView"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"
android:textSize="@dimen/abc_text_size_display_3_material"
android:textColor="#ffffffff" />

<EditText
android:id="@+id/email_address"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="number" />
</RelativeLayout>

app

最佳答案

我不确定您的问题,但我猜您想在单击菜单项后打开一个新的 Activity ?

为此,您需要在 if 中启动一个 Intent - 我已将您需要的行添加到代码中

public boolean onNavigationItemSelected(MenuItem item) {
// Handle navigation view item clicks here.
int id = item.getItemId();

if (id == R.id.nav_camera) {
//I want to call the page " calculations" here.
//with this code you can call a new activity
Intent intent = new Intent(this, YourActivity.class);
startActivity(intent);
} else if (id == R.id.nav_gallery) {
//create another Intent here and navigate to the correct activity
}

但我建议使用 Fragments 而不是 Activity 并使用 getFragmentManager().beginTransaction().replace(YourFragment.newInstance());

关于java - 单击菜单后调用另一个 Activity ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38038948/

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