gpt4 book ai didi

Android - 将两个应用合并为一个应用项目

转载 作者:行者123 更新时间:2023-11-30 03:31:11 28 4
gpt4 key购买 nike

我正在制作一个简单的教程 android 应用程序,我想将它与我拥有的 android 游戏应用程序结合起来,我希望主应用程序是 android 应用程序教程然后游戏应用程序是子菜单或在我的应用程序中,可以你告诉我怎么组合吧

(一些代码让您对我的代码有所了解)

HomeActivity.Java:(我的教程)

package com.wglxy.example.dash1;

import android.os.Bundle;

public class HomeActivity extends DashboardActivity
{

protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_home);
}
protected void onDestroy ()
{
super.onDestroy ();
}

protected void onPause ()
{
super.onPause ();
}

protected void onRestart ()
{
super.onRestart ();
}


protected void onResume ()
{
super.onResume ();
}

protected void onStart ()
{
super.onStart ();
}

protected void onStop ()
{
super.onStop ();
}

} // end class

ChuchApplication.java(游戏应用):

        /**
*
*/
package com.wglxy.example.dash1;

//import com.tmm.android.chuck.quiz.GamePlay;

import android.app.Application;

/**
* @author rob
*
*/
public class ChuckApplication extends Application{
private GamePlay currentGame;

/**
* @param currentGame the currentGame to set
*/
public void setCurrentGame(GamePlay currentGame) {
this.currentGame = currentGame;
}

/**
* @return the currentGame
*/
public GamePlay getCurrentGame() {
return currentGame;
}
}

这是我的 androidmanifest:

        <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.wglxy.example.dash1"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />

<application
android:icon="@drawable/sajda"
android:label="@string/app_name"
android:theme="@style/Theme.D1" >
<activity
android:name=".HomeActivity"
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=".F1Activity"
android:label="@string/title_feature1"
android:theme="@style/Theme.D1" />
<!--
activity
android:name=".F2Activity"
android:label="@string/title_feature2"
android:theme="@style/Theme.D1" />
-->
<activity
android:name=".F3Activity"
android:label="@string/title_feature3"
android:theme="@style/Theme.D1" />
<activity
android:name=".F4Activity"
android:label="@string/title_feature4"
android:theme="@style/Theme.D1" />
<activity
android:name=".BasicTutorial"
android:label="@string/title_feature5"
android:theme="@style/Theme.D1" />
<activity
android:name=".BasicTutorial2"
android:label="@string/title_feature5"
android:theme="@style/Theme.D1" />
<activity
android:name=".BasicTutorial3"
android:label="@string/title_feature5"
android:theme="@style/Theme.D1" />
<activity
android:name=".BasicTutorial4"
android:label="@string/title_feature5"
android:theme="@style/Theme.D1" />
<activity
android:name=".BasicTutorial5"
android:label="@string/title_feature5"
android:theme="@style/Theme.D1" />
<activity
android:name=".BasicTutorial6"
android:label="@string/title_feature5"
android:theme="@style/Theme.D1" />
<!-- activity
android:name=".SingleListItem"
android:label="Single Item Selected" >
</activity>-->
<service
android:name=".ChuckApplication"
android:theme="@style/Theme.D1" />
<activity
android:name=".SplashActivity"
android:label="@string/app_name"
android:theme="@style/Theme.D1" />
<activity
android:name=".QuestionActivity"
android:theme="@style/Theme.D1" />
<activity
android:name=".RulesActivity"
android:theme="@style/Theme.D1" />
<activity
android:name=".EndgameActivity"
android:theme="@style/Theme.D1" />
<activity
android:name=".SettingsActivity"
android:theme="@style/Theme.D1" />
<activity
android:name=".AnswersActivity"
android:theme="@style/Theme.D1" />
</application>

</manifest>

谁能帮我做什么?如有任何困惑,请评论我,我会尽力帮助您。

最佳答案

有两种方法:

1) 你可以将游戏项目作为一个库,通过 Intent 你可以调用游戏项目的主要 Activity ,但在你的家庭项目 list 文件中定义游戏项目的主要 Activity 。

2) 您可以在主项目中为游戏项目创建一个新包,并将游戏项目的所有类和相关文件复制到该包中..记住您将游戏项目的所有 xml 文件复制到布局文件夹和所有游戏项目中在您的家庭项目 list 文件中声明 Activity 。

关于Android - 将两个应用合并为一个应用项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17460295/

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