Dear readers,
I have just finished my first android app in Eclipse. It is an app, which contains more activities, more pages. Everything seems to work when I click on the button I go to an other page. And back.
Now the problem is, when I export the android app as an .APK file. Drag it to my tablet and install it with Astro File Manager, all the activity's come on the application screen as different apps.
Every activity has its own icon (like 80 different activities) .
But when I click on any activity icon, the app works perfectly.
I only want 1 application icon that starts with the main activity.
I have searched a lot but didn't found any right solutions.
I thought there was something wrong in my AndroidManifest.xml file so I putted a little bit of the code below.
Any Ideas?
Kind regards,
Stijn.
Sorry for my English it's not my mother language.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="schemas.android.com/apk/res/android"
package="com.evi.TerrazzaIlfb"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="14" />
<application
android:allowBackup="true"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.evi.TerrazzaIlfb.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>
<activity
android:name="com.evi.TerrazzaIlfb.WijnenFles"
android:label="@string/title_activity_wijnen_fles" >
</activity>
<activity
android:name="com.evi.TerrazzaIlfb.WijnenGlas"
android:label="@string/title_activity_wijnen_glas" >
</activity>
<activity
android:name="com.evi.TerrazzaIlfb.Wijnfles"
android:label="@string/title_activity_wijnfles" >
</activity>
</activity>
</application>
</manifest>
I have just finished my first android app in Eclipse. It is an app, which contains more activities, more pages. Everything seems to work when I click on the button I go to an other page. And back.
Now the problem is, when I export the android app as an .APK file. Drag it to my tablet and install it with Astro File Manager, all the activity's come on the application screen as different apps.
Every activity has its own icon (like 80 different activities) .
But when I click on any activity icon, the app works perfectly.
I only want 1 application icon that starts with the main activity.
I have searched a lot but didn't found any right solutions.
I thought there was something wrong in my AndroidManifest.xml file so I putted a little bit of the code below.
Any Ideas?
Kind regards,
Stijn.
Sorry for my English it's not my mother language.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="schemas.android.com/apk/res/android"
package="com.evi.TerrazzaIlfb"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="14" />
<application
android:allowBackup="true"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.evi.TerrazzaIlfb.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>
<activity
android:name="com.evi.TerrazzaIlfb.WijnenFles"
android:label="@string/title_activity_wijnen_fles" >
</activity>
<activity
android:name="com.evi.TerrazzaIlfb.WijnenGlas"
android:label="@string/title_activity_wijnen_glas" >
</activity>
<activity
android:name="com.evi.TerrazzaIlfb.Wijnfles"
android:label="@string/title_activity_wijnfles" >
</activity>
</activity>
</application>
</manifest>
