Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
12 changes: 12 additions & 0 deletions joylink/.classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
<classpathentry kind="lib" path="libs/android-query-full.0.23.16.jar"/>
<classpathentry kind="lib" path="libs/dlcs-stack-v1-0-0.jar"/>
<classpathentry kind="lib" path="libs/umeng_sdk.jar"/>
<classpathentry kind="lib" path="libs/wind-remote-v1-0.jar"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="gen"/>
<classpathentry kind="output" path="bin/classes"/>
</classpath>
33 changes: 33 additions & 0 deletions joylink/.project
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Joylink</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
291 changes: 291 additions & 0 deletions joylink/.settings/org.eclipse.jdt.core.prefs

Large diffs are not rendered by default.

215 changes: 215 additions & 0 deletions joylink/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,215 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.joyplus.joylink"
android:versionCode="3"
android:versionName="0.9.5" >

<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="15" />

<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.BROADCAST_STICKY" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
<uses-permission android:name="android.permission.READ_LOGS" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />

<application
android:name=".App"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".Logo"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".Setting"
android:screenOrientation="portrait"
android:theme="@style/PreferencesTheme">
</activity>
<activity android:name=".ControlSetting"
android:theme="@style/PreferencesTheme">
</activity>
<activity
android:name=".WiFi"
android:screenOrientation="portrait" >
</activity>
<activity
android:name=".Explorer"
android:screenOrientation="portrait" >
</activity>
<activity
android:name=".Z_About_us"
android:screenOrientation="portrait" >
</activity>
<activity
android:name=".Z_About_mianzhe"
android:screenOrientation="portrait" >
</activity>
<activity
android:name=".Z_Pingjia"
android:screenOrientation="portrait" >
</activity>
<activity
android:name=".Z_Sug"
android:screenOrientation="portrait" >
</activity>
<activity
android:name=".Z_Usage"
android:screenOrientation="portrait" >
</activity>
<activity
android:name=".Z_Screen"
android:screenOrientation="portrait" >
</activity>
<activity
android:name=".Tab1"
android:launchMode="singleTask"
android:screenOrientation="portrait" >

</activity>
<activity
android:name=".Tab1_Photo"
android:screenOrientation="portrait" >
</activity>
<activity
android:name=".Tab1_Photo_File"
android:screenOrientation="portrait" >
</activity>
<activity
android:name=".Tab1_Video"
android:screenOrientation="portrait" >
</activity>
<activity
android:name=".Tab1_Video_File"
android:screenOrientation="portrait" >
</activity>
<activity
android:name=".Tab1_Music"
android:screenOrientation="portrait" >
</activity>
<activity
android:name=".Tab1_Music_File"
android:screenOrientation="portrait" >
</activity>
<activity
android:name=".Tab2"
android:screenOrientation="portrait" >
</activity>
<activity
android:name=".ControlKey"
android:screenOrientation="portrait" >
</activity>
<activity
android:name=".Tab2_Mouse"
android:screenOrientation="portrait" >
</activity>
<activity
android:name=".Tab3"
android:screenOrientation="portrait" >
</activity>
<activity
android:name=".PhotoSlideShow"
android:screenOrientation="portrait" >
</activity>
<activity
android:name=".SelectDevice"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Dialog" >
</activity>
<activity
android:name=".WifiPassword"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Dialog" >
</activity>
<activity
android:name=".OtherApp"
android:screenOrientation="portrait" >
</activity>
<activity
android:name=".MusicPlay"
android:screenOrientation="portrait" >
</activity>

<activity
android:name=".weibo.net.WeiboDialog2"
android:screenOrientation="portrait" >
</activity>
<activity
android:name=".weibo.net.WeiboDialog"
android:screenOrientation="portrait" >
</activity>
<activity
android:name=".Video.MovieActivity"
android:label="@string/movie_view_label"
android:screenOrientation="landscape" >
</activity>
<activity
android:name=".ControlTouchpad"
android:screenOrientation="landscape" >
</activity>
<activity
android:name=".ControlMouse"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustNothing" >
</activity>
<activity
android:name=".Dlna.DlnaMusicPlay"
android:screenOrientation="portrait" >
</activity>
<activity
android:name=".Dlna.DlnaPhotoSlideShow"
android:screenOrientation="portrait" >
</activity>

