Results 1 to 1 of 1
- 11-22-2011, 08:47 PM #1
Senior Member
- Join Date
- Oct 2011
- Posts
- 106
- Rep Power
- 0
New to android, probably a stupid question
When set up an XML layout I got an error in eclipse that states: "Couldn't resolve @id/entry"
here is my Layout:
I am pretty new to eclipse also, I wish it would give you more info on why? It still installs the APK on the emulator or my phone. I am just concerned about the consequences of such an error on a release app and why I am getting this error.Java Code:<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content"> <TextView android:id="@+id/label" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="URL:" android:layout_alignBaseline="@+id/entry" android:layout_alignParentLeft="true"/> <EditText android:id="@id/entry" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentTop="true" android:layout_toRightOf="@+id/label" /> <Button android:id="@+id/ok" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@id/entry" android:layout_alignRight="@id/entry" android:text="OK"/> <Button android:id="@+id/cancel" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@id/entry" android:layout_toLeftOf="@+id/ok" android:text="Cancel" /> </RelativeLayout>
Thanks.
Similar Threads
-
Modifying a few bytes in a large file - stupid question.
By couling in forum Advanced JavaReplies: 1Last Post: 11-04-2011, 09:36 AM -
What can be the question to be asked for android developers
By rajan701v in forum AndroidReplies: 0Last Post: 06-03-2011, 10:22 AM -
simple question feel stupid asking...
By IYIaster in forum New To JavaReplies: 3Last Post: 10-02-2009, 05:04 PM -
a really stupid question
By SwinGirl in forum NetBeansReplies: 10Last Post: 06-25-2008, 09:06 PM -
Quick Stupid Question
By bluekswing in forum New To JavaReplies: 7Last Post: 01-08-2008, 06:35 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks