内容提供商不工作

时间:2013-02-15 22:45:30

标签: android

我正在使用在ICS上运行的Xperia。这是我写的一个应用程序,用于了解内容提供商的工作方式。该应用程序在GingerBread模拟器上运行正常,但在我的手机中没有显示。是什么原因导致app表现得像这样? 这是android清单的代码。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="legacy_systems.contentprovider"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="11"
        android:targetSdkVersion="17" />
    <uses-permission android:name="android.permission.READ_CONTACTS"/>

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="legacy_systems.contentprovider.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

布局代码。

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

    <ListView 
        android:id="@+id/android:lst"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:stackFromBottom="false"
        android:transcriptMode="normal" />

    <TextView
        android:id="@+id/con_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textStyle="bold" />

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

</LinearLayout>

最后,java源文件的代码。

package legacy_systems.contentprovider;

import android.os.Bundle;
import android.view.Menu;
import android.app.ListActivity;
import android.content.CursorLoader;
import android.database.Cursor;
import android.net.Uri;
import android.provider.ContactsContract;
import android.widget.CursorAdapter;
import android.widget.SimpleCursorAdapter;

public class MainActivity extends ListActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);


        Uri allCont = Uri.parse("content://contacts/people");
        Cursor c;
        if(android.os.Build.VERSION.SDK_INT <11){
            c = managedQuery(allCont, null, null, null, null);
        }
        else{
            CursorLoader cl = new CursorLoader(this,
                    allCont,
                    null,
                    null,
                    null,
                    null);

            c = cl.loadInBackground();
        }
        String[] columns = new String[]{ContactsContract.Contacts.DISPLAY_NAME, ContactsContract.Contacts._ID};
        int views[]=new int[]{R.id.con_name, R.id.con_id};
        SimpleCursorAdapter ada;

        if(android.os.Build.VERSION.SDK_INT<11){
            ada = new SimpleCursorAdapter(this, R.layout.activity_main,c, columns, views);
        }
            else
            {
                ada = new SimpleCursorAdapter(this, R.layout.activity_main,c, columns, views, CursorAdapter.FLAG_REGISTER_CONTENT_OBSERVER);
            }
        this.setListAdapter(ada);

    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.activity_main, menu);
        return true;
    }

}

我无法解决其中的问题。 提前谢谢。

2 个答案:

答案 0 :(得分:0)

您将ListView的ID设置为@+android:id/lst。我想你打算输入list。如果你没有在那里使用+,那么资源编译器就能告诉你你的错误。

答案 1 :(得分:0)

你很亲密,只是还没有。

  1. 您应该避免使用自己定义的常量作为Contacts Provider的内容URI。
  2. 您应该在android.support.v4.content.CursorLoader中使用CursorLoader的支持库实现,而根本不使用managedQuery。
  3. 您没有正确使用CursorLoader。有一个CursorLoader培训课,它显示了如何使用支持库版本 http://developer.android.com/training/load-data-background/index.html
  4. 可能发生的情况是,您使用的是Honeycomb或更低版本的平台版本运行模拟器,然后使用managedQuery。这样可行。您的设备可能正在使用更高版本的平台,然后尝试使用CursorLoader,并且失败。

    你有正确的想法,你只需要使用正确的策略!