Looks like your Id tags are wrong. For example, <ListView
id="@android:id/list... should be <ListView android:[EMAIL PROTECTED]/list...


On Oct 13, 5:06 am, vijay <[EMAIL PROTECTED]> wrote:
> ListActivity has a default layout and when i create a new custom
> layout like below, it gives an error. "The application stopped
> unexpectedly".
>
> <?xml version="1.0" encoding="UTF-8"?>
>  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/
> android"
>      android:orientation="vertical"
>      android:layout_width="fill_parent"
>      android:layout_height="fill_parent">
>
>    <ListView id="@android:id/list"
>         android:layout_width="fill_parent"
>         android:layout_height="fill_parent"
>         android:background="#00FF00"
>         android:layout_weight="1"
>         android:drawSelectorOnTop="false"/>
>
>    <TextView id="@android:id/empty"
>         android:layout_width="fill_parent"
>         android:layout_height="fill_parent"
>         android:background="#FF0000"
>         android:text="No data"/>
>  </LinearLayout>
>
> it goes out of debugger and gives error when it comes to the line
> setContentView(R.layout.custom_layout). When i comment this line it
> displays a List.
>
> How to create a custom ListView?
>
> Any help will be appreciated. Thanks!!!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to