mirror of
https://github.com/nextcloud/notes-android.git
synced 2024-12-18 08:32:24 +03:00
Use branding color for account switcher dialog
Signed-off-by: alperozturk <alper_ozturk@proton.me>
This commit is contained in:
parent
e7eda9bbbe
commit
43c0e3dbc3
2 changed files with 10 additions and 3 deletions
|
@ -7,6 +7,7 @@
|
||||||
*/
|
*/
|
||||||
package it.niedermann.owncloud.notes.accountswitcher;
|
package it.niedermann.owncloud.notes.accountswitcher;
|
||||||
|
|
||||||
|
|
||||||
import android.app.Dialog;
|
import android.app.Dialog;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
|
@ -21,6 +22,7 @@ import com.bumptech.glide.Glide;
|
||||||
import com.bumptech.glide.request.RequestOptions;
|
import com.bumptech.glide.request.RequestOptions;
|
||||||
import com.google.android.material.dialog.MaterialAlertDialogBuilder;
|
import com.google.android.material.dialog.MaterialAlertDialogBuilder;
|
||||||
|
|
||||||
|
import it.niedermann.owncloud.notes.NotesApplication;
|
||||||
import it.niedermann.owncloud.notes.R;
|
import it.niedermann.owncloud.notes.R;
|
||||||
import it.niedermann.owncloud.notes.branding.BrandedDialogFragment;
|
import it.niedermann.owncloud.notes.branding.BrandedDialogFragment;
|
||||||
import it.niedermann.owncloud.notes.branding.BrandingUtil;
|
import it.niedermann.owncloud.notes.branding.BrandingUtil;
|
||||||
|
@ -107,9 +109,12 @@ public class AccountSwitcherDialog extends BrandedDialogFragment {
|
||||||
dismiss();
|
dismiss();
|
||||||
});
|
});
|
||||||
|
|
||||||
return new MaterialAlertDialogBuilder(requireContext())
|
MaterialAlertDialogBuilder builder = new MaterialAlertDialogBuilder(requireContext())
|
||||||
.setView(binding.getRoot())
|
.setView(binding.getRoot());
|
||||||
.create();
|
|
||||||
|
NotesApplication.brandingUtil().dialog.colorMaterialAlertDialogBackground(requireContext(), builder);
|
||||||
|
|
||||||
|
return builder.create();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static DialogFragment newInstance(long currentAccountId) {
|
public static DialogFragment newInstance(long currentAccountId) {
|
||||||
|
|
|
@ -101,6 +101,7 @@
|
||||||
android:contentDescription="@null"
|
android:contentDescription="@null"
|
||||||
android:focusable="false"
|
android:focusable="false"
|
||||||
android:scaleType="center"
|
android:scaleType="center"
|
||||||
|
app:tint="@color/black"
|
||||||
app:srcCompat="@drawable/ic_person_add_grey600_24dp" />
|
app:srcCompat="@drawable/ic_person_add_grey600_24dp" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
|
@ -131,6 +132,7 @@
|
||||||
android:contentDescription="@null"
|
android:contentDescription="@null"
|
||||||
android:focusable="false"
|
android:focusable="false"
|
||||||
android:scaleType="center"
|
android:scaleType="center"
|
||||||
|
app:tint="@color/black"
|
||||||
app:srcCompat="@drawable/ic_settings_grey600_24dp" />
|
app:srcCompat="@drawable/ic_settings_grey600_24dp" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
|
|
Loading…
Reference in a new issue