I started playing around with the Android Editors, so I wrote a simple
Todo List application (taken from a book), and I opened the
AndroidManifest.xml file using the Manifest Editor. My problem is that
the Application tab shows an empty page. All other tabs work
correctly. I have the ADT and the Android Editors plugins installed on
both Eclipse 3.4.1, and Eclipse JEE 3.3.2. I tried reinstalling the
plugins but I get the same results. In the past I have not used
Android Editors at all, but I can see their utility know. The
AndroidManifest.xml file is shown below:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android";
      package="todolist"
      android:versionCode="1"
      android:versionName="1.0.0">
    <application android:icon="@drawable/icon" android:label="@string/
app_name">
        <activity android:name=".ToDoList"
                  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>

Any ideas why the empty page for the Application tab?

Thanks,
Mihai Fonoage
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to