Actually I studied myself quietly android. Did all sorts of activity layouts for them. The test in the emulator, which was in the android-sdk package (extras / intel).
Everything would be fine, but at one point it turned out somehow that when the application was started it did not start automatically in the emulator, and was not present in the menu.
Already tried and rearrange everything that is possible, but nothing helps. Maybe someone faced this problem. How did you decide?
I work with IDEA 14. It seems that there are no mistakes.
"C:\Program Files (x86)\android-sdk\tools\emulator.exe" -avd Nexus17 -netspeed full -netdelay none emulator: device fd:784 HAXM is working and emulator runs in fast virt mode creating window 40 81 335 557 emulator: emulator window was out of view and was recentered emulator: UpdateChecker: skipped version check Waiting for device. "C:\Program Files (x86)\android-sdk\tools\emulator.exe" -avd Nexus17 -netspeed full -netdelay none Device connected: emulator-5554 Now I tried to just run the default helloworld
Manifest file Changed nothing.
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="ru.smirnov.Application" android:versionCode="1" android:versionName="1.0"> <uses-sdk android:minSdkVersion="17"/> <application android:label="@string/app_name" android:icon="@drawable/ic_launcher"> <activity android:name="MainActivity" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity> </application> </manifest>