1

フラグメント内にカスタム listView を作成する方法を理解するのに問題があります。私が見つけたほとんどのチュートリアルには、これを行うためのさまざまな方法があり、混乱するか、フラグメントで使用できません。...simple_list_item_1 を使用して単純な listView を作成できるため、独自の xml をカスタマイズして、リスト内で 3 つの textView を使用しようとすると、アプリがクラッシュします。この時点でやりたいことは、ハードコードされた 3 つの文字列配列 (textView) で構成される単純なリストビューを作成することだけです。誰かが私を正しい方向に向けることができますか?

Fragment Code:

 public class BuyFragTab extends SherlockListFragment {

ArrayList<Bookinfo> bookRec = new ArrayList<Bookinfo>();

//defines the Arraylist Bookinfo record layout
//public class Bookinfo {
    public String titles[] = new String[]{"Bk 1", "Bk 2", "Bk 3", "Bk 4", "Bk 5", "Bk 6", "Bk 7", "Bk 8"};
    public String authors[] = new String[]{"Tom", "Dick", "Harry", "Jack", "James", "Skip", "Jim", "June"};
    public String status[] = new String[]{"Open", "Open", "Open", "Open", "Closed", "Closed", "Closed", "Closed"};

//}

//returns the view of the fragment
public View onCreateView(LayoutInflater inflater, ViewGroup container, 
        Bundle savedInstanceState) {


    ArrayAdapter<String> adapter = new ArrayAdapter<String>(getActivity().getBaseContext(),
            android.R.layout.simple_list_item_1, titles);
            //R.layout.buy_tbfrag, titles);

    /** Setting the array adapter to the listview */
    setListAdapter(adapter);


    return super.onCreateView(inflater, container, savedInstanceState);  
}
}


Fragment xml layout:

<?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"
android:orientation="vertical" >

<!-- Put a background to the fragment android:background="#FF0000" -->
<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >

    <EditText
        android:id="@+id/titleSearch"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:hint="Input Title Name" />

    <Button
        android:id="@+id/button1"
        android:layout_width="0dip"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Search" />

    <ListView
        android:id="@id/android:list"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >
    </ListView>  

    <TextView
        android:id="@id/android:empty"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:text="No Books Registered" />
</LinearLayout>

Fragment List xml:

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

<TextView
        android:id="@+id/titleName"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
         />

<TextView
        android:id="@+id/authorName"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
         />

<TextView
        android:id="@+id/bookStatus"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
         />

4

1 に答える 1

2

ここでは、この例の非常に簡単なチュートリアルと、ここ でこれに関する詳細を見つけることができます

于 2012-12-05T07:35:03.243 に答える