<service
android:name=".Dlna.DlnaSelectDevice"
android:exported="true" >
</service>

<activity
android:name=".Dlna.DlnaVideoPlay"
android:screenOrientation="portrait" >
</activity>
<activity
android:name="com.umeng.fb.ui.SendFeedback"
android:windowSoftInputMode="adjustResize" />
<activity android:name="com.umeng.fb.ui.FeedbackConversations" />
<activity
android:name="com.umeng.fb.ui.FeedbackConversation"
android:configChanges="keyboard" />

<service
android:name="com.umeng.common.net.DownloadingService"
android:exported="true"
android:process=":DownloadingService" >
</service>

<meta-data
android:name="UMENG_APPKEY"
android:value="511116585270151f80000025" >
</meta-data>
</application>

</manifest>
Binary file added joylink/libs/android-query-full.0.23.16.jar
Binary file not shown.
Binary file added joylink/libs/armeabi/libdlcs_dlna.so
Binary file not shown.
Binary file added joylink/libs/dlcs-stack-v1-0-0.jar
Binary file not shown.
Binary file added joylink/libs/umeng_sdk.jar
Binary file not shown.
Binary file added joylink/libs/wind-remote-v1-0.jar
Binary file not shown.
4 changes: 4 additions & 0 deletions joylink/lint.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<lint>
<issue id="NewApi" severity="ignore" />
</lint>
20 changes: 20 additions & 0 deletions joylink/proguard-project.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# To enable ProGuard in your project, edit project.properties
# to define the proguard.config property as described in that file.
#
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in ${sdk.dir}/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the ProGuard
# include property in project.properties.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html

# Add any project specific keep options here:

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
16 changes: 16 additions & 0 deletions joylink/project.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# 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=android-14
android.library.reference.1=../thirdparty/actionbarsherlock
android.library.reference.2=../thirdparty/SlidingMenu-master
21 changes: 21 additions & 0 deletions joylink/res/anim/player_out.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2011 The Android Open Source Project

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->

<alpha xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/linear_interpolator"
android:fromAlpha="1.0"
android:toAlpha="0.0"
android:duration="500"/>
5 changes: 5 additions & 0 deletions joylink/res/anim/slide_in_right.xml
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="50%p" android:toXDelta="0" android:duration="300"/>
<alpha android:fromAlpha="0.0" android:toAlpha="1.0" android:duration="300" />
</set>
5 changes: 5 additions & 0 deletions joylink/res/anim/slide_out_left.xml
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="-50%p" android:duration="300"/>
<alpha android:fromAlpha="1.0" android:toAlpha="0.0" android:duration="300" />
</set>
10 changes: 10 additions & 0 deletions joylink/res/anim/umeng_xp_fade_in.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/decelerate_interpolator" >

<alpha
android:duration="800"
android:fromAlpha="0.0"
android:toAlpha="1.0" />

</set>
10 changes: 10 additions & 0 deletions joylink/res/anim/umeng_xp_fade_out.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/decelerate_interpolator" >

<alpha
android:duration="300"
android:fromAlpha="1.0"
android:toAlpha="0.0" />

</set>
10 changes: 10 additions & 0 deletions joylink/res/anim/umeng_xp_large_gallery_in.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/decelerate_interpolator" >

<alpha
android:duration="500"
android:fromAlpha="0.0"
android:toAlpha="1.0" />

</set>
4 changes: 4 additions & 0 deletions joylink/res/anim/umeng_xp_progressbar.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?><set xmlns:android="http://schemas.android.com/apk/res/android">
<rotate android:duration="1000" android:fromDegrees="0.0" android:pivotX="50%" android:pivotY="50%" android:repeatCount="infinite" android:repeatMode="restart" android:toDegrees="360.0">
</rotate>
</set>
Loading