[automerge] Allow other layouts to be passed into the dream view adatper. 2p: 5e91b7eab3
2p: c8c07f4ac7
Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/17002670 Bug: 221227402 Change-Id: Ia78d9e429ffd3aa1078af803a9c23da3683a3906
This commit is contained in:
@@ -64,36 +64,38 @@
|
||||
app:layout_constraintStart_toStartOf="@+id/preview"
|
||||
app:layout_constraintEnd_toEndOf="@+id/preview"/>
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/icon"
|
||||
android:layout_width="@dimen/dream_item_icon_size"
|
||||
android:layout_height="0dp"
|
||||
android:layout_marginTop="@dimen/dream_item_title_margin_top"
|
||||
android:layout_marginStart="@dimen/dream_item_icon_margin_start"
|
||||
android:layout_marginBottom="@dimen/dream_item_title_margin_bottom"
|
||||
android:gravity="center_vertical"
|
||||
android:importantForAccessibility="no"
|
||||
app:layout_constraintDimensionRatio="1:1"
|
||||
app:layout_constraintHorizontal_chainStyle="packed"
|
||||
app:layout_constraintTop_toBottomOf="@+id/preview"
|
||||
app_layout_constraintEnd_toStartOf="@+id/title_text"
|
||||
app:layout_constraintStart_toStartOf="parent"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/title_text"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="@dimen/dream_item_title_margin_top"
|
||||
android:layout_marginStart="@dimen/dream_item_title_margin_start"
|
||||
android:layout_marginHorizontal="@dimen/dream_item_title_margin_horizontal"
|
||||
android:layout_marginBottom="@dimen/dream_item_title_margin_bottom"
|
||||
android:gravity="center_vertical"
|
||||
android:maxLines="1"
|
||||
android:ellipsize="end"
|
||||
android:textSize="16sp"
|
||||
android:textSize="@dimen/dream_item_title_text_size"
|
||||
android:textColor="@color/dream_card_text_color_state_list"
|
||||
android:drawablePadding="@dimen/dream_item_icon_padding"
|
||||
app:layout_constraintTop_toBottomOf="@+id/preview"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toEndOf="@+id/icon"/>
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintBottom_toTopOf="@id/summary_text"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/summary_text"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginHorizontal="@dimen/dream_item_title_margin_horizontal"
|
||||
android:layout_marginBottom="@dimen/dream_item_title_margin_bottom"
|
||||
android:maxLines="2"
|
||||
android:ellipsize="end"
|
||||
android:textSize="@dimen/dream_item_summary_text_size"
|
||||
android:textColor="@color/dream_card_text_color_state_list"
|
||||
app:layout_constraintTop_toBottomOf="@+id/title_text"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"/>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.cardview.widget.CardView>
|
||||
|
@@ -445,10 +445,12 @@
|
||||
<dimen name="dream_item_corner_radius">28dp</dimen>
|
||||
<dimen name="dream_item_content_padding">8dp</dimen>
|
||||
<dimen name="dream_item_icon_size">20dp</dimen>
|
||||
<dimen name="dream_item_title_margin_top">18dp</dimen>
|
||||
<dimen name="dream_item_summary_text_size">14sp</dimen>
|
||||
<dimen name="dream_item_title_margin_top">16dp</dimen>
|
||||
<dimen name="dream_item_title_margin_bottom">8dp</dimen>
|
||||
<dimen name="dream_item_title_margin_start">18dp</dimen>
|
||||
<dimen name="dream_item_icon_margin_start">10dp</dimen>
|
||||
<dimen name="dream_item_title_text_size">16sp</dimen>
|
||||
<dimen name="dream_item_icon_padding">18dp</dimen>
|
||||
<dimen name="dream_item_title_margin_horizontal">8dp</dimen>
|
||||
<dimen name="dream_preference_card_padding">16dp</dimen>
|
||||
<dimen name="dream_preference_margin_bottom">20dp</dimen>
|
||||
<dimen name="dream_picker_margin_horizontal">48dp</dimen>
|
||||
|
@@ -16,9 +16,11 @@
|
||||
|
||||
package com.android.settings.dream;
|
||||
|
||||
import android.annotation.LayoutRes;
|
||||
import android.content.Context;
|
||||
import android.graphics.drawable.Drawable;
|
||||
import android.graphics.drawable.VectorDrawable;
|
||||
import android.text.TextUtils;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
@@ -39,14 +41,15 @@ import java.util.List;
|
||||
*/
|
||||
public class DreamAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder> {
|
||||
private final List<IDreamItem> mItemList;
|
||||
private final @LayoutRes int mLayoutRes;
|
||||
private int mLastSelectedPos = -1;
|
||||
|
||||
/**
|
||||
* View holder for each {@link IDreamItem}.
|
||||
*/
|
||||
private class DreamViewHolder extends RecyclerView.ViewHolder {
|
||||
private final ImageView mIconView;
|
||||
private final TextView mTitleView;
|
||||
private final TextView mSummaryView;
|
||||
private final ImageView mPreviewView;
|
||||
private final ImageView mPreviewPlaceholderView;
|
||||
private final Button mCustomizeButton;
|
||||
@@ -57,8 +60,8 @@ public class DreamAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder>
|
||||
mContext = context;
|
||||
mPreviewView = view.findViewById(R.id.preview);
|
||||
mPreviewPlaceholderView = view.findViewById(R.id.preview_placeholder);
|
||||
mIconView = view.findViewById(R.id.icon);
|
||||
mTitleView = view.findViewById(R.id.title_text);
|
||||
mSummaryView = view.findViewById(R.id.summary_text);
|
||||
mCustomizeButton = view.findViewById(R.id.customize_button);
|
||||
}
|
||||
|
||||
@@ -68,6 +71,14 @@ public class DreamAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder>
|
||||
public void bindView(IDreamItem item, int position) {
|
||||
mTitleView.setText(item.getTitle());
|
||||
|
||||
final CharSequence summary = item.getSummary();
|
||||
if (TextUtils.isEmpty(summary)) {
|
||||
mSummaryView.setVisibility(View.GONE);
|
||||
} else {
|
||||
mSummaryView.setText(summary);
|
||||
mSummaryView.setVisibility(View.VISIBLE);
|
||||
}
|
||||
|
||||
final Drawable previewImage = item.getPreviewImage();
|
||||
if (previewImage != null) {
|
||||
mPreviewView.setImageDrawable(previewImage);
|
||||
@@ -82,7 +93,10 @@ public class DreamAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder>
|
||||
icon.setTint(Utils.getColorAttrDefaultColor(mContext,
|
||||
com.android.internal.R.attr.colorAccentPrimaryVariant));
|
||||
}
|
||||
mIconView.setImageDrawable(icon);
|
||||
final int iconSize = mContext.getResources().getDimensionPixelSize(
|
||||
R.dimen.dream_item_icon_size);
|
||||
icon.setBounds(0, 0, iconSize, iconSize);
|
||||
mTitleView.setCompoundDrawablesRelative(icon, null, null, null);
|
||||
|
||||
if (item.isActive()) {
|
||||
mLastSelectedPos = position;
|
||||
@@ -104,15 +118,16 @@ public class DreamAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder>
|
||||
}
|
||||
}
|
||||
|
||||
public DreamAdapter(List<IDreamItem> itemList) {
|
||||
public DreamAdapter(@LayoutRes int layoutRes, List<IDreamItem> itemList) {
|
||||
mItemList = itemList;
|
||||
mLayoutRes = layoutRes;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
@Override
|
||||
public RecyclerView.ViewHolder onCreateViewHolder(@NonNull ViewGroup viewGroup, int viewType) {
|
||||
View view = LayoutInflater.from(viewGroup.getContext())
|
||||
.inflate(R.layout.dream_preference_layout, viewGroup, false);
|
||||
.inflate(mLayoutRes, viewGroup, false);
|
||||
return new DreamViewHolder(view, viewGroup.getContext());
|
||||
}
|
||||
|
||||
|
@@ -74,9 +74,10 @@ public class DreamPickerController extends BasePreferenceController {
|
||||
public void displayPreference(PreferenceScreen screen) {
|
||||
super.displayPreference(screen);
|
||||
|
||||
mAdapter = new DreamAdapter(mDreamInfos.stream()
|
||||
.map(DreamItem::new)
|
||||
.collect(Collectors.toList()));
|
||||
mAdapter = new DreamAdapter(R.layout.dream_preference_layout,
|
||||
mDreamInfos.stream()
|
||||
.map(DreamItem::new)
|
||||
.collect(Collectors.toList()));
|
||||
|
||||
final LayoutPreference pref = screen.findPreference(getPreferenceKey());
|
||||
if (pref == null) {
|
||||
@@ -111,6 +112,11 @@ public class DreamPickerController extends BasePreferenceController {
|
||||
return mDreamInfo.caption;
|
||||
}
|
||||
|
||||
@Override
|
||||
public CharSequence getSummary() {
|
||||
return mDreamInfo.description;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Drawable getIcon() {
|
||||
return mDreamInfo.icon;
|
||||
|
@@ -18,23 +18,52 @@ package com.android.settings.dream;
|
||||
|
||||
import android.graphics.drawable.Drawable;
|
||||
|
||||
import androidx.annotation.Nullable;
|
||||
|
||||
/**
|
||||
* Interface representing a dream item to be displayed.
|
||||
*/
|
||||
public interface IDreamItem {
|
||||
/**
|
||||
* Gets the title of this dream.
|
||||
*/
|
||||
CharSequence getTitle();
|
||||
|
||||
/**
|
||||
* Gets the summary of this dream, or null if the dream doesn't provide one.
|
||||
*/
|
||||
@Nullable
|
||||
CharSequence getSummary();
|
||||
|
||||
/**
|
||||
* Gets the icon for the dream.
|
||||
*/
|
||||
Drawable getIcon();
|
||||
|
||||
/**
|
||||
* Callback which can be implemented to handle clicks on this dream.
|
||||
*/
|
||||
void onItemClicked();
|
||||
|
||||
/**
|
||||
* Callback which can be implemented to handle the customization of this dream.
|
||||
*/
|
||||
default void onCustomizeClicked() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the preview image of this dream.
|
||||
*/
|
||||
Drawable getPreviewImage();
|
||||
|
||||
/**
|
||||
* Returns whether or not this dream is currently active.
|
||||
*/
|
||||
boolean isActive();
|
||||
|
||||
/**
|
||||
* Returns whether to allow customization of this dream or not.
|
||||
*/
|
||||
default boolean allowCustomization() {
|
||||
return false;
|
||||
}
|
||||
|
Reference in New Issue
Block a user