7

我创建了一个在多个应用程序中共享的库项目。我实现了一个简单的会话过期功能,它将在一段时间后将用户踢回登录屏幕。

登录屏幕活动是我的主要活动,因此在清单中它看起来像这样:

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/Theme.Sherlock.Light.DarkActionBar"
    android:name="com.blah.application.MyApplication" >
    <activity
        android:name="com.blah.activity.LoginScreenActivity"
        android:label="@string/title_activity_main"
        android:screenOrientation="portrait"
        android:configChanges="orientation|keyboardHidden"
        android:windowSoftInputMode="adjustPan">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

当会话过期时,我想将用户踢回登录屏幕,但我不想硬编码活动的名称,因为它可能会因使用库的特定应用程序而异。这是我之前在做的事情:

Intent intent = new Intent(context, LoginScreenActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
context.startActivity(intent);

如果应用程序的主要活动与 LoginScreenActivity 不同,这将不起作用。我不想硬编码“LoginScreenActivity.class”,我想以编程方式确定主类的名称,然后将用户引导到该活动......有人可以帮我吗?

提前致谢!

编辑

我找到了一种方法来完成相同的最终结果,但这绝对不是很好。由于使用相同的库(字符串、布尔值等)部署新应用程序需要一定数量的配置,因此我在 strings.xml 文件中为定义“主要”活动名称的特定应用程序添加了一个字符串对于该应用程序:

<string name="mainClassName">com.blah.specificapp.activity.SpecificAppLoginScreenActivity</string>

然后我可以按名称获取该类的句柄并将用户重定向到那里:

Class<?> clazz = null;

try 
{
    clazz = Class.forName(context.getString(R.string.mainClassName));
} 
catch (ClassNotFoundException e) 
{
    // TODO Auto-generated catch block
    e.printStackTrace();
}

if(clazz != null)
{
    Intent intent = new Intent(context, clazz);
    intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    context.startActivity(intent);
}

我知道这是一个糟糕透顶的解决方案,但它确实有效。就像我说的,无论如何,我必须为每个新应用程序做一定数量的配置,所以再添加一个字符串并不是什么大不了的事,只是不是很优雅。我很感激任何可以在不使用我的技巧的情况下实现相同目标的建议。

4

2 回答 2

16

您可以使用以下方法从 PackageManager 请求启动 Intent

Intent launchIntent = PackageManager.getLaunchIntentForPackage(context.getPackageName());

这将返回一个 Intent,您可以使用它来启动“主要”活动(我假设这是您的“登录”活动)。只需添加Intent.FLAG_ACTIVITY_CLEAR_TOP此内容,您就可以开始了。

于 2013-01-03T10:30:05.120 回答
0

在您的意图过滤器上使用 mime 类型怎么样。

    <activity android:name=".LoginActivity"
              android:exported="true" android:launchMode="singleTop" android:label="@string/MT">
        <intent-filter>
            <category android:name="android.intent.category.DEFAULT"/>
            <action android:name="com.foo.ACTION_LOGIN" />
            <data android:mimeType="application/x.foo.com.mobile.login" /> 
     </intent-filter>
    </activity>

并启动活动如下:

Intent intent = new Intent();
intent.setAction("com.foo.ACTION_LOGIN");
intent.setType("application/x.foo.com.mobile.login");
startActivity(myIntent);

因此,该意图将由使用此操作/mime 类型对注册的任何活动提供服务。我不确定,但我认为如果该活动托管在同一个应用程序中,则可能会首先选择它。

于 2013-01-02T21:30:46.977 回答