Udi Oshi
Udi Oshi

Reputation: 6867

ListView inside Fragment android

Im having trouble with implementing list view inside a fragment.

the xml code is:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >


        <ImageView
            android:id="@+id/imageView1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:src="@drawable/jo_logo" />

    </LinearLayout>

    <ListView
        android:id="@+id/listView1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1" >
    </ListView>

</LinearLayout>

simple ImageView and afterwards the list view. I've already tried to implement:

ArrayAdapter<String> adapter = new ArrayAdapter<String>(getActivity().getBaseContext(), 
            android.R.layout.simple_list_item_1, viewList);
    setListAdapter(adapter);

where viewList is View[], on the onCreateView function. seems that it's not working that way inside fragment. thing is i need that the first view will be ImageView and second one is ListView, and all inside the Fragment.

please help, thank in advance, udi

Upvotes: 1

Views: 4797

Answers (1)

Adam Monos
Adam Monos

Reputation: 4297

In your layout xml change android:id="@+id/listView1" to android:id="@android:id/list" otherwise the ListActivity / ListFragment won't find your ListView.

Upvotes: 2

Related Questions