Android:内容文档:// sms /“type”值?

前端之家收集整理的这篇文章主要介绍了Android:内容文档:// sms /“type”值?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我知道 Android中没有正式支持内容:// sms / provider.然而,我想知道是否有一些常用的约定,显示在“type”列中可以从content:// sms / queries返回的值.

例如,我知道类型“1”和“2”分别代表“进入”和“传出”.是否有其他常用的类型值?例如,我有时看到类型“20”.

感谢您提供有关这方面信息或讨论的任何指标.

解决方法

如果您正在处理短信,您将需要挖掘源代码,因为几乎没有可用的文档.

我认为这是你要找的:

public static final int MESSAGE_TYPE_ALL    = 0;
public static final int MESSAGE_TYPE_INBox  = 1;
public static final int MESSAGE_TYPE_SENT   = 2;
public static final int MESSAGE_TYPE_DRAFT  = 3;
public static final int MESSAGE_TYPE_OUTBox = 4;
public static final int MESSAGE_TYPE_Failed = 5; // for Failed outgoing messages
public static final int MESSAGE_TYPE_QUEUED = 6; // for messages to send later

android.provider.Telephony.

原文链接:https://www.f2er.com/android/312702.html

猜你在找的Android相关文章