首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网络技术 > 网络基础 >

aidl与相对应的java资料示例

2012-07-15 
aidl与相对应的java文件示例aidl与相对应的java文件示例???frameworks\base\telephony\java\com\android\i

aidl与相对应的java文件示例

aidl与相对应的java文件示例

?

??frameworks\base\telephony\java\com\android\internal\telephony\ISms.aidl


/*
** Copyright 2007, The Android Open Source Project
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
**
**???? http://www.apache.org/licenses/LICENSE-2.0
**
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*/

package com.android.internal.telephony;

import android.app.PendingIntent;
import com.android.internal.telephony.SmsRawData;

/** Interface for applications to access the ICC phone book.
?*
?* <p>The following code snippet demonstrates a static method to
?* retrieve the ISms interface from Android:</p>
?* <pre>private static ISms getSmsInterface()
??????????? throws DeadObjectException {
??? IServiceManager sm = ServiceManagerNative.getDefault();
??? ISms ss;
??? ss = ISms.Stub.asInterface(sm.getService("isms"));
??? return ss;
}
?* </pre>
?*/

interface ISms {
??? /**
???? * Retrieves all messages currently stored on ICC.
???? *
???? * @return list of SmsRawData of all sms on ICC
???? */
???? List<SmsRawData> getAllMessagesFromIccEf();

??? /**
???? * Update the specified message on the ICC.
???? *
???? * @param messageIndex record index of message to update
???? * @param newStatus new message status (STATUS_ON_ICC_READ,
???? *????????????????? STATUS_ON_ICC_UNREAD, STATUS_ON_ICC_SENT,
???? *????????????????? STATUS_ON_ICC_UNSENT, STATUS_ON_ICC_FREE)
???? * @param pdu the raw PDU to store
???? * @return success or not
???? *
???? */
???? boolean updateMessageOnIccEf(int messageIndex, int newStatus,
??????????? in byte[] pdu);

??? /**
???? * Copy a raw SMS PDU to the ICC.
???? *
???? * @param pdu the raw PDU to store
???? * @param status message status (STATUS_ON_ICC_READ, STATUS_ON_ICC_UNREAD,
???? *?????????????? STATUS_ON_ICC_SENT, STATUS_ON_ICC_UNSENT)
???? * @return success or not
???? *
???? */
??? boolean copyMessageToIccEf(int status, in byte[] pdu, in byte[] smsc);

??? /**
???? * Send a data SMS.
???? *
???? * @param smsc the SMSC to send the message through, or NULL for the
???? *? default SMSC
???? * @param data the body of the message to send
???? * @param sentIntent if not NULL this <code>PendingIntent</code> is
???? *? broadcast when the message is sucessfully sent, or failed.
???? *? The result code will be <code>Activity.RESULT_OK<code> for success,
???? *? or one of these errors:<br>
???? *? <code>RESULT_ERROR_GENERIC_FAILURE</code><br>
???? *? <code>RESULT_ERROR_RADIO_OFF</code><br>
???? *? <code>RESULT_ERROR_NULL_PDU</code><br>
???? *? For <code>RESULT_ERROR_GENERIC_FAILURE</code> the sentIntent may include
???? *? the extra "errorCode" containing a radio technology specific value,
???? *? generally only useful for troubleshooting.<br>
???? *? The per-application based SMS control checks sentIntent. If sentIntent
???? *? is NULL the caller will be checked against all unknown applicaitons,
???? *? which cause smaller number of SMS to be sent in checking period.
???? * @param deliveryIntent if not NULL this <code>PendingIntent</code> is
???? *? broadcast when the message is delivered to the recipient.? The
???? *? raw pdu of the status report is in the extended data ("pdu").
???? */
??? void sendData(in String destAddr, in String scAddr, in int destPort,
??????????? in byte[] data, in PendingIntent sentIntent, in PendingIntent deliveryIntent);

??? /**
???? * Send an SMS.
???? *
???? * @param smsc the SMSC to send the message through, or NULL for the
???? *? default SMSC
???? * @param text the body of the message to send
???? * @param sentIntent if not NULL this <code>PendingIntent</code> is
???? *? broadcast when the message is sucessfully sent, or failed.
???? *? The result code will be <code>Activity.RESULT_OK<code> for success,
???? *? or one of these errors:<br>
???? *? <code>RESULT_ERROR_GENERIC_FAILURE</code><br>
???? *? <code>RESULT_ERROR_RADIO_OFF</code><br>
???? *? <code>RESULT_ERROR_NULL_PDU</code><br>
???? *? For <code>RESULT_ERROR_GENERIC_FAILURE</code> the sentIntent may include
???? *? the extra "errorCode" containing a radio technology specific value,
???? *? generally only useful for troubleshooting.<br>
???? *? The per-application based SMS control checks sentIntent. If sentIntent
???? *? is NULL the caller will be checked against all unknown applications,
???? *? which cause smaller number of SMS to be sent in checking period.
???? * @param deliveryIntent if not NULL this <code>PendingIntent</code> is
???? *? broadcast when the message is delivered to the recipient.? The
???? *? raw pdu of the status report is in the extended data ("pdu").
???? */
??? void sendText(in String destAddr, in String scAddr, in String text,
??????????? in PendingIntent sentIntent, in PendingIntent deliveryIntent);

??? /**
???? * Send a multi-part text based SMS.
???? *
???? * @param destinationAddress the address to send the message to
???? * @param scAddress is the service center address or null to use
???? *?? the current default SMSC
???? * @param parts an <code>ArrayList</code> of strings that, in order,
???? *?? comprise the original message
???? * @param sentIntents if not null, an <code>ArrayList</code> of
???? *?? <code>PendingIntent</code>s (one for each message part) that is
???? *?? broadcast when the corresponding message part has been sent.
???? *?? The result code will be <code>Activity.RESULT_OK<code> for success,
???? *?? or one of these errors:
???? *?? <code>RESULT_ERROR_GENERIC_FAILURE</code>
???? *?? <code>RESULT_ERROR_RADIO_OFF</code>
???? *?? <code>RESULT_ERROR_NULL_PDU</code>.
???? * @param deliveryIntents if not null, an <code>ArrayList</code> of
???? *?? <code>PendingIntent</code>s (one for each message part) that is
???? *?? broadcast when the corresponding message part has been delivered
???? *?? to the recipient.? The raw pdu of the status report is in the
???? *?? extended data ("pdu").
???? */
??? void sendMultipartText(in String destinationAddress, in String scAddress,
??????????? in List<String> parts, in List<PendingIntent> sentIntents,
??????????? in List<PendingIntent> deliveryIntents);

??? /**
???? * Enable reception of cell broadcast (SMS-CB) messages with the given
???? * message identifier. Note that if two different clients enable the same
???? * message identifier, they must both disable it for the device to stop
???? * receiving those messages.
???? *
???? * @param messageIdentifier Message identifier as specified in TS 23.041
???? * @return true if successful, false otherwise
???? *
???? * @see #disableCellBroadcast(int)
???? */
??? boolean enableCellBroadcast(int messageIdentifier);

??? /**
???? * Disable reception of cell broadcast (SMS-CB) messages with the given
???? * message identifier. Note that if two different clients enable the same
???? * message identifier, they must both disable it for the device to stop
???? * receiving those messages.
???? *
???? * @param messageIdentifier Message identifier as specified in TS 23.041
???? * @return true if successful, false otherwise
???? *
???? * @see #enableCellBroadcast(int)
???? */
??? boolean disableCellBroadcast(int messageIdentifier);

??? /**
???? * Enable reception of cdma broadcast messages with the given
???? * message identifier. Note that if two different clients enable the same
???? * message identifier, they must both disable it for the device to stop
???? * receiving those messages. All received messages will be broadcast in an
???? * intent with the action "android.provider.telephony.SMS_CDMA_BROADCAST_RECEIVED".
???? * Note: This call is blocking, callers may want to avoid calling it from
???? * the main thread of an application.
???? *
???? * @param messageIdentifier Message identifier as specified in C.R1001-G
???? * @return true if successful, false otherwise
???? * @see #disableCdmaBroadcast(int)
???? */
??? boolean enableCdmaBroadcast(int messageIdentifier);

??? /**
???? * Disable reception of cdma broadcast messages with the given
???? * message identifier. Note that if two different clients enable the same
???? * message identifier, they must both disable it for the device to stop
???? * receiving those messages.
???? * Note: This call is blocking, callers may want to avoid calling it from
???? * the main thread of an application.
???? *
???? * @param messageIdentifier Message identifier as specified in C.R1001-G
???? * @return true if successful, false otherwise
???? *
???? * @see #enableCdmaBroadcast(int)
???? */
??? boolean disableCdmaBroadcast(int messageIdentifier);

}

