Skip to content Skip to sidebar Skip to footer

Error In Androidmanifest.xml While Making "my First App" From Developer.android.com

I am learning Android development through the training given on developer.android.com and I have done till 'Starting Another Activity'. When I tried to run my code, I get the follo

Solution 1:

Your Project is not refresh Properly thats why error is show

In eclipse Project-->Clean Location

then Just clean & build your project.

Solution 2:

Error may be because of you Layout file

Complete each and every tag in XML

like this

<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="wrap_content"android:layout_height="wrap_content"android:orientation="vertical"><TextViewandroid:id="@+id/text1"android:textSize="16sp"android:textStyle="bold"android:layout_width="match_parent"android:layout_height="wrap_content"/><TextViewandroid:id="@+id/text2"android:textSize="16sp"android:layout_width="match_parent"android:layout_height="wrap_content"/></LinearLayout>

Post a Comment for "Error In Androidmanifest.xml While Making "my First App" From Developer.android.com"