blob: bd9dc4ff1e3c133b359e51ae46e3c7fe9e55a4b2 [file] [log] [blame]
/*
* Copyright (C) 2020 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.settingslib.schedulesprovider;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.os.Parcel;
import android.os.Parcelable;
import android.text.TextUtils;
import androidx.annotation.NonNull;
/**
* Schedule data item containing the schedule title text, the summary text which is displayed on the
* summary of the Settings preference and a {@link PendingIntent} which Settings will launch
* when the user clicks on the preference.
*/
public class ScheduleInfo implements Parcelable {
private static final String TAG = "ScheduleInfo";
private final String mTitle;
private final String mSummary;
private final PendingIntent mPendingIntent;
public ScheduleInfo(Builder builder) {
mTitle = builder.mTitle;
mSummary = builder.mSummary;
mPendingIntent = builder.mPendingIntent;
}
private ScheduleInfo(Parcel in) {
mTitle = in.readString();
mSummary = in.readString();
mPendingIntent = in.readParcelable(PendingIntent.class.getClassLoader());
}
/**
* Returns the title text.
*/
public String getTitle() {
return mTitle;
}
/**
* Returns the summary text.
*/
public String getSummary() {
return mSummary;
}
/**
* Returns a {@link PendingIntent} which Settings will launch when the user clicks on a
* schedule preference.
*/
public PendingIntent getPendingIntent() {
return mPendingIntent;
}
/**
* Verify the member variables are valid.
*
* @return {@code true} if all member variables are valid.
*/
public boolean isValid() {
return !TextUtils.isEmpty(mTitle) && !TextUtils.isEmpty(mSummary)
&& (mPendingIntent != null);
}
@Override
public void writeToParcel(Parcel dest, int flags) {
dest.writeString(mTitle);
dest.writeString(mSummary);
dest.writeParcelable(mPendingIntent, flags);
}
@Override
public int describeContents() {
return 0;
}
public static final Creator<ScheduleInfo> CREATOR = new Creator<ScheduleInfo>() {
@Override
public ScheduleInfo createFromParcel(Parcel in) {
return new ScheduleInfo(in);
}
@Override
public ScheduleInfo[] newArray(int size) {
return new ScheduleInfo[size];
}
};
@NonNull
@Override
public String toString() {
return "title: " + mTitle + ", summary: " + mSummary + ", pendingIntent: " + mPendingIntent;
}
/**
* A simple builder for {@link ScheduleInfo}.
*/
public static class Builder {
private String mTitle;
private String mSummary;
private PendingIntent mPendingIntent;
/**
* Sets the title.
*
* @param title The title of the preference item.
* @return This instance.
*/
public Builder setTitle(@NonNull String title) {
mTitle = title;
return this;
}
/**
* Sets the summary.
*
* @param summary The summary of the preference summary.
* @return This instance.
*/
public Builder setSummary(@NonNull String summary) {
mSummary = summary;
return this;
}
/**
* Sets the {@link PendingIntent}.
* <p>The {@link PendingIntent} should be created with
* {@link PendingIntent#getActivity(Context, int, Intent, int)}.
*
* @param pendingIntent The pending intent to send when the user clicks the preference.
* @return This instance.
*/
public Builder setPendingIntent(@NonNull PendingIntent pendingIntent) {
mPendingIntent = pendingIntent;
return this;
}
/**
* Creates an instance of {@link ScheduleInfo}.
*
* @return The instance of {@link ScheduleInfo}.
*/
public ScheduleInfo build() {
return new ScheduleInfo(this);
}
}
}