0

我整天工作以显示我的项目在我的数据库中,但我不能。我有一个包含一些项目的单表数据库,我想在 ListActivity 中显示它们。

这是我的代码:

布局(activity_cars):

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<Button 
    android:id="@+id/btnNewCar"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/btnNewCar" />

<ListView 
    android:id="@android:id/list"
    android:layout_width="wrap_content"
    android:layout_height="0dip"  >
</ListView>

列表活动:

public class CarsActivity extends ListActivity {

private CarListAdapter carListAdapter;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_cars);

    CarDbLoader carDbLoader = new CarDbLoader(getApplicationContext());
    carDbLoader.open();

    Cursor c = carDbLoader.fetchAll();
    c.moveToFirst();

    carListAdapter = new CarListAdapter(this, c);
    setListAdapter(carListAdapter);
}

}

列表适配器:

public class CarListAdapter extends CursorAdapter {

public CarListAdapter(Context context, Cursor c) {
    super(context, c);
}

@Override
public View newView(Context context, Cursor cursor, ViewGroup parent) {
    final LayoutInflater inflater = LayoutInflater.from(context);
    View row = inflater.inflate(R.layout.car_list_row, null);
    bindView(row, context, cursor);
    return row;
}

@Override
public void bindView(View view, Context context, Cursor cursor) {
    Car car = CarDbLoader.getCarByCursor(cursor);
    TextView tv = (TextView)view.findViewById(R.id.rowText);
    tv.setText(car.toString());
}

}

我确定我的表中有项目......但我真的不知道这个活动没有显示项目的原因是什么。请帮助找出并制作正确的来源。

谢谢 nad 结婚圣诞节!!!!

4

2 回答 2

1

为什么你将listview的高度设置为0dip?

<ListView 
   android:id="@android:id/list"
   android:layout_width="wrap_content"
   android:layout_height="0dip"  > // Why 0 dip? Try "fill_parent" or "match_parent"
</ListView> 
于 2012-12-24T14:53:42.370 回答
0

你为什么要在这里调用 bindView() 呢?我认为这没有必要,可能会导致一些错误。

@Override
public View newView(Context context, Cursor cursor, ViewGroup parent) {
    final LayoutInflater inflater = LayoutInflater.from(context);
    View row = inflater.inflate(R.layout.car_list_row, null);
    bindView(row, context, cursor);//Why do you call bindView() here?
    return row;
}
于 2013-04-10T03:07:55.307 回答