Hm thats weird....You don't happen to have any other controls in your app with the same ID (@+id/header) do you?
From: [email protected] [mailto:[email protected]] On Behalf Of Pedro Teixeira Sent: Thursday, July 29, 2010 1:19 PM To: [email protected] Subject: Re: [android-developers] Re: XML issue Thank you for your replies. @Toomy: I added the "+" in all the missing places and still didn't solved. @Kostya: I actually don't have any errors to erase, eclipse allows me to run it. I debugged it and this is the error I get: android.view.InflateException: Binary XML file line #19: Error inflating class java.lang.reflect.Constructor My 19 line is simply: android:id="@+id/header" Doesn't make any sense to me... On Jul 29, 2010, at 5:39 PM, Tommy wrote: <RadioButton android:text="Facebook" android:id="@+id/facebook" android:layout_height="wrap_content" android:layout_toRightOf="@+id/picpreview" android:layout_width="wrap_content" android:layout_alignLeft="@id/email" android:layout_below="@+id/email"> </RadioButton> Shouldn't you have @+id/email for alignLeft? I noticed that in some other places as well -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of DanH Sent: Thursday, July 29, 2010 12:34 PM To: Android Developers Subject: [android-developers] Re: XML issue Cut out chunks until it passes, then add stuff back a little at a time until you get the problem again. On Jul 29, 10:15 am, Pedro Teixeira <[email protected]> wrote: Hello there, I've been going on and on with my XML file and I can't seem to find any problem... The file doesn't show any problem in the code but there's the red box on the right which reads: Multiple annotations found at this line: - The processing instruction target matching "[xX][mM][lL]" is not allowed. - No grammar constraints (DTD or XML schema) detected for the document. Here is the XML 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="fill_parent" android:background="@color/black" android:padding="6dp" > <ImageView android:id="@+id/header" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/send" android:scaleType="fitXY" android:layout_alignParentTop="true" android:layout_centerInParent="true"/> <ImageView android:id="@+id/picpreview" android:layout_width="150dp" android:layout_height="150dp" android:scaleType="fitXY" android:src="@drawable/polaroid" android:layout_below="@id/header" android:layout_marginLeft="15dp" android:layout_marginTop="15dp"/> <RadioButton android:text="Email" android:id="@+id/email" android:layout_height="wrap_content" android:layout_toRightOf="@+id/picpreview" android:layout_width="wrap_content" android:layout_below="@id/header" android:layout_marginLeft="2dp" android:layout_alignTop="@id/picpreview"> </RadioButton> <RadioButton android:text="Facebook" android:id="@+id/facebook" android:layout_height="wrap_content" android:layout_toRightOf="@+id/picpreview" android:layout_width="wrap_content" android:layout_alignLeft="@id/email" android:layout_below="@+id/email"> </RadioButton> <RadioButton android:text="Other" android:id="@+id/other" android:layout_height="wrap_content" android:layout_toRightOf="@+id/picpreview" android:layout_width="wrap_content" android:layout_alignLeft="@id/facebook" android:layout_below="@+id/facebook"> </RadioButton> <!-- botao facebook --> <com.codecarpet.fbconnect.FBLoginButton android:id="@+id/login" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margin="30dp" android:layout_below="@id/picpreview" /> <TextView android:id="@+id/label" android:textColor="@color/black" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margin="30dp" android:layout_below="@id/login" /> <Button android:id="@+id/permissionButton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/get_permission" android:visibility="invisible" android:paddingRight="30dp" android:paddingLeft="30dp" android:layout_margin="30dp" android:layout_below="@id/label" /> <Button android:id="@+id/feedButton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/publish_to_feed" android:visibility="invisible" android:paddingRight="30dp" android:paddingLeft="30dp" android:layout_margin="30dp" android:layout_below="@id/permissionButton" /> <!-- buttons --> <Button android:id="@+id/savebutton" android:layout_width="130dp" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_alignParentLeft="true" android:text="Send" android:layout_marginBottom="35dp" android:layout_marginLeft="20dp"/> <Button android:id="@+id/cancelbutton" android:layout_width="130dp" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_alignParentRight="true" android:text="Cancel" android:layout_marginBottom="35dp" android:layout_marginRight="20dp"/> <ImageView android:id="@+id/footer" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/bottompic" android:scaleType="fitXY" android:layout_alignParentBottom="true" android:layout_centerInParent="true"/> </RelativeLayout> And the message is in the last line after "</RelativeLayout>" Any ideias about this? I googled it, tried to take all white spaces etc.. and nothing.. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en Pedro Teixeira www.pedroteixeira.org -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

