跪求各位大神:android可以在AndroidManifest.xml中配置第一个启动的Activity。
现在我想在MainApplication.java中修改第一个启动的Activity(做引导页,需要判断程序是不是第一次启动)...
现在我想在MainApplication.java中修改第一个启动的Activity(做引导页,需要判断程序是不是第一次启动)
展开
2个回答
展开全部
<application
android:name=".TextApplication"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen" >
<activity
android:name=".HomeActivity"
android:launchMode="singleTask"
android:label="@string/app_name"
android:screenOrientation="landscape" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
这个.HomeActivity就是你默认的第一个启动Activity,你只要吧你想第一个启动的路径给他就行了
android:name=".TextApplication"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen" >
<activity
android:name=".HomeActivity"
android:launchMode="singleTask"
android:label="@string/app_name"
android:screenOrientation="landscape" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
这个.HomeActivity就是你默认的第一个启动Activity,你只要吧你想第一个启动的路径给他就行了
更多追问追答
追问
哥们儿 还有补充呢,我是想在一个java文件里修改这个第一个启动的Activity,为了做用户引导页
追答
public boolean frist_flag = true;
public static Configuration instance;
private Configuration() {
}
/**
* 单态
*/
public static Configuration getInstance() {
if (instance == null) {
instance = new Configuration();
}
return instance;
}
public void saveMe(Context context) {
SharedPreferences preferences = context.getSharedPreferences(
SETTING_INFOS, Context.MODE_PRIVATE);
Editor preferencesEditor = preferences.edit();
preferencesEditor.putBoolean("frist_flag", frist_flag);
preferencesEditor.commit();
}
public void readMe(Context context) {
SharedPreferences preferences = context.getSharedPreferences(
SETTING_INFOS, Context.MODE_PRIVATE);
frist_flag= preferences.getBoolean("frist_flag", frist_flag);
}
}
写个配置文件,第一次登陆默认为true,引导后改成false就可以了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询