mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-24 08:47:46 +00:00
810afe8e7e
Force dark theme for media send activity.
13 lines
296 B
Java
13 lines
296 B
Java
package org.thoughtcrime.securesms.util;
|
|
|
|
import android.app.Activity;
|
|
|
|
import network.loki.messenger.R;
|
|
|
|
public class DynamicNoActionBarTheme extends DynamicTheme {
|
|
@Override
|
|
protected int getSelectedTheme(Activity activity) {
|
|
return R.style.Theme_TextSecure_DayNight_NoActionBar;
|
|
}
|
|
}
|