chapter 1 Beginning Android 4 Application Development
Hello all i seem to be having some problems with mine helloworld application,
i am using java latest jdk and Android sdk. maybe there is something i missed
but am getting this errors:
1. Description Resource Path Location Type
Error generating final archive: java.io.FileNotFoundException: C:\Android\development\adt-bundle-windows-x86_64\Projects\HelloWord\bin\resources.ap_ does not exist HelloWord Unknown Android Packaging Problem
2. Description Resource Path Location Type
pager cannot be resolved or is not a field MainActivity.java /HelloWord/src/com/example/helloword line 49 Java Problem
:::
<?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:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/This is my first Android Application!" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/And this is a click_button!" />
</LinearLayout>
Thanks in advance
