本文整理匯總了Java中android.accounts.Account.writeToParcel方法的典型用法代碼示例。如果您正苦於以下問題:Java Account.writeToParcel方法的具體用法?Java Account.writeToParcel怎麽用?Java Account.writeToParcel使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類android.accounts.Account
的用法示例。
在下文中一共展示了Account.writeToParcel方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: invalidateAccessToken
import android.accounts.Account; //導入方法依賴的package包/類
public void invalidateAccessToken(Account account, Bundle options) throws
RemoteException {
Parcel _data = Parcel.obtain();
Parcel _reply = Parcel.obtain();
try {
_data.writeInterfaceToken(Stub.DESCRIPTOR);
if (account != null) {
_data.writeInt(1);
account.writeToParcel(_data, 0);
} else {
_data.writeInt(0);
}
if (options != null) {
_data.writeInt(1);
options.writeToParcel(_data, 0);
} else {
_data.writeInt(0);
}
this.mRemote.transact(4, _data, _reply, 0);
_reply.readException();
} finally {
_reply.recycle();
_data.recycle();
}
}
示例2: invalidateAccessToken
import android.accounts.Account; //導入方法依賴的package包/類
public void invalidateAccessToken(Account account, Bundle options) throws RemoteException {
Parcel _data = Parcel.obtain();
Parcel _reply = Parcel.obtain();
try {
_data.writeInterfaceToken(Stub.DESCRIPTOR);
if (account != null) {
_data.writeInt(1);
account.writeToParcel(_data, 0);
} else {
_data.writeInt(0);
}
if (options != null) {
_data.writeInt(1);
options.writeToParcel(_data, 0);
} else {
_data.writeInt(0);
}
this.mRemote.transact(4, _data, _reply, 0);
_reply.readException();
} finally {
_reply.recycle();
_data.recycle();
}
}