?

out\target\common\obj\JAVA_LIBRARIES\framework_intermediates\src\telephony\java\com\android\internal\telephony\

ISms.java

注意:该ISms.java文件为编译时自动产生!

/*
?* This file is auto-generated.? DO NOT MODIFY.
?* Original file: frameworks/base/telephony/java/com/android/internal/telephony/ISms.aidl
?*/
package com.android.internal.telephony;
/** Interface for applications to access the ICC phone book.
?*
?* <p>The following code snippet demonstrates a static method to
?* retrieve the ISms interface from Android:</p>
?* <pre>private static ISms getSmsInterface()
??????????? throws DeadObjectException {
??? IServiceManager sm = ServiceManagerNative.getDefault();
??? ISms ss;
??? ss = ISms.Stub.asInterface(sm.getService("isms"));
??? return ss;
}
?* </pre>
?*/
public interface ISms extends android.os.IInterface
{
/** Local-side IPC implementation stub class. */
public static abstract class Stub extends android.os.Binder implements com.android.internal.telephony.ISms
{
private static final java.lang.String DESCRIPTOR = "com.android.internal.telephony.ISms";
/** Construct the stub at attach it to the interface. */
public Stub()
{
this.attachInterface(this, DESCRIPTOR);
}
/**
?* Cast an IBinder object into an com.android.internal.telephony.ISms interface,
?* generating a proxy if needed.
?*/
public static com.android.internal.telephony.ISms asInterface(android.os.IBinder obj)
{
if ((obj==null)) {
return null;
}
android.os.IInterface iin = (android.os.IInterface)obj.queryLocalInterface(DESCRIPTOR);
if (((iin!=null)&&(iin instanceof com.android.internal.telephony.ISms))) {
return ((com.android.internal.telephony.ISms)iin);
}
return new com.android.internal.telephony.ISms.Stub.Proxy(obj);
}
public android.os.IBinder asBinder()
{
return this;
}
@Override public boolean onTransact(int code, android.os.Parcel data, android.os.Parcel reply, int flags) throws android.os.RemoteException
{
switch (code)
{
case INTERFACE_TRANSACTION:
{
reply.writeString(DESCRIPTOR);
return true;
}
case TRANSACTION_getAllMessagesFromIccEf:
{
data.enforceInterface(DESCRIPTOR);
java.util.List<com.android.internal.telephony.SmsRawData> _result = this.getAllMessagesFromIccEf();
reply.writeNoException();
reply.writeTypedList(_result);
return true;
}
case TRANSACTION_updateMessageOnIccEf:
{
data.enforceInterface(DESCRIPTOR);
int _arg0;
_arg0 = data.readInt();
int _arg1;
_arg1 = data.readInt();
byte[] _arg2;
_arg2 = data.createByteArray();
boolean _result = this.updateMessageOnIccEf(_arg0, _arg1, _arg2);
reply.writeNoException();
reply.writeInt(((_result)?(1):(0)));
return true;
}
case TRANSACTION_copyMessageToIccEf:
{
data.enforceInterface(DESCRIPTOR);
int _arg0;
_arg0 = data.readInt();
byte[] _arg1;
_arg1 = data.createByteArray();
byte[] _arg2;
_arg2 = data.createByteArray();
boolean _result = this.copyMessageToIccEf(_arg0, _arg1, _arg2);
reply.writeNoException();
reply.writeInt(((_result)?(1):(0)));
return true;
}
case TRANSACTION_sendData:
{
data.enforceInterface(DESCRIPTOR);
java.lang.String _arg0;
_arg0 = data.readString();
java.lang.String _arg1;
_arg1 = data.readString();
int _arg2;
_arg2 = data.readInt();
byte[] _arg3;
_arg3 = data.createByteArray();
android.app.PendingIntent _arg4;
if ((0!=data.readInt())) {
_arg4 = android.app.PendingIntent.CREATOR.createFromParcel(data);
}
else {
_arg4 = null;
}
android.app.PendingIntent _arg5;
if ((0!=data.readInt())) {
_arg5 = android.app.PendingIntent.CREATOR.createFromParcel(data);
}
else {
_arg5 = null;
}
this.sendData(_arg0, _arg1, _arg2, _arg3, _arg4, _arg5);
reply.writeNoException();
return true;
}
case TRANSACTION_sendText:
{
data.enforceInterface(DESCRIPTOR);
java.lang.String _arg0;
_arg0 = data.readString();
java.lang.String _arg1;
_arg1 = data.readString();
java.lang.String _arg2;
_arg2 = data.readString();
android.app.PendingIntent _arg3;
if ((0!=data.readInt())) {
_arg3 = android.app.PendingIntent.CREATOR.createFromParcel(data);
}
else {
_arg3 = null;
}
android.app.PendingIntent _arg4;
if ((0!=data.readInt())) {
_arg4 = android.app.PendingIntent.CREATOR.createFromParcel(data);
}
else {
_arg4 = null;
}
this.sendText(_arg0, _arg1, _arg2, _arg3, _arg4);
reply.writeNoException();
return true;
}
case TRANSACTION_sendMultipartText:
{
data.enforceInterface(DESCRIPTOR);
java.lang.String _arg0;
_arg0 = data.readString();
java.lang.String _arg1;
_arg1 = data.readString();
java.util.List<java.lang.String> _arg2;
_arg2 = data.createStringArrayList();
java.util.List<android.app.PendingIntent> _arg3;
_arg3 = data.createTypedArrayList(android.app.PendingIntent.CREATOR);
java.util.List<android.app.PendingIntent> _arg4;
_arg4 = data.createTypedArrayList(android.app.PendingIntent.CREATOR);
this.sendMultipartText(_arg0, _arg1, _arg2, _arg3, _arg4);
reply.writeNoException();
return true;
}
case TRANSACTION_enableCellBroadcast:
{
data.enforceInterface(DESCRIPTOR);
int _arg0;
_arg0 = data.readInt();
boolean _result = this.enableCellBroadcast(_arg0);
reply.writeNoException();
reply.writeInt(((_result)?(1):(0)));
return true;
}
case TRANSACTION_disableCellBroadcast:
{
data.enforceInterface(DESCRIPTOR);
int _arg0;
_arg0 = data.readInt();
boolean _result = this.disableCellBroadcast(_arg0);
reply.writeNoException();
reply.writeInt(((_result)?(1):(0)));
return true;
}
case TRANSACTION_enableCdmaBroadcast:
{
data.enforceInterface(DESCRIPTOR);
int _arg0;
_arg0 = data.readInt();
boolean _result = this.enableCdmaBroadcast(_arg0);
reply.writeNoException();
reply.writeInt(((_result)?(1):(0)));
return true;
}
case TRANSACTION_disableCdmaBroadcast:
{
data.enforceInterface(DESCRIPTOR);
int _arg0;
_arg0 = data.readInt();
boolean _result = this.disableCdmaBroadcast(_arg0);
reply.writeNoException();
reply.writeInt(((_result)?(1):(0)));
return true;
}
}
return super.onTransact(code, data, reply, flags);
}
private static class Proxy implements com.android.internal.telephony.ISms
{
private android.os.IBinder mRemote;
Proxy(android.os.IBinder remote)
{
mRemote = remote;
}
public android.os.IBinder asBinder()
{
return mRemote;
}
public java.lang.String getInterfaceDescriptor()
{
return DESCRIPTOR;
}
/**
???? * Retrieves all messages currently stored on ICC.
???? *
???? * @return list of SmsRawData of all sms on ICC
???? */
public java.util.List<com.android.internal.telephony.SmsRawData> getAllMessagesFromIccEf() throws android.os.RemoteException
{
android.os.Parcel _data = android.os.Parcel.obtain();
android.os.Parcel _reply = android.os.Parcel.obtain();
java.util.List<com.android.internal.telephony.SmsRawData> _result;
try {
_data.writeInterfaceToken(DESCRIPTOR);
mRemote.transact(Stub.TRANSACTION_getAllMessagesFromIccEf, _data, _reply, 0);
_reply.readException();
_result = _reply.createTypedArrayList(com.android.internal.telephony.SmsRawData.CREATOR);
}
finally {
_reply.recycle();
_data.recycle();
}
return _result;
}
/**
???? * Update the specified message on the ICC.
???? *
???? * @param messageIndex record index of message to update
???? * @param newStatus new message status (STATUS_ON_ICC_READ,
???? *????????????????? STATUS_ON_ICC_UNREAD, STATUS_ON_ICC_SENT,
???? *????????????????? STATUS_ON_ICC_UNSENT, STATUS_ON_ICC_FREE)
???? * @param pdu the raw PDU to store
???? * @return success or not
???? *
???? */
public boolean updateMessageOnIccEf(int messageIndex, int newStatus, byte[] pdu) throws android.os.RemoteException
{
android.os.Parcel _data = android.os.Parcel.obtain();
android.os.Parcel _reply = android.os.Parcel.obtain();
boolean _result;
try {
_data.writeInterfaceToken(DESCRIPTOR);
_data.writeInt(messageIndex);
_data.writeInt(newStatus);
_data.writeByteArray(pdu);
mRemote.transact(Stub.TRANSACTION_updateMessageOnIccEf, _data, _reply, 0);
_reply.readException();
_result = (0!=_reply.readInt());
}
finally {
_reply.recycle();
_data.recycle();
}
return _result;
}
/**
???? * Copy a raw SMS PDU to the ICC.
???? *
???? * @param pdu the raw PDU to store
???? * @param status message status (STATUS_ON_ICC_READ, STATUS_ON_ICC_UNREAD,
???? *?????????????? STATUS_ON_ICC_SENT, STATUS_ON_ICC_UNSENT)
???? * @return success or not
???? *
???? */
public boolean copyMessageToIccEf(int status, byte[] pdu, byte[] smsc) throws android.os.RemoteException
{
android.os.Parcel _data = android.os.Parcel.obtain();
android.os.Parcel _reply = android.os.Parcel.obtain();
boolean _result;
try {
_data.writeInterfaceToken(DESCRIPTOR);
_data.writeInt(status);
_data.writeByteArray(pdu);
_data.writeByteArray(smsc);
mRemote.transact(Stub.TRANSACTION_copyMessageToIccEf, _data, _reply, 0);
_reply.readException();
_result = (0!=_reply.readInt());
}
finally {
_reply.recycle();
_data.recycle();
}
return _result;
}
/**
???? * Send a data SMS.
???? *
???? * @param smsc the SMSC to send the message through, or NULL for the
???? *? default SMSC
???? * @param data the body of the message to send
???? * @param sentIntent if not NULL this <code>PendingIntent</code> is
???? *? broadcast when the message is sucessfully sent, or failed.
???? *? The result code will be <code>Activity.RESULT_OK<code> for success,
???? *? or one of these errors:<br>
???? *? <code>RESULT_ERROR_GENERIC_FAILURE</code><br>
???? *? <code>RESULT_ERROR_RADIO_OFF</code><br>
???? *? <code>RESULT_ERROR_NULL_PDU</code><br>
???? *? For <code>RESULT_ERROR_GENERIC_FAILURE</code> the sentIntent may include
???? *? the extra "errorCode" containing a radio technology specific value,
???? *? generally only useful for troubleshooting.<br>
???? *? The per-application based SMS control checks sentIntent. If sentIntent
???? *? is NULL the caller will be checked against all unknown applicaitons,
???? *? which cause smaller number of SMS to be sent in checking period.
???? * @param deliveryIntent if not NULL this <code>PendingIntent</code> is
???? *? broadcast when the message is delivered to the recipient.? The
???? *? raw pdu of the status report is in the extended data ("pdu").
???? */
public void sendData(java.lang.String destAddr, java.lang.String scAddr, int destPort, byte[] data, android.app.PendingIntent sentIntent, android.app.PendingIntent deliveryIntent) throws android.os.RemoteException
{
android.os.Parcel _data = android.os.Parcel.obtain();
android.os.Parcel _reply = android.os.Parcel.obtain();
try {
_data.writeInterfaceToken(DESCRIPTOR);
_data.writeString(destAddr);
_data.writeString(scAddr);
_data.writeInt(destPort);
_data.writeByteArray(data);
if ((sentIntent!=null)) {
_data.writeInt(1);
sentIntent.writeToParcel(_data, 0);
}
else {
_data.writeInt(0);
}
if ((deliveryIntent!=null)) {
_data.writeInt(1);
deliveryIntent.writeToParcel(_data, 0);
}
else {
_data.writeInt(0);
}
mRemote.transact(Stub.TRANSACTION_sendData, _data, _reply, 0);
_reply.readException();
}
finally {
_reply.recycle();
_data.recycle();
}
}
/**
???? * Send an SMS.
???? *
???? * @param smsc the SMSC to send the message through, or NULL for the
???? *? default SMSC
???? * @param text the body of the message to send
???? * @param sentIntent if not NULL this <code>PendingIntent</code> is
???? *? broadcast when the message is sucessfully sent, or failed.
???? *? The result code will be <code>Activity.RESULT_OK<code> for success,
???? *? or one of these errors:<br>
???? *? <code>RESULT_ERROR_GENERIC_FAILURE</code><br>
???? *? <code>RESULT_ERROR_RADIO_OFF</code><br>
???? *? <code>RESULT_ERROR_NULL_PDU</code><br>
???? *? For <code>RESULT_ERROR_GENERIC_FAILURE</code> the sentIntent may include
???? *? the extra "errorCode" containing a radio technology specific value,
???? *? generally only useful for troubleshooting.<br>
???? *? The per-application based SMS control checks sentIntent. If sentIntent
???? *? is NULL the caller will be checked against all unknown applications,
???? *? which cause smaller number of SMS to be sent in checking period.
???? * @param deliveryIntent if not NULL this <code>PendingIntent</code> is
???? *? broadcast when the message is delivered to the recipient.? The
???? *? raw pdu of the status report is in the extended data ("pdu").
???? */
public void sendText(java.lang.String destAddr, java.lang.String scAddr, java.lang.String text, android.app.PendingIntent sentIntent, android.app.PendingIntent deliveryIntent) throws android.os.RemoteException
{
android.os.Parcel _data = android.os.Parcel.obtain();
android.os.Parcel _reply = android.os.Parcel.obtain();
try {
_data.writeInterfaceToken(DESCRIPTOR);
_data.writeString(destAddr);
_data.writeString(scAddr);
_data.writeString(text);
if ((sentIntent!=null)) {
_data.writeInt(1);
sentIntent.writeToParcel(_data, 0);
}
else {
_data.writeInt(0);
}
if ((deliveryIntent!=null)) {
_data.writeInt(1);
deliveryIntent.writeToParcel(_data, 0);
}
else {
_data.writeInt(0);
}
mRemote.transact(Stub.TRANSACTION_sendText, _data, _reply, 0);
_reply.readException();
}
finally {
_reply.recycle();
_data.recycle();
}
}
/**
???? * Send a multi-part text based SMS.
???? *
???? * @param destinationAddress the address to send the message to
???? * @param scAddress is the service center address or null to use
???? *?? the current default SMSC
???? * @param parts an <code>ArrayList</code> of strings that, in order,
???? *?? comprise the original message
???? * @param sentIntents if not null, an <code>ArrayList</code> of
???? *?? <code>PendingIntent</code>s (one for each message part) that is
???? *?? broadcast when the corresponding message part has been sent.
???? *?? The result code will be <code>Activity.RESULT_OK<code> for success,
???? *?? or one of these errors:
???? *?? <code>RESULT_ERROR_GENERIC_FAILURE</code>
???? *?? <code>RESULT_ERROR_RADIO_OFF</code>
???? *?? <code>RESULT_ERROR_NULL_PDU</code>.
???? * @param deliveryIntents if not null, an <code>ArrayList</code> of
???? *?? <code>PendingIntent</code>s (one for each message part) that is
???? *?? broadcast when the corresponding message part has been delivered
???? *?? to the recipient.? The raw pdu of the status report is in the
???? *?? extended data ("pdu").
???? */
public void sendMultipartText(java.lang.String destinationAddress, java.lang.String scAddress, java.util.List<java.lang.String> parts, java.util.List<android.app.PendingIntent> sentIntents, java.util.List<android.app.PendingIntent> deliveryIntents) throws android.os.RemoteException
{
android.os.Parcel _data = android.os.Parcel.obtain();
android.os.Parcel _reply = android.os.Parcel.obtain();
try {
_data.writeInterfaceToken(DESCRIPTOR);
_data.writeString(destinationAddress);
_data.writeString(scAddress);
_data.writeStringList(parts);
_data.writeTypedList(sentIntents);
_data.writeTypedList(deliveryIntents);
mRemote.transact(Stub.TRANSACTION_sendMultipartText, _data, _reply, 0);
_reply.readException();
}
finally {
_reply.recycle();
_data.recycle();
}
}
/**
???? * Enable reception of cell broadcast (SMS-CB) messages with the given
???? * message identifier. Note that if two different clients enable the same
???? * message identifier, they must both disable it for the device to stop
???? * receiving those messages.
???? *
???? * @param messageIdentifier Message identifier as specified in TS 23.041
???? * @return true if successful, false otherwise
???? *
???? * @see #disableCellBroadcast(int)
???? */
public boolean enableCellBroadcast(int messageIdentifier) throws android.os.RemoteException
{
android.os.Parcel _data = android.os.Parcel.obtain();
android.os.Parcel _reply = android.os.Parcel.obtain();
boolean _result;
try {
_data.writeInterfaceToken(DESCRIPTOR);
_data.writeInt(messageIdentifier);
mRemote.transact(Stub.TRANSACTION_enableCellBroadcast, _data, _reply, 0);
_reply.readException();
_result = (0!=_reply.readInt());
}
finally {
_reply.recycle();
_data.recycle();
}
return _result;
}
/**
???? * Disable reception of cell broadcast (SMS-CB) messages with the given
???? * message identifier. Note that if two different clients enable the same
???? * message identifier, they must both disable it for the device to stop
???? * receiving those messages.
???? *
???? * @param messageIdentifier Message identifier as specified in TS 23.041
???? * @return true if successful, false otherwise
???? *
???? * @see #enableCellBroadcast(int)
???? */
public boolean disableCellBroadcast(int messageIdentifier) throws android.os.RemoteException
{
android.os.Parcel _data = android.os.Parcel.obtain();
android.os.Parcel _reply = android.os.Parcel.obtain();
boolean _result;
try {
_data.writeInterfaceToken(DESCRIPTOR);
_data.writeInt(messageIdentifier);
mRemote.transact(Stub.TRANSACTION_disableCellBroadcast, _data, _reply, 0);
_reply.readException();
_result = (0!=_reply.readInt());
}
finally {
_reply.recycle();
_data.recycle();
}
return _result;
}
/**
???? * Enable reception of cdma broadcast messages with the given
???? * message identifier. Note that if two different clients enable the same
???? * message identifier, they must both disable it for the device to stop
???? * receiving those messages. All received messages will be broadcast in an
???? * intent with the action "android.provider.telephony.SMS_CDMA_BROADCAST_RECEIVED".
???? * Note: This call is blocking, callers may want to avoid calling it from
???? * the main thread of an application.
???? *
???? * @param messageIdentifier Message identifier as specified in C.R1001-G
???? * @return true if successful, false otherwise
???? * @see #disableCdmaBroadcast(int)
???? */
public boolean enableCdmaBroadcast(int messageIdentifier) throws android.os.RemoteException
{
android.os.Parcel _data = android.os.Parcel.obtain();
android.os.Parcel _reply = android.os.Parcel.obtain();
boolean _result;
try {
_data.writeInterfaceToken(DESCRIPTOR);
_data.writeInt(messageIdentifier);
mRemote.transact(Stub.TRANSACTION_enableCdmaBroadcast, _data, _reply, 0);
_reply.readException();
_result = (0!=_reply.readInt());
}
finally {
_reply.recycle();
_data.recycle();
}
return _result;
}
/**
???? * Disable reception of cdma broadcast messages with the given
???? * message identifier. Note that if two different clients enable the same
???? * message identifier, they must both disable it for the device to stop
???? * receiving those messages.
???? * Note: This call is blocking, callers may want to avoid calling it from
???? * the main thread of an application.
???? *
???? * @param messageIdentifier Message identifier as specified in C.R1001-G
???? * @return true if successful, false otherwise
???? *
???? * @see #enableCdmaBroadcast(int)
???? */
public boolean disableCdmaBroadcast(int messageIdentifier) throws android.os.RemoteException
{
android.os.Parcel _data = android.os.Parcel.obtain();
android.os.Parcel _reply = android.os.Parcel.obtain();
boolean _result;
try {
_data.writeInterfaceToken(DESCRIPTOR);
_data.writeInt(messageIdentifier);
mRemote.transact(Stub.TRANSACTION_disableCdmaBroadcast, _data, _reply, 0);
_reply.readException();
_result = (0!=_reply.readInt());
}
finally {
_reply.recycle();
_data.recycle();
}
return _result;
}
}
static final int TRANSACTION_getAllMessagesFromIccEf = (android.os.IBinder.FIRST_CALL_TRANSACTION + 0);
static final int TRANSACTION_updateMessageOnIccEf = (android.os.IBinder.FIRST_CALL_TRANSACTION + 1);
static final int TRANSACTION_copyMessageToIccEf = (android.os.IBinder.FIRST_CALL_TRANSACTION + 2);
static final int TRANSACTION_sendData = (android.os.IBinder.FIRST_CALL_TRANSACTION + 3);
static final int TRANSACTION_sendText = (android.os.IBinder.FIRST_CALL_TRANSACTION + 4);
static final int TRANSACTION_sendMultipartText = (android.os.IBinder.FIRST_CALL_TRANSACTION + 5);
static final int TRANSACTION_enableCellBroadcast = (android.os.IBinder.FIRST_CALL_TRANSACTION + 6);
static final int TRANSACTION_disableCellBroadcast = (android.os.IBinder.FIRST_CALL_TRANSACTION + 7);
static final int TRANSACTION_enableCdmaBroadcast = (android.os.IBinder.FIRST_CALL_TRANSACTION + 8);
static final int TRANSACTION_disableCdmaBroadcast = (android.os.IBinder.FIRST_CALL_TRANSACTION + 9);
}
/**
???? * Retrieves all messages currently stored on ICC.
???? *
???? * @return list of SmsRawData of all sms on ICC
???? */
public java.util.List<com.android.internal.telephony.SmsRawData> getAllMessagesFromIccEf() throws android.os.RemoteException;
/**
???? * Update the specified message on the ICC.
???? *
???? * @param messageIndex record index of message to update
???? * @param newStatus new message status (STATUS_ON_ICC_READ,
???? *????????????????? STATUS_ON_ICC_UNREAD, STATUS_ON_ICC_SENT,
???? *????????????????? STATUS_ON_ICC_UNSENT, STATUS_ON_ICC_FREE)
???? * @param pdu the raw PDU to store
???? * @return success or not
???? *
???? */
public boolean updateMessageOnIccEf(int messageIndex, int newStatus, byte[] pdu) throws android.os.RemoteException;
/**
???? * Copy a raw SMS PDU to the ICC.
???? *
???? * @param pdu the raw PDU to store
???? * @param status message status (STATUS_ON_ICC_READ, STATUS_ON_ICC_UNREAD,
???? *?????????????? STATUS_ON_ICC_SENT, STATUS_ON_ICC_UNSENT)
???? * @return success or not
???? *
???? */
public boolean copyMessageToIccEf(int status, byte[] pdu, byte[] smsc) throws android.os.RemoteException;
/**
???? * Send a data SMS.
???? *
???? * @param smsc the SMSC to send the message through, or NULL for the
???? *? default SMSC
???? * @param data the body of the message to send
???? * @param sentIntent if not NULL this <code>PendingIntent</code> is
???? *? broadcast when the message is sucessfully sent, or failed.
???? *? The result code will be <code>Activity.RESULT_OK<code> for success,
???? *? or one of these errors:<br>
???? *? <code>RESULT_ERROR_GENERIC_FAILURE</code><br>
???? *? <code>RESULT_ERROR_RADIO_OFF</code><br>
???? *? <code>RESULT_ERROR_NULL_PDU</code><br>
???? *? For <code>RESULT_ERROR_GENERIC_FAILURE</code> the sentIntent may include
???? *? the extra "errorCode" containing a radio technology specific value,
???? *? generally only useful for troubleshooting.<br>
???? *? The per-application based SMS control checks sentIntent. If sentIntent
???? *? is NULL the caller will be checked against all unknown applicaitons,
???? *? which cause smaller number of SMS to be sent in checking period.
???? * @param deliveryIntent if not NULL this <code>PendingIntent</code> is
???? *? broadcast when the message is delivered to the recipient.? The
???? *? raw pdu of the status report is in the extended data ("pdu").
???? */
public void sendData(java.lang.String destAddr, java.lang.String scAddr, int destPort, byte[] data, android.app.PendingIntent sentIntent, android.app.PendingIntent deliveryIntent) throws android.os.RemoteException;
/**
???? * Send an SMS.
???? *
???? * @param smsc the SMSC to send the message through, or NULL for the
???? *? default SMSC
???? * @param text the body of the message to send
???? * @param sentIntent if not NULL this <code>PendingIntent</code> is
???? *? broadcast when the message is sucessfully sent, or failed.
???? *? The result code will be <code>Activity.RESULT_OK<code> for success,
???? *? or one of these errors:<br>
???? *? <code>RESULT_ERROR_GENERIC_FAILURE</code><br>
???? *? <code>RESULT_ERROR_RADIO_OFF</code><br>
???? *? <code>RESULT_ERROR_NULL_PDU</code><br>
???? *? For <code>RESULT_ERROR_GENERIC_FAILURE</code> the sentIntent may include
???? *? the extra "errorCode" containing a radio technology specific value,
???? *? generally only useful for troubleshooting.<br>
???? *? The per-application based SMS control checks sentIntent. If sentIntent
???? *? is NULL the caller will be checked against all unknown applications,
???? *? which cause smaller number of SMS to be sent in checking period.
???? * @param deliveryIntent if not NULL this <code>PendingIntent</code> is
???? *? broadcast when the message is delivered to the recipient.? The
???? *? raw pdu of the status report is in the extended data ("pdu").
???? */
public void sendText(java.lang.String destAddr, java.lang.String scAddr, java.lang.String text, android.app.PendingIntent sentIntent, android.app.PendingIntent deliveryIntent) throws android.os.RemoteException;
/**
???? * Send a multi-part text based SMS.
???? *
???? * @param destinationAddress the address to send the message to
???? * @param scAddress is the service center address or null to use
???? *?? the current default SMSC
???? * @param parts an <code>ArrayList</code> of strings that, in order,
???? *?? comprise the original message
???? * @param sentIntents if not null, an <code>ArrayList</code> of
???? *?? <code>PendingIntent</code>s (one for each message part) that is
???? *?? broadcast when the corresponding message part has been sent.
???? *?? The result code will be <code>Activity.RESULT_OK<code> for success,
???? *?? or one of these errors:
???? *?? <code>RESULT_ERROR_GENERIC_FAILURE</code>
???? *?? <code>RESULT_ERROR_RADIO_OFF</code>
???? *?? <code>RESULT_ERROR_NULL_PDU</code>.
???? * @param deliveryIntents if not null, an <code>ArrayList</code> of
???? *?? <code>PendingIntent</code>s (one for each message part) that is
???? *?? broadcast when the corresponding message part has been delivered
???? *?? to the recipient.? The raw pdu of the status report is in the
???? *?? extended data ("pdu").
???? */
public void sendMultipartText(java.lang.String destinationAddress, java.lang.String scAddress, java.util.List<java.lang.String> parts, java.util.List<android.app.PendingIntent> sentIntents, java.util.List<android.app.PendingIntent> deliveryIntents) throws android.os.RemoteException;
/**
???? * Enable reception of cell broadcast (SMS-CB) messages with the given
???? * message identifier. Note that if two different clients enable the same
???? * message identifier, they must both disable it for the device to stop
???? * receiving those messages.
???? *
???? * @param messageIdentifier Message identifier as specified in TS 23.041
???? * @return true if successful, false otherwise
???? *
???? * @see #disableCellBroadcast(int)
???? */
public boolean enableCellBroadcast(int messageIdentifier) throws android.os.RemoteException;
/**
???? * Disable reception of cell broadcast (SMS-CB) messages with the given
???? * message identifier. Note that if two different clients enable the same
???? * message identifier, they must both disable it for the device to stop
???? * receiving those messages.
???? *
???? * @param messageIdentifier Message identifier as specified in TS 23.041
???? * @return true if successful, false otherwise
???? *
???? * @see #enableCellBroadcast(int)
???? */
public boolean disableCellBroadcast(int messageIdentifier) throws android.os.RemoteException;
/**
???? * Enable reception of cdma broadcast messages with the given
???? * message identifier. Note that if two different clients enable the same
???? * message identifier, they must both disable it for the device to stop
???? * receiving those messages. All received messages will be broadcast in an
???? * intent with the action "android.provider.telephony.SMS_CDMA_BROADCAST_RECEIVED".
???? * Note: This call is blocking, callers may want to avoid calling it from
???? * the main thread of an application.
???? *
???? * @param messageIdentifier Message identifier as specified in C.R1001-G
???? * @return true if successful, false otherwise
???? * @see #disableCdmaBroadcast(int)
???? */
public boolean enableCdmaBroadcast(int messageIdentifier) throws android.os.RemoteException;
/**
???? * Disable reception of cdma broadcast messages with the given
???? * message identifier. Note that if two different clients enable the same
???? * message identifier, they must both disable it for the device to stop
???? * receiving those messages.
???? * Note: This call is blocking, callers may want to avoid calling it from
???? * the main thread of an application.
???? *
???? * @param messageIdentifier Message identifier as specified in C.R1001-G
???? * @return true if successful, false otherwise
???? *
???? * @see #enableCdmaBroadcast(int)
???? */
public boolean disableCdmaBroadcast(int messageIdentifier) throws android.os.RemoteException;
}

?

热点排行