1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
|
/*
* Copyright (C) 2019 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 android.app;
import android.annotation.NonNull;
import android.annotation.Nullable;
import android.content.LocusId;
import android.os.Bundle;
import android.os.IBinder;
import android.os.Parcel;
import android.os.Parcelable;
import android.view.accessibility.AccessibilityNodeInfo;
import com.android.internal.util.Preconditions;
import java.util.Objects;
/**
* Represents a abstract action that can be perform on this app. This are requested from
* outside the app's UI (eg by SystemUI or assistant). The semantics of these actions are
* not specified by the OS. This allows open-ended and scalable approach for defining how
* an app interacts with components that expose alternative interaction models to the user
* such as the assistant, SystemUI, etc. You can use {@link #equals(Object)} to compare
* instances of this class.
*/
public final class DirectAction implements Parcelable {
/**
* @hide
*/
public static final String KEY_ACTIONS_LIST = "actions_list";
private int mTaskId;
private IBinder mActivityId;
@NonNull
private final String mID;
@Nullable
private final Bundle mExtras;
@Nullable
private final LocusId mLocusId;
/** @hide */
public DirectAction(@NonNull String id, @Nullable Bundle extras,
@Nullable LocusId locusId) {
mID = Preconditions.checkStringNotEmpty(id);
mExtras = extras;
mLocusId = locusId;
}
/** @hide */
public void setSource(int taskId, IBinder activityId) {
mTaskId = taskId;
mActivityId = activityId;
}
/**
* @hide
*/
public DirectAction(@NonNull DirectAction original) {
mTaskId = original.mTaskId;
mActivityId = original.mActivityId;
mID = original.mID;
mExtras = original.mExtras;
mLocusId = original.mLocusId;
}
private DirectAction(Parcel in) {
mTaskId = in.readInt();
mActivityId = in.readStrongBinder();
mID = in.readString();
mExtras = in.readBundle();
final String idString = in.readString();
mLocusId = (idString != null) ? new LocusId(idString) : null;
}
/** @hide */
public int getTaskId() {
return mTaskId;
}
/** @hide */
public IBinder getActivityId() {
return mActivityId;
}
/**
* @return the ID for this action.
*/
@NonNull
public String getId() {
return mID;
}
/**
* @return any extras associated with this action.
*/
@Nullable
public Bundle getExtras() {
return mExtras;
}
/**
* @return the LocusId for the current state for the app
*/
@Nullable
public LocusId getLocusId() {
return mLocusId;
}
@Override
public int describeContents() {
return 0;
}
@Override
public int hashCode() {
return mID.hashCode();
}
@Override
public boolean equals(Object other) {
if (other == null) {
return false;
}
if (other == this) {
return true;
}
if (getClass() != other.getClass()) {
return false;
}
return mID.equals(((DirectAction) other).mID);
}
@Override
public void writeToParcel(Parcel dest, int flags) {
dest.writeInt(mTaskId);
dest.writeStrongBinder(mActivityId);
dest.writeString(mID);
dest.writeBundle(mExtras);
dest.writeString(mLocusId.getId());
}
/**
* Builder for construction of DirectAction.
*/
public static final class Builder {
private @NonNull String mId;
private @Nullable Bundle mExtras;
private @Nullable LocusId mLocusId;
/**
* Creates a new instance.
*
* @param id The mandatory action id which must be unique in the
* current application state.
*/
public Builder(@NonNull String id) {
Preconditions.checkNotNull(id);
mId = id;
}
/**
* Sets the optional action extras. These extras are action specific
* and their semantics are open-ended potentially representing how
* the action is visualized, interpreted, what its arguments are, etc.
*
* @param extras The extras.
* @return This builder.
*/
public @NonNull Builder setExtras(@Nullable Bundle extras) {
mExtras = extras;
return this;
}
/**
* Sets the optional locus id. This is an identifier of the application
* state from a user perspective. For example, a specific chat in a
* messaging app.
*
* @param locusId The locus id.
* @return This builder.
*/
public @NonNull Builder setLocusId(@Nullable LocusId locusId) {
mLocusId = locusId;
return this;
}
/**
* @return A newly constructed instance.
*/
public @NonNull DirectAction build() {
return new DirectAction(mId, mExtras, mLocusId);
}
}
public static final @NonNull Parcelable.Creator<DirectAction> CREATOR =
new Parcelable.Creator<DirectAction>() {
public DirectAction createFromParcel(Parcel in) {
return new DirectAction(in);
}
public DirectAction[] newArray(int size) {
return new DirectAction[size];
}
};
}
|