我创建了一个在多个应用程序中共享的库项目。我实现了一个简单的会话过期功能,它将在一段时间后将用户踢回登录屏幕。
登录屏幕活动是我的主要活动,因此在清单中它看起来像这样:
<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);
}
我知道这是一个糟糕透顶的解决方案,但它确实有效。就像我说的,无论如何,我必须为每个新应用程序做一定数量的配置,所以再添加一个字符串并不是什么大不了的事,只是不是很优雅。我很感激任何可以在不使用我的技巧的情况下实现相同目标的建议。