gpt4 book ai didi

android - Activity 没有启动,它的当前任务已经被拉到最前面

转载 作者:IT老高 更新时间:2023-10-28 13:15:54 27 4
gpt4 key购买 nike

我有一个非常简单的 android 项目。我收到以下错误当我尝试运行它时的消息。模拟器正在运行,但应用程序没有出现。我找不到任何有用的信息在线的。谁能帮帮我?

Warning: Activity not started, its current task has been brought to the front

public class Profile extends Activity {
/*Button button1;
CheckBox check1, check2;
EditText text1;*/

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}

<EditText android:text="@+id/EditText01" android:id="@+id/EditText01"
android:layout_width="wrap_content"
android:layout_height="wrap_content" android:enabled="false"></
EditText><CheckBox android:text="@+id/CheckBox03" android:id="@+id/
CheckBox03" android:layout_width="fill_parent"
android:layout_height="wrap_content">
</CheckBox>
<CheckBox android:text="@+id/CheckBox02" android:id="@+id/CheckBox02"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
</CheckBox>
<CheckBox android:text="@+id/CheckBox01" android:id="@+id/CheckBox01"
android:layout_width="fill_parent"
android:layout_height="wrap_content" android:checked="true">
</CheckBox>

</LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.seiservices.blending"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/
app_name">
<activity android:name=".Profile"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category
android:name="android.intent.category.LAUNCHER" />
<category
android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>

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

</manifest>

最佳答案

这不是错误消息,而是警告。这意味着(一个任务)应用程序正在运行,并且即使发出“startActivity”请求来运行该任务或应用程序中的另一个 Activity 。系统只是将该应用程序的当前任务带到前台。 (如果您使用模拟器在 Eclipse 或 AndroidStudio 中运行,则会发生这种情况。)

系统试图告诉您什么:设备上的应用程序与您在 Eclipse 中的应用程序相同。而且因为应用程序已经在设备上运行,系统会告诉你它不会杀死并重新启动它,而是将你已经运行的应用程序的 Activity 带到前台。这很正常。 ;-)

如果您编辑代码并运行它(因为应用程序随后被终止、重新安装并启动)或您在手机上终止进程,警告将不会继续,例如通过 DDMS。

关于android - Activity 没有启动,它的当前任务已经被拉到最前面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3781182/

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