0

私はsqliteからリストビューにデータを取得しようとしているので、このURLの回答の例に従いました SQLiteデータベースからリストビューを作成します

CustomCursorAdapter はそのようになっています

    public class CustomCursorAdapter extends SimpleCursorAdapter  {
    private int layout; 
    private LayoutInflater inflater;
    private Context context;

    public CustomCursorAdapter (Context context, int layout, Cursor c, String[] from, int[] to) {
        super(context, layout, c, from, to);
        this.layout = layout;
        this.context = context;
        inflater = LayoutInflater.from(context);

    }


    @Override
    public View newView(Context context, Cursor cursor, ViewGroup parent) {

        View v = inflater.inflate(R.layout.topics, parent, false);

        return v;
    }

    @Override
    public void bindView(View v, Context context, Cursor c) {
                //1 is the column where you're getting your data from
        String name = c.getString(1);
        /**
         * Next set the name of the entry.
         */
        TextView name_text = (TextView) v.findViewById(R.id.listLabel);
        if (name_text != null) {
            name_text.setText(name);
        }   
    }
}

しかし、onCreate私はこのコードを持っています

ListView listView = (ListView)findViewById(R.layout.topics);
    connectToDB();
    from = new String[] { "topicTitle" };
    to = new int[] { R.id.listLabel };

    CustomCursorAdapter adapter = new CustomCursorAdapter(this,
            R.layout.topics, cursor, from, to);
    listView.setAdapter(adapter);

次のように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:padding="5dp" >

    <ImageView
        android:id="@+id/listLogo"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:layout_marginLeft="5dp"
        android:layout_marginRight="20dp"
        android:layout_marginTop="5dp"
         >
    </ImageView>

    <TextView
        android:id="@+id/listLabel"
        android:layout_width="250dp"
        android:layout_height="wrap_content"
        android:text="@+id/label"
        android:textSize="15sp" >
    </TextView>

</LinearLayout>

問題は.. listViewがNullです!! ..理由がわからない!!

4

2 に答える 2

2

レイアウトのトピックを参照しています。ID付きのxmlで定義されたリストビューが必要です。setCONtentView(R.layout.topics) の後のアクティビティ onCreate() で、リストビューの ID を取得し、アダプタをリストに設定します。

あなたのxmlでtopics.xmlと言います

<?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" 
android:background="#0095FF">
   <ListView android:id="@+id/list"
    android:layout_width="fill_parent"
    android:layout_height="100dp" 
    android:id="@+id/lv">
   </ListView>
    // other ui elements
</LinearLayout>

次に、アクティビティで onCreate()

   setContentview(R.layout.topics);
   ListView listView = (ListView)findViewById(R.id.lv);
   connectToDB();
   from = new String[] { "topicTitle" };
   to = new int[] { R.id.listLabel };


   CustomCursorAdapter adapter = new CustomCursorAdapter(this,
        R.layout.topics, cursor, from, to);
    listView.setAdapter(adapter);

チャットでの議論から

編集:

main.xml を定義する

<?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" 
android:background="#0095FF">

<ListView android:id="@+id/list"
android:layout_width="fill_parent"  
android:layout_height="0dip"
android:focusableInTouchMode="false"
android:listSelector="@android:color/transparent"
android:layout_weight="2"
android:headerDividersEnabled="false"
android:footerDividersEnabled="false"
android:dividerHeight="8dp" 
android:divider="#000000" 
android:cacheColorHint="#000000"
android:drawSelectorOnTop="false">
</ListView>
</LinearLayout>

あなたの活動の中で

 public class MainActivity extends Activity {

 ListView lv;
 CustomCursorAdapter cus;
 @Override
 public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    lv = (ListView) findViewById(R.id.list);
    cus= new CustomCursorAdapter(parameters);
    lv.setAdapter(cus);

 }
 }

customCursor アダプターを定義して、カスタム レイアウトを拡張します。画像ビューには画像を、テキストビューにはテキストを設定します。

于 2013-04-09T07:59:17.903 に答える
0

あなたの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:padding="5dp" 
android:id="@+id/main"
>

<ImageView
    android:id="@+id/listLogo"
    android:layout_width="50dp"
    android:layout_height="50dp"
    android:layout_marginLeft="5dp"
    android:layout_marginRight="20dp"
    android:layout_marginTop="5dp"
     >
</ImageView>

<TextView
    android:id="@+id/listLabel"
    android:layout_width="250dp"
    android:layout_height="wrap_content"
    android:text="@+id/label"
    android:textSize="15sp" >
</TextView>

<ListView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/topics"
        ></ListView>

 </LinearLayout>

活動中 onCreate

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    ListView listView = (ListView)findViewById(R.layout.topics);
    connectToDB();
    from = new String[] { "topicTitle" };
    to = new int[] { R.id.listLabel };

    CustomCursorAdapter adapter = new CustomCursorAdapter(this,
            R.layout.topics, cursor, from, to);
    listView.setAdapter(adapter);
}
于 2013-04-09T08:02:09.513 に答える