-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
SamsungDeveloper
committed
Dec 10, 2012
1 parent
a0bee0d
commit 4bf3e7d
Showing
1,715 changed files
with
45,359 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.samsung.photodesk" | ||
android:versionCode="5" | ||
android:versionName="1.0.4" > | ||
|
||
<uses-sdk android:minSdkVersion="14" /> | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | ||
<uses-permission android:name="android.permission.INTERNET"/> | ||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> | ||
<uses-permission android:name="android.permission.RECORD_AUDIO"/> | ||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | ||
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" /> | ||
<uses-permission android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT"/> | ||
<uses-permission android:name="android.permission.GET_TASKS"/> | ||
|
||
<application | ||
android:icon="@drawable/ic_launcher" | ||
android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen" | ||
android:label="@string/app_name" | ||
android:logo="@drawable/main_actionbar_icon_album" | ||
android:hardwareAccelerated="true" | ||
android:name=".PhotoDeskApplication" | ||
android:largeHeap="true" | ||
android:debuggable="true"> | ||
|
||
<uses-library android:name="com.google.android.maps"/> | ||
<activity android:name=".Intro" > | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
<activity android:name=".PhotoDeskActivity" > | ||
<intent-filter> | ||
<action android:name="android.intent.action.CREATE_SHORTCUT" /> | ||
<action android:name="android.intent.action.GET_CONTENT" /> | ||
<category android:name="android.intent.category.DEFAULT" /> | ||
<data android:mimeType="image/jpeg" /> | ||
</intent-filter> | ||
</activity> | ||
|
||
<activity android:name=".ImageViewActivity" > | ||
<intent-filter> | ||
<action android:name="android.intent.action.VIEW" /> | ||
|
||
<category android:name="android.intent.category.DEFAULT" /> | ||
|
||
<data android:mimeType="vnd.android.cursor.dir/image" /> | ||
<data android:mimeType="vnd.android.cursor.dir/video" /> | ||
</intent-filter> | ||
<intent-filter> | ||
<action android:name="android.intent.action.VIEW" /> | ||
<action android:name="com.android.camera.action.REVIEW" /> | ||
|
||
<category android:name="android.intent.category.DEFAULT" /> | ||
<category android:name="android.intent.category.BROWSABLE" /> | ||
|
||
<data android:scheme="http" /> | ||
<data android:scheme="https" /> | ||
<data android:scheme="content" /> | ||
<data android:scheme="file" /> | ||
<data android:mimeType="image/bmp" /> | ||
<data android:mimeType="image/jpeg" /> | ||
<data android:mimeType="image/jpg" /> | ||
<data android:mimeType="image/gif" /> | ||
<data android:mimeType="image/png" /> | ||
<data android:mimeType="image/x-ms-bmp" /> | ||
<data android:mimeType="image/vnd.wap.wbmp" /> | ||
|
||
</intent-filter> | ||
</activity> | ||
<activity android:name=".editor.ImageEditorActivity" | ||
android:configChanges="orientation|screenSize" | ||
android:hardwareAccelerated="false" ></activity> | ||
<activity android:name=".editor.AnimationImagePlayerActivity" | ||
android:configChanges="orientation|screenSize"> </activity> | ||
<activity android:name=".editor.EditorSettingActivity"> </activity> | ||
<activity android:name=".SettingActivity"> </activity> | ||
<activity android:name=".ThemeSetActivity"> </activity> | ||
<activity android:name=".HelpInfoActivity"> </activity> | ||
<activity android:name=".HiddenFolderActivity"></activity> | ||
<activity android:name=".MapViewEdit"></activity> | ||
|
||
<activity android:name=".PhotoDeskSignatureRegistration" | ||
android:label="@string/signature_registration" | ||
android:theme="@style/Theme.CustomDialog" > | ||
|
||
<!-- android:theme="@android:style/Theme.Dialog" > --> | ||
</activity> | ||
<activity | ||
android:name=".PhotoDeskSignatureVerification" | ||
android:label="@string/signature_verification" | ||
android:theme="@style/Theme.CustomDialog" > | ||
|
||
<!-- android:theme="@android:style/Theme.Dialog" > --> | ||
</activity> | ||
|
||
|
||
<activity android:name="com.sec.photodesk.MapSelectedItemActivity"> </activity> | ||
<activity android:name=".SlideShowActivity" android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" /> | ||
|
||
<receiver android:name=".util.BroadcastReceiverUtil"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MEDIA_CHECKING" /> | ||
<action android:name="android.intent.action.MEDIA_MOUNTED" /> | ||
<action android:name="android.intent.action.MEDIA_UNMOUNTED" /> | ||
<action android:name="android.intent.action.MEDIA_REMOVED" /> | ||
<action android:name="android.intent.action.MEDIA_EJECT" /> | ||
<action android:name="android.intent.action.MEDIA_SCANNER_STARTED" /> | ||
<action android:name="android.intent.action.MEDIA_SCANNER_FINISHED" /> | ||
<action android:name="android.intent.action.MEDIA_SCANNER_SCAN_FILE" /> | ||
|
||
<data android:scheme="file" /> | ||
</intent-filter> | ||
</receiver> | ||
</application> | ||
|
||
</manifest> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<lint> | ||
</lint> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# This file is automatically generated by Android Tools. | ||
# Do not modify this file -- YOUR CHANGES WILL BE ERASED! | ||
# | ||
# This file must be checked in Version Control Systems. | ||
# | ||
# To customize properties used by the Ant build system edit | ||
# "ant.properties", and override values to adapt the script to your | ||
# project structure. | ||
# | ||
# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): | ||
#proguard.config=${sdk.dir}\tools\proguard\proguard-android.txt:proguard-project.txt | ||
|
||
# Project target. | ||
target=Google Inc.:Google APIs:14 | ||
android.library=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<alpha xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:duration="300" | ||
android:fromAlpha="0.0" | ||
android:toAlpha="1.0" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<alpha xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:duration="300" | ||
android:fromAlpha="1.0" | ||
android:toAlpha="0.0" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<set xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<translate android:fromXDelta="0" android:toXDelta="-100%" | ||
android:duration="@android:integer/config_shortAnimTime" /> | ||
</set> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<set xmlns:android="http://schemas.android.com/apk/res/android"> | ||
|
||
<alpha | ||
android:interpolator="@android:anim/decelerate_interpolator" | ||
android:fromAlpha="1.0" android:toAlpha="0.0" | ||
android:duration="400" | ||
/> | ||
</set> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<set xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<scale | ||
android:fromXScale="0.3" android:toXScale="1.0" | ||
android:fromYScale="0.3" android:toYScale="1.0" | ||
android:pivotX="50%" android:pivotY="100%" | ||
android:duration="@android:integer/config_shortAnimTime" | ||
/> | ||
<alpha | ||
android:interpolator="@android:anim/decelerate_interpolator" | ||
android:fromAlpha="0.0" android:toAlpha="1.0" | ||
android:duration="@android:integer/config_shortAnimTime" | ||
/> | ||
</set> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<set xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<scale | ||
android:fromXScale="0.3" android:toXScale="1.0" | ||
android:fromYScale="0.3" android:toYScale="1.0" | ||
android:pivotX="0%" android:pivotY="50%" | ||
android:duration="@android:integer/config_shortAnimTime" | ||
|
||
/> | ||
<alpha | ||
android:interpolator="@android:anim/decelerate_interpolator" | ||
android:fromAlpha="0.0" android:toAlpha="1.0" | ||
android:duration="@android:integer/config_shortAnimTime" | ||
|
||
/> | ||
</set> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<set xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<scale | ||
android:fromXScale="0.3" android:toXScale="1.0" | ||
android:fromYScale="0.3" android:toYScale="1.0" | ||
android:pivotX="100%" android:pivotY="50%" | ||
android:duration="@android:integer/config_shortAnimTime" | ||
/> | ||
<alpha | ||
android:interpolator="@android:anim/decelerate_interpolator" | ||
android:fromAlpha="0.0" android:toAlpha="1.0" | ||
android:duration="@android:integer/config_shortAnimTime" | ||
/> | ||
</set> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<set xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<scale | ||
android:fromXScale="0.3" android:toXScale="1.0" | ||
android:fromYScale="0.3" android:toYScale="1.0" | ||
android:pivotX="50%" android:pivotY="0%" | ||
android:duration="@android:integer/config_shortAnimTime" | ||
/> | ||
<alpha | ||
android:interpolator="@android:anim/decelerate_interpolator" | ||
android:fromAlpha="0.0" android:toAlpha="1.0" | ||
android:duration="@android:integer/config_shortAnimTime" | ||
/> | ||
</set> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<set xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<scale | ||
android:fromXScale="0.3" android:toXScale="1.0" | ||
android:fromYScale="0.3" android:toYScale="1.0" | ||
android:pivotX="0%" android:pivotY="0%" | ||
android:duration="@android:integer/config_shortAnimTime" | ||
/> | ||
<alpha | ||
android:interpolator="@android:anim/decelerate_interpolator" | ||
android:fromAlpha="0.0" android:toAlpha="1.0" | ||
android:duration="@android:integer/config_shortAnimTime" | ||
/> | ||
</set> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<set xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<scale | ||
android:fromXScale="0.3" android:toXScale="1.0" | ||
android:fromYScale="0.3" android:toYScale="1.0" | ||
android:pivotX="100%" android:pivotY="0%" | ||
android:duration="@android:integer/config_shortAnimTime" | ||
/> | ||
<alpha | ||
android:interpolator="@android:anim/decelerate_interpolator" | ||
android:fromAlpha="0.0" android:toAlpha="1.0" | ||
android:duration="@android:integer/config_shortAnimTime" | ||
/> | ||
</set> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<alpha xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:duration="800" | ||
android:fromAlpha="0.0" | ||
android:toAlpha="1.0" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<alpha xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:duration="800" | ||
android:fromAlpha="1.0" | ||
android:toAlpha="0.0" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<set xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<scale | ||
android:fromXScale="1.1" android:toXScale="1.0" | ||
android:fromYScale="1.1" android:toYScale="1.0" | ||
android:pivotX="50%" android:pivotY="100%" | ||
android:duration="@android:integer/config_longAnimTime" | ||
/> | ||
<alpha | ||
android:interpolator="@android:anim/decelerate_interpolator" | ||
android:fromAlpha="0.0" android:toAlpha="1.0" | ||
android:duration="@android:integer/config_longAnimTime" | ||
/> | ||
</set> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<set xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<scale | ||
android:fromXScale="1.1" android:toXScale="1.0" | ||
android:fromYScale="1.1" android:toYScale="1.0" | ||
android:pivotX="50%" android:pivotY="0%" | ||
android:duration="@android:integer/config_longAnimTime" | ||
/> | ||
<alpha | ||
android:interpolator="@android:anim/decelerate_interpolator" | ||
android:fromAlpha="0.0" android:toAlpha="1.0" | ||
android:duration="@android:integer/config_longAnimTime" | ||
/> | ||
</set> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<set xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<scale | ||
android:fromXScale="1.0" android:toXScale="0.3" | ||
android:fromYScale="1.0" android:toYScale="0.3" | ||
android:pivotX="50%" android:pivotY="0%" | ||
android:duration="@android:integer/config_shortAnimTime" | ||
/> | ||
<alpha | ||
android:interpolator="@android:anim/accelerate_interpolator" | ||
android:fromAlpha="1.0" android:toAlpha="0.0" | ||
android:duration="@android:integer/config_shortAnimTime" | ||
/> | ||
</set> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<set xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<scale | ||
android:fromXScale="1.0" android:toXScale="0.3" | ||
android:fromYScale="1.0" android:toYScale="0.3" | ||
android:pivotX="100%" android:pivotY="0%" | ||
android:duration="@android:integer/config_shortAnimTime" | ||
/> | ||
<alpha | ||
android:interpolator="@android:anim/accelerate_interpolator" | ||
android:fromAlpha="1.0" android:toAlpha="0.0" | ||
android:duration="@android:integer/config_shortAnimTime" | ||
/> | ||
</set> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<set xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<scale | ||
android:fromXScale="1.0" android:toXScale="0.3" | ||
android:fromYScale="1.0" android:toYScale="0.3" | ||
android:pivotX="0%" android:pivotY="0%" | ||
android:duration="@android:integer/config_shortAnimTime" | ||
/> | ||
<alpha | ||
android:interpolator="@android:anim/accelerate_interpolator" | ||
android:fromAlpha="1.0" android:toAlpha="0.0" | ||
android:duration="@android:integer/config_shortAnimTime" | ||
/> | ||
</set> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<set xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<scale | ||
android:fromXScale="1.0" android:toXScale="0.3" | ||
android:fromYScale="1.0" android:toYScale="0.3" | ||
android:pivotX="50%" android:pivotY="100%" | ||
android:duration="@android:integer/config_shortAnimTime" | ||
/> | ||
<alpha | ||
android:interpolator="@android:anim/accelerate_interpolator" | ||
android:fromAlpha="1.0" android:toAlpha="0.0" | ||
android:duration="@android:integer/config_shortAnimTime" | ||
/> | ||
</set> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<set xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<scale | ||
android:fromXScale="1.0" android:toXScale="0.3" | ||
android:fromYScale="1.0" android:toYScale="0.3" | ||
android:pivotX="100%" android:pivotY="100%" | ||
android:duration="@android:integer/config_shortAnimTime" | ||
/> | ||
<alpha | ||
android:interpolator="@android:anim/accelerate_interpolator" | ||
android:fromAlpha="1.0" android:toAlpha="0.0" | ||
android:duration="@android:integer/config_shortAnimTime" | ||
/> | ||
</set> |
Oops, something went wrong.