如何在另一个活动中使用SimpleAdapter

时间:2018-09-12 06:53:04

标签: android android-layout android-studio android-activity

我想在DriverActivity中使用SimpleAdapter。 我在这样的文件夹布局中创建activity_list_layout.xml

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

    <TextView
        android:id="@+id/ColType"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Type"/>

    <TextView
        android:id="@+id/ColDate"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:text="Date"/>

</LinearLayout>

并创建如下的activity_driver.xml。

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ListView
        android:id="@+id/lv_driver"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <TextView
        android:id="@+id/emptyElement"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_centerInParent="true"
        android:text="Please add driver"
        android:gravity="center"
        android:textColor="#525252"
        android:textSize="19.0sp"
        android:visibility="gone" />

</android.support.constraint.ConstraintLayout>

在DriverActivity.java中,我使用像这样的自定义列表视图。

 public void onResume() {

    super.onResume();
    db = dbHelper.getWritableDatabase();

    String[] queryColumns = new String[]{"_id", DBHelper.COL_TYPE, DBHelper.COL_OPTION_NAME,DBHelper.COL_DATE };

    cursor = db.query(DBHelper.TABLE_NAME, queryColumns, null,null,
           null,null,null);

    HashMap<String,String> map = new HashMap<String,String>();

    String type_name;

    while(cursor.moveToNext())
    {
        type_name=cursor.getColumnName(1);

        map.put("v_type", dbHelper.V_Type(type_name));
        map.put("date", type_name=cursor.getString(4));
        lst_driver.add(map);
    }

    String[] showColumns = new String[]{DBHelper.COL_TYPE, DBHelper.COL_DATE};


    int[] views = new int[] {android.R.id.col, android.R.id.text2};


    adapter = new SimpleAdapter(DriverLicenseActivity.this,lst_driver, android.R.layout.activity_list_layout, showColumns, views);
    lv_driver.setAdapter(adapter);
}

在新的SimpleAdapter上,android.R.layout.activity_list_layout显示错误。 独木舟可重复使用的符号android.R.layout.activity_list_layout

如何解决问题?

2 个答案:

答案 0 :(得分:2)

只需移除android上的android.R.layout.activity_list_layout。应该是这样的:R.layout.activity_list_layout

答案 1 :(得分:0)

android.R。用于由android SDK访问预定义的类(布局/可绘制对象)

R 用于访问自定义类(即用户导入/创建的布局/可绘制对象)

这种情况下,您应该使用

 SimpleAdapter  adapter = new SimpleAdapter(DriverLicenseActivity.this,lst_driver, R.layout.activity_list_layout, showColumns, views);