mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-20 08:39:22 +01:00
Implement new Multiselect UX and groundwork for Multiforward.
This commit is contained in:
committed by
Cody Henthorne
parent
655e43a079
commit
28abc1e4ff
@@ -27,6 +27,10 @@ public interface ChatWallpaper extends Parcelable {
|
||||
|
||||
void loadInto(@NonNull ImageView imageView);
|
||||
|
||||
default boolean isPhoto() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@NonNull Wallpaper serialize();
|
||||
|
||||
enum BuiltIns {
|
||||
|
||||
@@ -42,6 +42,11 @@ final class UriChatWallpaper implements ChatWallpaper, Parcelable {
|
||||
return dimLevelInDarkTheme;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isPhoto() {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void loadInto(@NonNull ImageView imageView) {
|
||||
GlideApp.with(imageView)
|
||||
|
||||
Reference in New Issue
Block a user