替换Manifest.xml中的Activity

时间:2016-02-24 04:08:11

标签: android android-manifest manifest

当我运行我的应用程序时,它将根据ManiFest.xml文件首先运行MainActivity。

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

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

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
</application>

</manifest>

它的工作正常但现在我想添加 SplashScreenActivity LoginActivity RegisterActivity < em>之前 MainActivity。

所以我可以Change the Order of Activity。首先使用SplashScreenActivity启动应用程序,然后 LoginActivity RegisterActivity ,然后启动 MainActivity

如果我使用此代码它工作正常但显示标题。如何删除它。

CircularProgressView progressView2;
private static int SPLASH_TIME_OUT = 5000;

@Override
protected void onCreate(Bundle savedInstanceState) {

    // Remove the Title Bar
    requestWindowFeature(Window.FEATURE_NO_TITLE);

    super.onCreate(savedInstanceState);
    // Get the view from splash_screen.xml
    setContentView(R.layout.activity_splash_screen);


    CircularProgressView progressView2 = (CircularProgressView)findViewById(R.id.progress_view10);
    progressView2.setColor(Color.parseColor("#FFFFFF"));

    new Handler().postDelayed(new Runnable() {


        @Override
        public void run() {

            finish();
            Intent myIntent = new Intent(SplashScreenActivity.this,
                    LoginActivity.class);
            startActivity(myIntent);
        }
    }, SPLASH_TIME_OUT);

}

6 个答案:

答案 0 :(得分:0)

  

那么如何改变活动顺序

您无法更改manifest 的活动顺序,您可以在需要在java文件中编写自己的逻辑和代码后定义启动器活动。

在JAVA文件中执行任何操作之前,您需要在清单文件中定义您的活动

Intent将用于启动新的Activity。请查看以下链接以获取更多信息。

Intent
Starting Another Activity

答案 1 :(得分:0)

您必须更改清单:

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

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

                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>
            <activity
                android:name=".LoginActivity"
                android:label="XYZ"
                android:theme="@style/AppTheme"
              />
             <activity
                android:name=".RegisterActivity"
                android:label="XYZ"
                android:theme="@style/AppTheme"
              /> 
             <activity
                android:name=".MainActivity"
                android:label="XYZ"
                android:theme="@style/AppTheme"
              />
    </application>
    </manifest>

在你的SplashScreenActivity中。将代码转移到LoginActivity:

Intent mIntent = new Intent(SplashScreenActivity.this,LoginActivity.class);
startActivity(mIntent);

与其他活动

一样

答案 2 :(得分:0)

<activity
            android:name=".SplashScreenActivity"
            android:label="XYZ"
            android:theme="@style/AppTheme">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

<activity
        android:name=".LoginActivity "
        android:label="@string/title_activity_main"
        android:theme="@style/AppTheme" />

<activity
        android:name=".RegisterActivity"
        android:label="@string/title_activity_main"
        android:theme="@style/AppTheme" />

并在启动画面中打开您要打开的任何活动,例如通过按钮点击或计时器以及其他活动的内容。

答案 3 :(得分:0)

更改

android:name=".MainActivity" 
文件中的

android:name=".SplashScreenActivity"

在SplashScreenActivity中,在Splash屏幕完全加载后添加以下代码行

Intent loginIntent = new Intent(SplashScreenActivity.this, LoginActivity.class);
startActivity(loginIntent);

在LoginActivity中,如果用户登录成功移至Mainactivity

Intent intent = new Intent(LoginActivity.this, MainActivity.class);
startActivity(intent);

答案 4 :(得分:0)

日志说解决方案也是

请勿在{{1​​}}之前致电requestFeature()

答案 5 :(得分:0)

可能您还没有将所有活动添加到清单文件中。如果您没有这样做,仍然可以通过意图调用您的应用程序来激活活动。 首先是你想要的活动,首先是传递意图过滤器,如下所示:

   <activity
                android:name=".SplashScreenActivity"
                android:label="XYZ"
                android:theme="@style/AppTheme">
                <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="XYZ"
                android:theme="@style/AppTheme"
              />

第三,将当前活动的意图传递给您想要切换的活动

   Intent int = new Intent(SplashScreenActivity.this,MainActivity.class);
    startActivity(int);

如果在logcat之后仍然出现任何问题。 祝你好运!!