As such I took your advice and started with the Hello World tutorial, and surprise! Errors errors and an error.
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal" > <EditText android:id="@+id/edit_message" android:layout_weight="1" android:layout_width="0dp" android:layout_height="wrap_content" android:hint="@string/edit_message"/> //error: Error: No resource found that matches the given name (at 'hint' with value '@string/ edit_message'). <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/button_Send"/> //error: Error: No resource found that matches the given name (at 'text' with value '@string/ button_Send'). </LinearLayout> -- 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

