summaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorShih-chia Cheng <shihchia@google.com>2011-08-03 12:10:59 +0800
committerShih-chia Cheng <shihchia@google.com>2011-08-09 16:23:48 +0800
commitfe7b065c18808ac3bd15ea5a1248b3af66b50fb7 (patch)
tree27e7a95af66d7eff1074da0be40dcfd1b268d51f /AndroidManifest.xml
parent0202160743a65ef1b6f946266390351de4aaed73 (diff)
downloadVideoEditor-fe7b065c18808ac3bd15ea5a1248b3af66b50fb7.tar.gz
New UI: Re-org action bar icons, menu options, and title picker.
This patch does the following changes: 1. Group video/image capturing and import functions together under the same menu 2. Group project related operations including "change project name", "export movie", and "delete project" together under the same menu 3. Change the interaction flow of applying effects onto media items: 3.1 Cluster effect operations under the same menu (including adding transitions) 3.2 In the effects menu, effects are grouped as a sigle selection checkbox group (not including transitions) 3.3 Put other functions such as "remove" under "more menu" 4. Show text along with menu icons where there is enough room on the screen 5. Change the interaction flow of adding title overlay on media items: title operations are put in a separate menu and its menu items are dynamically adjusted. Title picker are also re-implemented and make its layout work on both portrait and landscape modes This patch also does a huge refactoring including extracting duplicate code, removing dead code, simplying user interaction by removing redundant activity/adapter EffectsActivity and EffectsAdapter. Bug: 5026629 Change-Id: I846225994175e737690c6d2d7d7708909efba918
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml16
1 files changed, 8 insertions, 8 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index ae9c18d..964f852 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -34,19 +34,19 @@
</intent-filter>
</activity>
- <activity android:name=".OverlaysActivity"
- android:theme="@android:style/Theme.Holo.DialogWhenLarge"
- android:label="@string/overlays_select_type">
+ <activity android:name=".OverlayTitleEditor"
+ android:theme="@android:style/Theme.Holo.Dialog"
+ android:label="@string/overlay_title">
<intent-filter>
- <action android:name="android.intent.action.PICK" />
+ <action android:name="android.intent.action.EDIT" />
</intent-filter>
</activity>
- <activity android:name=".OverlayTitleActivity"
- android:theme="@android:style/Theme.Holo.Dialog"
- android:label="@string/overlay_title">
+ <activity android:name=".OverlayTitleTemplatePicker"
+ android:theme="@android:style/Theme.Holo.DialogWhenLarge"
+ android:label="@string/overlays_select_type">
<intent-filter>
- <action android:name="android.intent.action.EDIT" />
+ <action android:name="android.intent.action.PICK" />
</intent-filter>
</activity>