我有一个非常简单的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>
答案 0 :(得分:102)
这不是错误消息,而是警告。系统试图告诉您的内容:设备上的应用程序与Eclipse中的应用程序相同。并且因为应用程序已经在设备上运行,系统会告诉您它不会杀死并重新启动它,而是将已经运行的应用程序的活动带到前台。这很正常。 ; - )
如果您编辑代码并运行它(因为应用程序被杀死,重新安装并启动),或者如果您在手机上终止了您的进程,则警告将不会继续。通过DDMS。
答案 1 :(得分:21)
我以前见过这个 - 你想重新运行你的应用程序,即使你可能没有进行任何代码更改。在模拟器上,单击后退按钮(在菜单按钮的右侧),然后像往常一样从Eclipse运行您的应用程序。
答案 2 :(得分:8)
如果您在没有重新编译的情况下从eclipse运行应用程序(如果您没有更改代码则不会重新编译)它会发生卸载安装过程,而不是将应用程序推送到前端,就会发生这种情况您从Home Launcher启动应用程序。这不是错误,而是“按预期工作”。
<强>此致强>
答案 3 :(得分:7)
Project > Clean
然后再次启动您的模拟器。
答案 4 :(得分:4)
我发现eclipse不知何故进入了一个没有建立新apk的状态,即使代码更改也是如此。正在删除apk:
rm ./bin/"YOUR APP NAME“.apk
从eclipse重新运行你的应用程序解决了这个问题。
答案 5 :(得分:1)
如果您收到此警告,则表示您未更改任何代码行,并且此项目实例正在模拟器或您的设备上运行。所以如果你想再次运行它,你可以:
1-对代码进行一些更改,然后重新编译。
2-或者您可以轻松关闭应用程序,然后使用eclipse或android studio或...重新启动它。
如果问题仍然存在,请尝试卸载该应用并再次运行。
答案 6 :(得分:0)
在模拟器上,
答案 7 :(得分:0)
这是警告它说app已经在运行.. 我通过重新编译我的代码解决了它,你可以关闭你的模拟器并重新运行你的应用程序.. 祝好运 快乐的编码