#android #broadcastreceiver #android-broadcast
#Android #broadcastreceiver #android-трансляция
Вопрос:
Вот мой код. Это позволит мне получать все сообщения, которые я отправил со своего телефона Android. Я хочу получать только непрочитанные сообщения.
Заранее спасибо.
private String load_sent_sms() {
// TODO Auto-generated method stub
Uri uriSms = Uri.parse("content://sms/sent");
Cursor cursor = getContentResolver().query(uriSms,
new String[] { "_id", "address", "date", "body" }, null, null,
null);
String sms = "";
cursor.moveToFirst();
while (cursor.moveToNext()) {
String address = cursor.getString(1);
String body = cursor.getString(3);
sms = "Contact Name: " address "nMessage: " body "n";
}
return sms;
}
Ответ №1:
main.xml:
package com.example.esemesy;
import java.util.ArrayList;
import android.support.v7.app.ActionBarActivity;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.database.Cursor;
import android.net.Uri;
import android.os.Bundle;
public class MainActivity extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final ListView lViewSMS = (ListView) findViewById(R.id.listViewSMS);
if(fetchInbox()!=null)
{
@SuppressWarnings("unchecked")
ArrayAdapter adapter = new ArrayAdapter(this, android.R.layout.simple_list_item_1, fetchInbox());
lViewSMS.setAdapter(adapter);
}
}
ArrayList fetchInbox (){
final Uri SMS_INBOX = Uri.parse("content://sms/inbox");
//Retrieves all SMS (if you want only unread SMS, put "read = 0" for the 3rd parameter)
Cursor cursor = getContentResolver().query(SMS_INBOX, null, "read=0", null, null);
ArrayList sms = new ArrayList();
//Get all lines
while (cursor.moveToNext()) {
//Gets the SMS information
String address = cursor.getString(cursor.getColumnIndex("address"));
String person = cursor.getString(cursor.getColumnIndex("person"));
String date = cursor.getString(cursor.getColumnIndex("date"));
String protocol = cursor.getString(cursor.getColumnIndex("protocol"));
String read = cursor.getString(cursor.getColumnIndex("read"));
String status = cursor.getString(cursor.getColumnIndex("status"));
String type = cursor.getString(cursor.getColumnIndex("type"));
String subject = cursor.getString(cursor.getColumnIndex("subject"));
String body = cursor.getString(cursor.getColumnIndex("body"));
sms.add(address "n" body);
//Do what you want
}
return sms;
}
}
mainlayout:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@ id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.esemesy.MainActivity"
tools:ignore="MergeRootFrame" >
<ListView
android:id="@ id/listViewSMS"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ListView>
</FrameLayout>
manifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.esemesy"
android:versionCode="1"
android:versionName="1.0" >
<uses-permission android:name="android.permission.READ_SMS">
</uses-permission>
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="19" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.esemesy.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>
Комментарии:
1. #JaKoZo Не могли бы вы объяснить, что у меня это не работает.
2. Uri uriSms = Uri.parse(«содержимое:// sms/отправлено»); Курсор cursor = getContentResolver().query(uriSms, новая строка[] { «_id», «адрес», «дата», «тело» }, read=0, null,null);Это правильный путь?
3. Курсор cursor = getContentResolver().запрос(SMS_INBOX, null, «read = 0», null, null);
4. Он не работает, он всегда возвращает мне пустую строку private String load_sent_sms() { // TODO Автоматически сгенерированный метод заглушки Uri uriSms = Uri.parse(«content:// sms /отправлено»); Курсор cursor = getContentResolver().query(uriSms, новая строка[] { «_id», «адрес», «дата», «тело» }, «read = 0», null, null); Строка sms = «»; cursor.moveToFirst(); в то время как (cursor.moveToNext()) { Строковый адрес = cursor.getString(1); Строковое тело = курсор.getString(3); sms = «Имя контакта: » адрес «nMessage: » тело «n»;