Use MediaProjectionManager to determine whether or not screencasting is active, when it changes, and to stop casting. Also: - Implement hashCode/equals on MediaProjectionInfo - Fix unintentional recursion in the service. Bug:16488053 Change-Id: Icd1a88f23bbdf1d4c1915b30cb2508f8fe9d6d7e
94 lines
2.6 KiB
Java
94 lines
2.6 KiB
Java
/*
|
|
* Copyright (C) 2014 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.media.projection;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
import android.os.UserHandle;
|
|
|
|
import java.util.Objects;
|
|
|
|
/** @hide */
|
|
public final class MediaProjectionInfo implements Parcelable {
|
|
private final String mPackageName;
|
|
private final UserHandle mUserHandle;
|
|
|
|
public MediaProjectionInfo(String packageName, UserHandle handle) {
|
|
mPackageName = packageName;
|
|
mUserHandle = handle;
|
|
}
|
|
|
|
public MediaProjectionInfo(Parcel in) {
|
|
mPackageName = in.readString();
|
|
mUserHandle = UserHandle.readFromParcel(in);
|
|
}
|
|
|
|
public String getPackageName() {
|
|
return mPackageName;
|
|
}
|
|
|
|
public UserHandle getUserHandle() {
|
|
return mUserHandle;
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object o) {
|
|
if (o instanceof MediaProjectionInfo) {
|
|
final MediaProjectionInfo other = (MediaProjectionInfo) o;
|
|
return Objects.equals(other.mPackageName, mPackageName)
|
|
&& Objects.equals(other.mUserHandle, mUserHandle);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public int hashCode() {
|
|
return Objects.hash(mPackageName, mUserHandle);
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "MediaProjectionInfo{mPackageName="
|
|
+ mPackageName + ", mUserHandle="
|
|
+ mUserHandle + "}";
|
|
}
|
|
|
|
@Override
|
|
public int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
@Override
|
|
public void writeToParcel(Parcel out, int flags) {
|
|
out.writeString(mPackageName);
|
|
UserHandle.writeToParcel(mUserHandle, out);
|
|
}
|
|
|
|
public static final Parcelable.Creator<MediaProjectionInfo> CREATOR =
|
|
new Parcelable.Creator<MediaProjectionInfo>() {
|
|
@Override
|
|
public MediaProjectionInfo createFromParcel(Parcel in) {
|
|
return new MediaProjectionInfo (in);
|
|
}
|
|
|
|
@Override
|
|
public MediaProjectionInfo[] newArray(int size) {
|
|
return new MediaProjectionInfo[size];
|
|
}
|
|
};
|
|
}
|