summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorzdi <zdi@codeaurora.org>2016-03-07 17:53:57 +0800
committerMichael Bestas <mikeioannina@gmail.com>2016-12-30 20:34:20 +0200
commitf15d01555f6c850c76b0ea0e2c4dc91241d67ee9 (patch)
tree487d1383e9a9147daf725ce0431aa56c263ba9ba /src
parent933165ffb5645c713ad7c7e3aab6248326811e88 (diff)
downloadandroid_packages_apps_Gallery2-f15d01555f6c850c76b0ea0e2c4dc91241d67ee9.tar.gz
android_packages_apps_Gallery2-f15d01555f6c850c76b0ea0e2c4dc91241d67ee9.tar.bz2
android_packages_apps_Gallery2-f15d01555f6c850c76b0ea0e2c4dc91241d67ee9.zip
Gallery2: Modify the UI of audio effect.
Modify the UI of audio effect according to UX specification document. Change-Id: I03b337290f4d8dbf3600ee04c3796a5883c03046 CRs-Fixed: 986763
Diffstat (limited to 'src')
-rw-r--r--src/com/android/gallery3d/app/MovieActivity.java8
-rw-r--r--src/com/android/gallery3d/ui/Knob.java3
2 files changed, 5 insertions, 6 deletions
diff --git a/src/com/android/gallery3d/app/MovieActivity.java b/src/com/android/gallery3d/app/MovieActivity.java
index 3e1aa5323..ad6767f78 100644
--- a/src/com/android/gallery3d/app/MovieActivity.java
+++ b/src/com/android/gallery3d/app/MovieActivity.java
@@ -347,13 +347,13 @@ public class MovieActivity extends Activity {
mSwitch = (ToggleButton) title.findViewById(R.id.audio_effects_switch);
mSwitch.setChecked(enabled);
- mSwitch.setBackgroundResource(enabled ?
+ mSwitch.setButtonDrawable(enabled ?
R.drawable.switch_thumb_activated : R.drawable.switch_thumb_off);
mSwitch.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
- mSwitch.setBackgroundResource(isChecked ?
+ mSwitch.setButtonDrawable(isChecked ?
R.drawable.switch_thumb_activated : R.drawable.switch_thumb_off);
if(mBassBoostEffect != null) {
mBassBoostEffect.setEnabled(isChecked);
@@ -403,7 +403,7 @@ public class MovieActivity extends Activity {
});
mEffectDialog = new AlertDialog.Builder(MovieActivity.this,
- AlertDialog.THEME_HOLO_DARK)
+ AlertDialog.THEME_DEVICE_DEFAULT_LIGHT)
.setCustomTitle(title)
.setView(content)
.setPositiveButton(R.string.ok, new DialogInterface.OnClickListener() {
@@ -436,8 +436,6 @@ public class MovieActivity extends Activity {
.setCancelable(false)
.create();
mEffectDialog.show();
- mEffectDialog.findViewById(com.android.internal.R.id.titleDivider)
- .setBackgroundResource(R.color.highlight);
}
}
diff --git a/src/com/android/gallery3d/ui/Knob.java b/src/com/android/gallery3d/ui/Knob.java
index 179023e02..b427c2f1e 100644
--- a/src/com/android/gallery3d/ui/Knob.java
+++ b/src/com/android/gallery3d/ui/Knob.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2013, The Linux Foundation. All rights reserved.
+ * Copyright (c) 2013, 2016, The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
@@ -114,6 +114,7 @@ public class Knob extends FrameLayout {
mDisabledColor = res.getColor(R.color.disabled_knob);
((ImageView) findViewById(R.id.knob_foreground)).setImageResource(foreground);
+ ((ImageView) findViewById(R.id.knob_foreground)).setAlpha(0.35f);
mLabelTV = (TextView) findViewById(R.id.knob_label);
mLabelTV.setText(label);