I'm working on an very simple example i found on the internet , but my main.xml layout file isn't working.
When i add the body in main.xml , it can't display a thing.
Any help is appreciated :)
Here's the main.xml file.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="schemas.android.com/apk/res/android"; android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent">
<EditText android:id="@+id/myEditText" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/new_to_do_item" android:hint="@string/hint_msg" />
<ListView android:id="@+id/myListView" android:layout_width="fill_parent" android:layout_height="wrap_content" />
</LinearLayout>