lizhihui

first

Showing 685 changed files with 8967 additions and 0 deletions
1 +bin
2 +gen
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<classpath>
3 + <classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
4 + <classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
5 + <classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
6 + <classpathentry kind="src" path="src"/>
7 + <classpathentry kind="src" path="gen"/>
8 + <classpathentry kind="output" path="bin/classes"/>
9 +</classpath>
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<projectDescription>
3 + <name>EasyGame_demo</name>
4 + <comment></comment>
5 + <projects>
6 + </projects>
7 + <buildSpec>
8 + <buildCommand>
9 + <name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
10 + <arguments>
11 + </arguments>
12 + </buildCommand>
13 + <buildCommand>
14 + <name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
15 + <arguments>
16 + </arguments>
17 + </buildCommand>
18 + <buildCommand>
19 + <name>org.eclipse.jdt.core.javabuilder</name>
20 + <arguments>
21 + </arguments>
22 + </buildCommand>
23 + <buildCommand>
24 + <name>com.android.ide.eclipse.adt.ApkBuilder</name>
25 + <arguments>
26 + </arguments>
27 + </buildCommand>
28 + </buildSpec>
29 + <natures>
30 + <nature>com.android.ide.eclipse.adt.AndroidNature</nature>
31 + <nature>org.eclipse.jdt.core.javanature</nature>
32 + </natures>
33 +</projectDescription>
1 +eclipse.preferences.version=1
2 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
3 +org.eclipse.jdt.core.compiler.compliance=1.6
4 +org.eclipse.jdt.core.compiler.source=1.6
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 + package="com.platform7725.qile.tfws"
4 + android:versionCode="10001"
5 + android:versionName="1.0" >
6 +
7 + <uses-sdk
8 + android:minSdkVersion="14"
9 + android:targetSdkVersion="19" />
10 +<!-- P7725 PERMISSION START. -->
11 + <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
12 + <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
13 + <uses-permission android:name="android.permission.READ_PHONE_STATE" />
14 + <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
15 + <uses-permission android:name="android.permission.INTERNET" />
16 + <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
17 + <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
18 + <uses-permission android:name="android.permission.VIBRATE" />
19 + <uses-permission android:name="com.android.vending.BILLING" />
20 + <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />
21 + <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
22 + <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
23 + <uses-permission android:name="com.library.permission.ACCESS_DOWNLOAD_MANAGER" />
24 + <uses-permission android:name="com.library.permission.ACCESS_DOWNLOAD_MANAGER_ADVANCED" />
25 + <uses-permission android:name="com.library.permission.SEND_DOWNLOAD_COMPLETED_INTENTS" />
26 + <uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" />
27 + <uses-permission android:name="android.permission.WAKE_LOCK" />
28 +
29 + <permission
30 + android:name="com.library.permission.ACCESS_DOWNLOAD_MANAGER"
31 + android:description="@string/permdesc_downloadManager"
32 + android:label="@string/permlab_downloadManager"
33 + android:protectionLevel="normal" />
34 + <permission
35 + android:name="com.library.permission.ACCESS_DOWNLOAD_MANAGER_ADVANCED"
36 + android:description="@string/permdesc_downloadManagerAdvanced"
37 + android:label="@string/permlab_downloadManagerAdvanced"
38 + android:protectionLevel="normal" />
39 + <permission
40 + android:name="com.library.permission.SEND_DOWNLOAD_COMPLETED_INTENTS"
41 + android:description="@string/permdesc_downloadCompletedIntent"
42 + android:label="@string/permlab_downloadCompletedIntent"
43 + android:protectionLevel="normal" />
44 + <!-- P7725 PERMISSION END. -->
45 +
46 +
47 + <application
48 + android:allowBackup="true"
49 + android:icon="@drawable/icon"
50 + android:label="@string/app_name"
51 + android:theme="@style/AppTheme" >
52 + <activity
53 + android:name="com.youai.easygame.MainActivity"
54 + android:label="@string/app_name" >
55 + <intent-filter>
56 + <action android:name="android.intent.action.MAIN" />
57 +
58 + <category android:name="android.intent.category.LAUNCHER" />
59 + </intent-filter>
60 + </activity>
61 +
62 + <!-- P7725 ACTIVITY,SERVER,RECEIVER START -->
63 +
64 + <activity
65 + android:name="com.platform7725.gamesdk.CustomerServiceActivity"
66 + android:configChanges="keyboardHidden|orientation"
67 + android:theme="@style/p7725_full_screen" />
68 + <activity
69 + android:name="com.platform7725.gamesdk.DepositsActivity"
70 + android:configChanges="keyboardHidden|orientation"
71 + android:theme="@style/p7725_full_screen"
72 + android:windowSoftInputMode="adjustResize" />
73 + <activity
74 + android:name="com.platform7725.gamesdk.LoginProActivity"
75 + android:theme="@style/LoginPro" />
76 + <activity
77 + android:name="com.platform7725.gamesdk.LoginActivity"
78 + android:theme="@style/Login" />
79 + <activity
80 + android:name="com.platform7725.gamesdk.UserListActivity"
81 + android:theme="@style/UserList" />
82 + <activity
83 + android:name="com.platform7725.gamesdk.ExitActivity"
84 + android:theme="@style/Login" />
85 + <activity
86 + android:name="com.platform7725.gamesdk.ShareByFacebookActivity"
87 + android:theme="@style/UserList" />
88 + <activity
89 + android:name="com.platform7725.gamesdk.ShareByLINEActivity"
90 + android:configChanges="keyboardHidden|orientation"
91 + android:theme="@style/p7725_full_screen" />
92 + <activity
93 + android:name="com.platform7725.gamesdk.ClauseActivity"
94 + android:configChanges="keyboardHidden|orientation"
95 + android:theme="@style/p7725_full_screen" />
96 +
97 + <receiver android:name="com.platform7725.gamesdk.receive.OtopGameReceiver" >
98 + <intent-filter>
99 + <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
100 + <action android:name="android.intent.action.BATTERY_CHANGED" />
101 + </intent-filter>
102 + </receiver>
103 + <receiver
104 + android:name="com.appsflyer.MultipleInstallBroadcastReceiver"
105 + android:exported="true" >
106 + <intent-filter>
107 + <action android:name="com.android.vending.INSTALL_REFERRER" />
108 + </intent-filter>
109 + </receiver>
110 + <receiver
111 + android:name="com.platform7725.gamesdk.InstallReceiver"
112 + android:enabled="true"
113 + android:exported="true" >
114 + <intent-filter>
115 + <action android:name="com.android.vending.INSTALL_REFERRER" />
116 + </intent-filter>
117 + </receiver>
118 + <receiver
119 + android:name="com.mobileapptracker.Tracker"
120 + android:exported="true" >
121 + <intent-filter>
122 + <action android:name="com.android.vending.INSTALL_REFERRER" />
123 + </intent-filter>
124 + </receiver>
125 +
126 + <service android:name="com.kuadcpa.OpenUDID_service" >
127 + <intent-filter>
128 + <action android:name="org.openudid.GETUDID" />
129 + </intent-filter>
130 + </service>
131 + <service android:name="com.platform7725.gamesdk.service.OtopGameService" >
132 + <intent-filter>
133 + <action android:name="com.platform7725.gamesdk.service.NOTICES_FILTER" />
134 + </intent-filter>
135 + </service>
136 +
137 +
138 + <activity
139 + android:name="com.facebook.LoginActivity"
140 + android:label="@string/com_7725_app_name"
141 + android:theme="@android:style/Theme.Translucent.NoTitleBar" />
142 +
143 + <meta-data
144 + android:name="com.facebook.sdk.ApplicationId"
145 + android:value="@string/com_7725_facebookSdkApplicationId" />
146 + <meta-data
147 + android:name="com_7725_payment_flag"
148 + android:value="gash" />
149 + <meta-data android:name="com.google.android.gms.version"
150 + android:value="@integer/google_play_services_version" />
151 + <!-- P7725 ACTIVITY、SERVER、RECEIVER END. -->
152 +
153 +
154 + <!-- 下載相關的 Begin -->
155 + <activity
156 + android:name="com.library.providers.downloads.ui.DownloadListActivity"
157 + android:launchMode="singleTask"
158 + android:theme="@style/p7725_full_screen" />
159 + <activity
160 + android:name="com.p7725.downloadmanager.DownloadManagerActivity"
161 + android:theme="@style/p7725_full_screen" />
162 +
163 + <provider
164 + android:name="com.library.providers.downloads.DownloadProvider"
165 + android:authorities="com.platform7725.gamesdk"
166 + android:exported="false" />
167 +
168 + <service android:name="com.library.providers.downloads.DownloadService" />
169 +
170 + <receiver
171 + android:name="com.library.providers.downloads.DownloadReceiver"
172 + android:exported="false" >
173 + <intent-filter>
174 + <action android:name="android.intent.action.BOOT_COMPLETED" />
175 + <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
176 + </intent-filter>
177 + </receiver>
178 + <!-- 下載相關的 End -->
179 +
180 + </application>
181 +
182 +</manifest>
1 +<!DOCTYPE HTML>
2 +<html>
3 +<head>
4 +<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5 +<title>error</title>
6 +<style type="text/css">
7 +section{ width:100%; margin:0 auto; max-width:550px;}
8 +section img { max-width:100%; width:100%; height:auto; margin:15% auto}
9 +section a{ float:right; width:10%}
10 +</style>
11 +
12 +</head>
13 +
14 +<body>
15 + <section>
16 + <a href="#" title="" onClick="android.closeButton();"><img src="images/close1.png"></a>
17 + <img src="images/error1.png" />
18 + </section>
19 +
20 +</body>
21 +</html>
1 +getSdkRuntimeConf_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=getSdkRuntimeConf&pvc=3
2 +heartbeatReporting_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=heartbeatReporting&pvc=3
3 +bindingCheck_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=bindingCheck&pvc=3
4 +setRole_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=setRole&pvc=3
5 +setServer_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=setServer&pvc=3
6 +openid_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=openLogin&pvc=3
7 +login_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=login&pvc=3
8 +register_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=regist&pvc=3
9 +register_quick_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=autoRegist&pvc=3
10 +login_auto_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=autoLogin&pvc=3
11 +change_password_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=changePassword&pvc=3
12 +change_password_auto_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=changeAutoPassword&pvc=3
13 +forget_password_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=forgetPassword&pvc=3
14 +ignore_change_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=updatePasswordStatus&pvc=3
15 +billing_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=billingOrderComfirm&pvc=3
16 +billingCancelOrder_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=billingCancelOrder&pvc=3
17 +deposit_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=payment&pvc=3
18 +ads_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?a=adTracking&pvc=3
19 +clock_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=getAlarmClockAdv&pvc=3&game=
20 +customer_url=http://sdk.easygame.hk/mgame_sdk_api/?m=service&pvc=3
21 +deposit_head_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=instruct&pvc=3
22 +agreement_url=http://sdk.easygame.hk/mgame_sdk_api/?a=clause&pvc=3&game=
23 +api_time_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?a=getTimestamp&pvc=3&game=
24 +webLogin_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=openLoginByWeb&pvc=3
25 +binding_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=bindingAutoRegs&pvc=3
26 +deposits_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=payRecord&pvc=3
27 +game_list_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=games&pvc=3
28 +game_detail_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=gameInfo&pvc=3
29 +ad_list_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=advList&pvc=3
30 +binding_account_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=bindingAccount&pvc=3
31 +networkerror_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=catchNetworkError&pvc=3
...\ No newline at end of file ...\ No newline at end of file
No preview for this file type
No preview for this file type
1 +prebuilt_jar(
2 + name = 'android-support-v4',
3 + binary_jar = 'android-support-v4.jar',
4 + visibility = [
5 + 'PUBLIC',
6 + ],
7 +)
8 +
9 +prebuilt_jar(
10 + name = 'bolts',
11 + binary_jar = 'bolts.jar',
12 + visibility = [
13 + 'PUBLIC',
14 + ],
15 +)
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
1 +# To enable ProGuard in your project, edit project.properties
2 +# to define the proguard.config property as described in that file.
3 +#
4 +# Add project specific ProGuard rules here.
5 +# By default, the flags in this file are appended to flags specified
6 +# in ${sdk.dir}/tools/proguard/proguard-android.txt
7 +# You can edit the include path and order by changing the ProGuard
8 +# include property in project.properties.
9 +#
10 +# For more details, see
11 +# http://developer.android.com/guide/developing/tools/proguard.html
12 +
13 +# Add any project specific keep options here:
14 +
15 +# If your project uses WebView with JS, uncomment the following
16 +# and specify the fully qualified class name to the JavaScript interface
17 +# class:
18 +#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
19 +# public *;
20 +#}
1 +# This file is automatically generated by Android Tools.
2 +# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3 +#
4 +# This file must be checked in Version Control Systems.
5 +#
6 +# To customize properties used by the Ant build system edit
7 +# "ant.properties", and override values to adapt the script to your
8 +# project structure.
9 +#
10 +# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
11 +#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
12 +
13 +# Project target.
14 +target=android-19
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 +** Copyright 2010, Google Inc.
4 +**
5 +** Licensed under the Apache License, Version 2.0 (the "License");
6 +** you may not use this file except in compliance with the License.
7 +** You may obtain a copy of the License at
8 +**
9 +** http://www.apache.org/licenses/LICENSE-2.0
10 +**
11 +** Unless required by applicable law or agreed to in writing, software
12 +** distributed under the License is distributed on an "AS IS" BASIS,
13 +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 +** See the License for the specific language governing permissions and
15 +** limitations under the License.
16 +*/
17 +-->
18 +
19 +<set xmlns:android="http://schemas.android.com/apk/res/android" >
20 + <translate
21 + android:interpolator="@android:anim/decelerate_interpolator"
22 + android:fromYDelta="+12%p"
23 + android:toYDelta="0"
24 + android:duration="300" />
25 +</set>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 +** Copyright 2010, Google Inc.
4 +**
5 +** Licensed under the Apache License, Version 2.0 (the "License");
6 +** you may not use this file except in compliance with the License.
7 +** You may obtain a copy of the License at
8 +**
9 +** http://www.apache.org/licenses/LICENSE-2.0
10 +**
11 +** Unless required by applicable law or agreed to in writing, software
12 +** distributed under the License is distributed on an "AS IS" BASIS,
13 +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 +** See the License for the specific language governing permissions and
15 +** limitations under the License.
16 +*/
17 +-->
18 +
19 +<set xmlns:android="http://schemas.android.com/apk/res/android" >
20 + <translate
21 + android:interpolator="@android:anim/decelerate_interpolator"
22 + android:fromYDelta="0"
23 + android:toYDelta="+12%p"
24 + android:duration="300" />
25 +</set>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<alpha xmlns:android="http://schemas.android.com/apk/res/android"
3 + android:interpolator="@android:anim/accelerate_interpolator"
4 + android:fromAlpha="0.0" android:toAlpha="1.0"
5 + android:duration="300" />
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<alpha xmlns:android="http://schemas.android.com/apk/res/android"
3 + android:interpolator="@android:anim/accelerate_interpolator"
4 + android:fromAlpha="1.0" android:toAlpha="0.0"
5 + android:duration="300" />
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<set xmlns:android="http://schemas.android.com/apk/res/android" >
3 +
4 + <translate
5 + android:duration="1500"
6 + android:fromXDelta="100%p"
7 + android:toXDelta="-100%p" />
8 +
9 + <alpha
10 + android:duration="1500"
11 + android:fromAlpha="0.1"
12 + android:toAlpha="1.0" />
13 +
14 +</set>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_recreation_member_friendsbutton1" />
5 + <item android:drawable="@drawable/p7725_recreation_member_friendsbutton" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725two_recreation_chat_bg2" />
5 + <item android:drawable="@drawable/p7725two_recreation_chat_bg1" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725two_recreation_member_popbutton7" />
5 + <item android:drawable="@drawable/p7725two_recreation_member_popbutton6" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk__download_buttom_background_reaction" />
5 + <item android:drawable="@drawable/p7725_sdk__download_buttom_background" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_recreation_topreturn1" />
5 + <item android:drawable="@drawable/p7725_recreation_topreturn" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_exit_close_off" />
5 + <item android:drawable="@drawable/p7725_exit_close_on" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<selector xmlns:android="http://schemas.android.com/apk/res/android">
3 +
4 + <item
5 + android:drawable="@drawable/com_facebook_button_blue_pressed"
6 + android:state_focused="true"
7 + android:state_pressed="true"
8 + />
9 + <item
10 + android:drawable="@drawable/com_facebook_button_blue_pressed"
11 + android:state_focused="false"
12 + android:state_pressed="true"
13 + />
14 + <item
15 + android:drawable="@drawable/com_facebook_button_blue_focused"
16 + android:state_focused="true"
17 + />
18 + <item
19 + android:drawable="@drawable/com_facebook_button_blue_normal"
20 + android:state_focused="false"
21 + android:state_pressed="false"
22 + />
23 +
24 +</selector>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +<selector xmlns:android="http://schemas.android.com/apk/res/android">
18 + <item android:state_checked="true" android:drawable="@drawable/com_facebook_button_check_on" />
19 + <item android:drawable="@drawable/com_facebook_button_check_off" />
20 +</selector>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<selector xmlns:android="http://schemas.android.com/apk/res/android">
3 +
4 + <item
5 + android:drawable="@drawable/com_facebook_button_like_pressed"
6 + android:state_focused="true"
7 + android:state_pressed="true"
8 + />
9 + <item
10 + android:drawable="@drawable/com_facebook_button_like_pressed"
11 + android:state_focused="false"
12 + android:state_pressed="true"
13 + />
14 + <item
15 + android:drawable="@drawable/com_facebook_button_like_background"
16 + android:state_focused="true"
17 + android:state_pressed="false"
18 + />
19 + <item
20 + android:drawable="@drawable/com_facebook_button_like_background"
21 + android:state_focused="false"
22 + android:state_pressed="false"
23 + />
24 +
25 +</selector>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<selector xmlns:android="http://schemas.android.com/apk/res/android">
3 +
4 + <item
5 + android:drawable="@drawable/com_facebook_button_like_pressed"
6 + android:state_focused="true"
7 + android:state_pressed="true"
8 + />
9 + <item
10 + android:drawable="@drawable/com_facebook_button_like_pressed"
11 + android:state_focused="false"
12 + android:state_pressed="true"
13 + />
14 + <item
15 + android:drawable="@drawable/com_facebook_button_like_background_selected"
16 + android:state_focused="true"
17 + android:state_pressed="false"
18 + />
19 + <item
20 + android:drawable="@drawable/com_facebook_button_like_background_selected"
21 + android:state_focused="false"
22 + android:state_pressed="false"
23 + />
24 +
25 +
26 +</selector>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +<selector xmlns:android="http://schemas.android.com/apk/res/android" >
18 + <item android:state_pressed="true"
19 + android:drawable="@drawable/com_facebook_loginbutton_blue_pressed" />
20 + <item android:state_focused="true"
21 + android:drawable="@drawable/com_facebook_loginbutton_blue_focused" />
22 + <item android:drawable="@drawable/com_facebook_loginbutton_blue_normal" />
23 +</selector>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +<selector xmlns:android="http://schemas.android.com/apk/res/android" >
18 + <item android:state_pressed="true"
19 + android:drawable="@drawable/com_facebook_button_grey_pressed" />
20 + <item android:state_focused="true"
21 + android:drawable="@drawable/com_facebook_button_grey_focused" />
22 + <item android:drawable="@drawable/com_facebook_button_grey_normal" />
23 +</selector>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +<selector xmlns:android="http://schemas.android.com/apk/res/android">
18 +
19 + <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->
20 + <item android:state_focused="true" android:state_enabled="false" android:state_pressed="true" android:drawable="@drawable/com_facebook_picker_list_selector_disabled" />
21 + <item android:state_focused="true" android:state_enabled="false" android:drawable="@drawable/com_facebook_picker_list_selector_disabled" />
22 + <item android:state_focused="true" android:state_pressed="true" android:drawable="@drawable/com_facebook_picker_list_selector_background_transition" />
23 + <item android:state_focused="false" android:state_pressed="true" android:drawable="@drawable/com_facebook_picker_list_selector_background_transition" />
24 + <item android:state_focused="true" android:drawable="@drawable/com_facebook_picker_list_focused" />
25 + <item android:drawable="@android:color/transparent" />
26 +</selector>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +<selector xmlns:android="http://schemas.android.com/apk/res/android">
18 +
19 + <item android:state_window_focused="false" android:drawable="@android:color/transparent" />
20 +
21 + <item android:state_focused="true" android:state_enabled="false" android:state_pressed="true" android:drawable="@drawable/com_facebook_picker_list_selector_disabled" />
22 + <item android:state_focused="true" android:state_enabled="false" android:drawable="@drawable/com_facebook_picker_list_selector_disabled" />
23 + <item android:state_focused="true" android:state_pressed="true" android:drawable="@drawable/com_facebook_picker_list_selector_background_transition" />
24 + <item android:state_focused="false" android:state_pressed="true" android:drawable="@drawable/com_facebook_picker_list_selector_background_transition" />
25 + <item android:state_focused="true" android:drawable="@drawable/com_facebook_picker_list_focused" />
26 +
27 +</selector>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!-- Copyright (C) 2010 The Android Open Source Project
3 +
4 + Licensed under the Apache License, Version 2.0 (the "License");
5 + you may not use this file except in compliance with the License.
6 + You may obtain a copy of the License at
7 +
8 + http://www.apache.org/licenses/LICENSE-2.0
9 +
10 + Unless required by applicable law or agreed to in writing, software
11 + distributed under the License is distributed on an "AS IS" BASIS,
12 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 + See the License for the specific language governing permissions and
14 + limitations under the License.
15 +-->
16 +
17 +<transition xmlns:android="http://schemas.android.com/apk/res/android">
18 + <item android:drawable="@drawable/com_facebook_picker_list_pressed" />
19 + <item android:drawable="@drawable/com_facebook_picker_list_longpressed" />
20 +</transition>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +<shape xmlns:android="http://schemas.android.com/apk/res/android">
18 + <gradient
19 + android:startColor="#3f5b96"
20 + android:endColor="#2d4984"
21 + android:angle="270"/>
22 +</shape>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +<shape xmlns:android="http://schemas.android.com/apk/res/android">
18 + <gradient
19 + android:startColor="#FF5975b0"
20 + android:endColor="#FF47639e"
21 + android:angle="270"/>
22 +</shape>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<selector xmlns:android="http://schemas.android.com/apk/res/android">
19 + <item android:state_pressed="true"
20 + android:drawable="@drawable/com_facebook_picker_top_button" />
21 + <item android:state_focused="true"
22 + android:drawable="@drawable/com_facebook_picker_top_button" />
23 + <item android:state_selected="true"
24 + android:drawable="@drawable/com_facebook_picker_top_button" />
25 + <item
26 + android:drawable="@drawable/com_facebook_top_background" />
27 +</selector>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
18 + <gradient
19 + android:startColor="#5774B5"
20 + android:endColor="#2C4988"
21 + android:gradientRadius="495"
22 + android:type="radial"/>
23 +</shape>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<selector xmlns:android="http://schemas.android.com/apk/res/android" >
3 + <item android:state_pressed="true" android:color="@color/p7725_sdk_white"/>
4 + <item android:color="@color/p7725_sdk_black"/>
5 +
6 +</selector>
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_exit_ok_off" />
5 + <item android:drawable="@drawable/p7725_exit_ok_on" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_tools_bar_icon_account_on" />
5 + <item android:drawable="@drawable/p7725_sdk_tools_bar_icon_account" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_fybotton_77252" />
5 + <item android:drawable="@drawable/p7725_sdk_fybotton_77251" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_fybotton_7725_en2" />
5 + <item android:drawable="@drawable/p7725_sdk_fybotton_7725_en1" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_msbotton_77252" />
5 + <item android:drawable="@drawable/p7725_sdk_msbotton_77251" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_msbotton_7725_en2" />
5 + <item android:drawable="@drawable/p7725_sdk_msbotton_7725_en1" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_quick_loginbotton_77252" />
5 + <item android:drawable="@drawable/p7725_sdk_quick_loginbotton_77251" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_quick_loginbotton_77253" />
5 + <item android:drawable="@drawable/p7725_sdk_quick_loginbotton_77254" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_close_buttom_reaction" />
5 + <item android:drawable="@drawable/p7725_sdk_close_buttom" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_fybotton_facebook2" />
5 + <item android:drawable="@drawable/p7725_sdk_fybotton_facebook1" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_msbotton_facebook2" />
5 + <item android:drawable="@drawable/p7725_sdk_msbotton_facebook1" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_buttom_background_reaction" />
5 + <item android:drawable="@drawable/p7725_sdk_buttom_background" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_botton_pulldown1" />
5 + <item android:drawable="@drawable/p7725_sdk_botton_pulldown" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_botton_login2" />
5 + <item android:drawable="@drawable/p7725_sdk_botton_login1" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_invitation_buttom_reaction" />
5 + <item android:drawable="@drawable/p7725_sdk_invitation_buttom" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_back_buttom_reaction" />
5 + <item android:drawable="@drawable/p7725_sdk_back_buttom" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_icon_fans_on" />
5 + <item android:drawable="@drawable/p7725_sdk_icon_fans_off" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_icon_game_center_on" />
5 + <item android:drawable="@drawable/p7725_sdk_icon_game_center_off" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_icon_raiders_on" />
5 + <item android:drawable="@drawable/p7725_sdk_icon_raiders_off" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_icon_account_on" />
5 + <item android:drawable="@drawable/p7725_sdk_icon_account_off" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<selector xmlns:android="http://schemas.android.com/apk/res/android" >
3 + <item android:drawable="@drawable/p7725_sdk_checkbox_pressed" android:state_checked="true"/>
4 + <item android:drawable="@drawable/p7725_sdk_checkbox_normal" android:state_checked="false"/>
5 + <item android:drawable="@drawable/p7725_sdk_checkbox_normal"/>
6 +</selector>
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_tools_bar_icon_fans_on" />
5 + <item android:drawable="@drawable/p7725_sdk_tools_bar_icon_fans" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
3 +
4 + <item
5 + android:id="@+android:id/background"
6 + android:drawable="@drawable/p7725_sdk_star_off"/>
7 + <item
8 + android:id="@+android:id/secondaryProgress"
9 + android:drawable="@drawable/p7725_icon_default"/>
10 + <item
11 + android:id="@+android:id/progress"
12 + android:drawable="@drawable/p7725_sdk_star_on"/>
13 +
14 +</layer-list>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_tools_bar_icon_gamecenter_on" />
5 + <item android:drawable="@drawable/p7725_sdk_tools_bar_icon_gamecenter" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_tools_bar_icon_customer_service_account_on" />
5 + <item android:drawable="@drawable/p7725_sdk_tools_bar_icon_customer_service" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:tools="http://schemas.android.com/tools"
3 + android:layout_width="match_parent"
4 + android:layout_height="match_parent"
5 + android:background="#a2a3dc"
6 + tools:context=".GameLoginActivity" >
7 +
8 + <!-- 登录 -->
9 +
10 + <RelativeLayout
11 + android:id="@+id/l0"
12 + android:layout_width="fill_parent"
13 + android:layout_height="fill_parent"
14 + android:layout_centerHorizontal="true"
15 + android:layout_centerVertical="true"
16 + android:gravity="center"
17 + android:visibility="gone" >
18 +
19 + <Button
20 + android:id="@+id/btn_login"
21 + android:layout_width="wrap_content"
22 + android:layout_height="wrap_content"
23 + android:text="登录" />
24 + </RelativeLayout>
25 +
26 + <!-- 选服 -->
27 +
28 + <RelativeLayout
29 + android:id="@+id/l1"
30 + android:layout_width="fill_parent"
31 + android:layout_height="fill_parent"
32 + android:visibility="gone" >
33 +
34 + <TextView
35 + android:id="@+id/tv_serverid"
36 + android:layout_width="wrap_content"
37 + android:layout_height="wrap_content"
38 + android:layout_centerHorizontal="true"
39 + android:layout_marginTop="150dp"
40 + android:text="设置服务器ID:"
41 + android:textColor="#000"
42 + android:textSize="18sp" />
43 +
44 + <EditText
45 + android:id="@+id/et_serverid"
46 + android:layout_width="150dp"
47 + android:layout_height="50dp"
48 + android:layout_below="@id/tv_serverid"
49 + android:layout_centerHorizontal="true"
50 + android:gravity="center"
51 + android:inputType="text"
52 + android:singleLine="true"
53 + android:text="s1"
54 + android:textColor="#000" />
55 +
56 + <Button
57 + android:id="@+id/btn_setserverid"
58 + android:layout_width="fill_parent"
59 + android:layout_height="50dp"
60 + android:layout_alignParentBottom="true"
61 + android:text="提交,下一步"
62 + android:textColor="#000" />
63 + </RelativeLayout>
64 +
65 + <!-- 选角 -->
66 +
67 + <RelativeLayout
68 + android:id="@+id/l2"
69 + android:layout_width="fill_parent"
70 + android:layout_height="fill_parent"
71 + android:layout_centerHorizontal="true"
72 + android:layout_centerVertical="true"
73 + android:visibility="visible" >
74 +
75 + <LinearLayout
76 + android:id="@+id/l2_roleid"
77 + android:layout_width="wrap_content"
78 + android:layout_height="wrap_content"
79 + android:layout_centerHorizontal="true"
80 + android:layout_marginTop="150dp"
81 + android:gravity="center_horizontal"
82 + android:orientation="vertical"
83 + android:padding="5dp" >
84 +
85 + <TextView
86 + android:id="@+id/tv_roleid"
87 + android:layout_width="wrap_content"
88 + android:layout_height="wrap_content"
89 + android:text="设置角色ID:"
90 + android:textColor="#000"
91 + android:textSize="18sp" />
92 +
93 + <EditText
94 + android:id="@+id/et_roleid"
95 + android:layout_width="150dp"
96 + android:layout_height="50dp"
97 + android:gravity="center"
98 + android:inputType="text"
99 + android:singleLine="true"
100 + android:text="1001"
101 + android:textColor="#000" />
102 + </LinearLayout>
103 +
104 + <LinearLayout
105 + android:id="@+id/l2_role"
106 + android:layout_width="wrap_content"
107 + android:layout_height="wrap_content"
108 + android:layout_below="@id/l2_roleid"
109 + android:layout_centerHorizontal="true"
110 + android:gravity="center_horizontal"
111 + android:orientation="vertical"
112 + android:padding="5dp" >
113 +
114 + <TextView
115 + android:id="@+id/tv_role"
116 + android:layout_width="wrap_content"
117 + android:layout_height="wrap_content"
118 + android:text="设置角色名称:"
119 + android:textColor="#000"
120 + android:textSize="18sp" />
121 +
122 + <EditText
123 + android:id="@+id/et_role"
124 + android:layout_width="150dp"
125 + android:layout_height="50dp"
126 + android:gravity="center"
127 + android:inputType="text"
128 + android:singleLine="true"
129 + android:text="role1001"
130 + android:textColor="#000" />
131 + </LinearLayout>
132 +
133 + <Button
134 + android:id="@+id/btn_setrole"
135 + android:layout_width="fill_parent"
136 + android:layout_height="50dp"
137 + android:layout_alignParentBottom="true"
138 + android:text="提交,下一步"
139 + android:textColor="#000" />
140 + </RelativeLayout>
141 +
142 + <!-- 正常游戏 -->
143 +
144 + <RelativeLayout
145 + android:id="@+id/l3"
146 + android:layout_width="fill_parent"
147 + android:layout_height="fill_parent"
148 + android:layout_centerHorizontal="true"
149 + android:layout_centerVertical="true"
150 + android:visibility="gone" >
151 +
152 + <Button
153 + android:id="@+id/btn_pay"
154 + android:layout_width="100dp"
155 + android:layout_height="40dp"
156 + android:layout_centerHorizontal="true"
157 + android:layout_marginTop="150dp"
158 + android:text="储值" />
159 +
160 + <Button
161 + android:id="@+id/btn_customer"
162 + android:layout_width="100dp"
163 + android:layout_height="40dp"
164 + android:layout_below="@id/btn_pay"
165 + android:layout_centerHorizontal="true"
166 + android:text="客服" />
167 +
168 + <Button
169 + android:id="@+id/btn_exit"
170 + android:layout_width="100dp"
171 + android:layout_height="40dp"
172 + android:layout_below="@id/btn_customer"
173 + android:layout_centerHorizontal="true"
174 + android:text="退出" />
175 +
176 + <LinearLayout
177 + android:layout_width="fill_parent"
178 + android:layout_height="wrap_content"
179 + android:layout_alignParentBottom="true" >
180 +
181 + <Button
182 + android:id="@+id/btn_assecc"
183 + android:layout_width="0dp"
184 + android:layout_height="40dp"
185 + android:layout_weight="1.0"
186 + android:text="获取FB AsseccToken" />
187 +
188 + <Button
189 + android:id="@+id/btn_share"
190 + android:layout_width="0dp"
191 + android:layout_height="40dp"
192 + android:layout_weight="1.0"
193 + android:text="分享FB Share" />
194 + </LinearLayout>
195 + </RelativeLayout>
196 +
197 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:tools="http://schemas.android.com/tools"
3 + android:layout_width="fill_parent"
4 + android:layout_height="fill_parent"
5 + tools:context=".MainActivity"
6 + android:orientation="vertical" >
7 +
8 + <EditText
9 + android:id="@+id/test_zhanghao"
10 + android:layout_width="fill_parent"
11 + android:layout_height="wrap_content"
12 + android:textColor="#000000"
13 + android:hint="账号"
14 + android:visibility="gone"
15 + >
16 +
17 + </EditText>
18 + <EditText
19 + android:id="@+id/test_mima"
20 + android:layout_width="fill_parent"
21 + android:layout_height="wrap_content"
22 + android:textColor="#000000"
23 + android:hint="密码"
24 + android:visibility="gone"
25 + >
26 +
27 + </EditText>
28 + <Button
29 + android:id="@+id/test_login"
30 + android:layout_width="wrap_content"
31 + android:layout_height="wrap_content"
32 + android:layout_alignParentLeft="true"
33 + android:layout_alignParentTop="true"
34 + android:text="登录" />
35 +
36 + <Button
37 + android:id="@+id/test_pay"
38 + android:layout_width="wrap_content"
39 + android:layout_height="wrap_content"
40 + android:layout_alignParentLeft="true"
41 + android:layout_below="@+id/test_login"
42 + android:text="GOOGLE充值" />
43 +
44 +</LinearLayout>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
19 + android:layout_width="match_parent"
20 + android:layout_height="match_parent"
21 + android:background="#FFFFFF">
22 +
23 + <include layout="@layout/com_facebook_picker_title_bar_stub"/>
24 +
25 + <ListView
26 + android:id="@+id/com_facebook_picker_list_view"
27 + android:layout_width="match_parent"
28 + android:layout_height="match_parent"
29 + android:divider="@drawable/com_facebook_list_divider"
30 + android:fastScrollEnabled="true"
31 + android:scrollbars="vertical"
32 + android:listSelector="@drawable/com_facebook_picker_list_selector"
33 + android:cacheColorHint="#FFFFFF"
34 + />
35 +
36 + <ProgressBar android:indeterminate="true"
37 + android:layout_width="wrap_content"
38 + android:layout_height="wrap_content"
39 + android:id="@+id/com_facebook_picker_activity_circle"
40 + style="@android:style/Widget.ProgressBar"
41 + android:layout_centerInParent="true"
42 + android:visibility="invisible"
43 + />
44 +</RelativeLayout>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +
3 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
4 + android:layout_width="match_parent"
5 + android:layout_height="match_parent">
6 +
7 + <ProgressBar android:indeterminate="true"
8 + android:layout_width="wrap_content"
9 + android:layout_height="50dip"
10 + android:id="@+id/com_facebook_login_activity_progress_bar"
11 + android:layout_centerInParent="true"
12 + android:visibility="gone"
13 + android:indeterminateOnly="true"
14 + />
15 +</RelativeLayout>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<RelativeLayout
19 + xmlns:android="http://schemas.android.com/apk/res/android"
20 + android:layout_height="50dip"
21 + android:layout_width="match_parent"
22 + >
23 + <ProgressBar android:indeterminate="true"
24 + android:layout_width="wrap_content"
25 + android:layout_height="50dip"
26 + android:id="@+id/com_facebook_picker_row_activity_circle"
27 + style="@android:style/Widget.ProgressBar.Small"
28 + android:layout_centerInParent="true"
29 + android:visibility="visible"
30 + android:indeterminateOnly="true"
31 + />
32 +</RelativeLayout>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<CheckBox
19 + xmlns:android="http://schemas.android.com/apk/res/android"
20 + android:id="@+id/com_facebook_picker_checkbox"
21 + android:layout_width="23dip"
22 + android:layout_height="23dip"
23 + android:focusable="false"
24 + android:clickable="false"
25 + android:button="@drawable/com_facebook_button_check" />
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<ImageView
19 + xmlns:android="http://schemas.android.com/apk/res/android"
20 + android:id="@+id/com_facebook_picker_image"
21 + android:layout_width="50dip"
22 + android:layout_height="50dip"
23 + android:layout_gravity="center_vertical"
24 + android:src="@drawable/com_facebook_profile_default_icon" />
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<LinearLayout
19 + xmlns:android="http://schemas.android.com/apk/res/android"
20 + android:layout_height="wrap_content"
21 + android:layout_width="match_parent"
22 + >
23 + <ViewStub
24 + android:id="@+id/com_facebook_picker_profile_pic_stub"
25 + android:inflatedId="@+id/com_facebook_picker_image"
26 + android:layout="@layout/com_facebook_picker_image"
27 + android:layout_width="50dip"
28 + android:layout_height="50dip" />
29 + <TextView
30 + android:id="@+id/com_facebook_picker_title"
31 + android:layout_width="100dip"
32 + android:layout_height="50dip"
33 + android:layout_weight="1.0"
34 + android:paddingLeft="5dip"
35 + android:textStyle="bold"
36 + android:textColor="#000000"
37 + android:singleLine="true"
38 + android:ellipsize="end"
39 + android:textSize="18sp"
40 + android:gravity="left|center_vertical"/>
41 + <ViewStub
42 + android:id="@+id/com_facebook_picker_checkbox_stub"
43 + android:inflatedId="@+id/com_facebook_picker_checkbox"
44 + android:layout="@layout/com_facebook_picker_checkbox"
45 + android:layout_width="23dip"
46 + android:layout_height="23dip"
47 + android:layout_marginRight="10dip"/>
48 +</LinearLayout>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<TextView
19 + xmlns:android="http://schemas.android.com/apk/res/android"
20 + android:id="@+id/com_facebook_picker_list_section_header"
21 + android:layout_width="match_parent"
22 + android:layout_height="wrap_content"
23 + android:textStyle="bold"
24 + android:background="@drawable/com_facebook_list_section_header_background"
25 + android:orientation="horizontal"
26 + android:gravity="left|center_vertical"
27 + android:textColor="#68768a"
28 + android:textSize="17sp"
29 + android:paddingLeft="8dip"
30 + android:paddingBottom="0px"
31 + android:shadowDx="1"
32 + android:shadowDy="1"
33 + android:shadowRadius="1"
34 + android:shadowColor="#BFFFFFFF" />
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
19 + android:layout_width="match_parent"
20 + android:layout_height="wrap_content"
21 + android:orientation="vertical"
22 + >
23 + <include layout="@layout/com_facebook_search_bar_layout" />
24 + <View
25 + android:layout_width="match_parent"
26 + android:layout_height="@dimen/com_facebook_picker_divider_width"
27 + android:background="@drawable/com_facebook_picker_default_separator_color"
28 + />
29 +</LinearLayout>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
19 + android:id="@+id/com_facebook_picker_top_bar"
20 + android:layout_width="match_parent"
21 + android:layout_height="48dp"
22 + android:background="@drawable/com_facebook_top_background"
23 + android:gravity="right">
24 + <Button
25 + android:id="@+id/com_facebook_picker_done_button"
26 + android:layout_width="wrap_content"
27 + android:minWidth="55dp"
28 + android:layout_height="48dp"
29 + android:background="@drawable/com_facebook_top_button"
30 + android:paddingLeft="5dip"
31 + android:paddingRight="5dip"
32 + android:textColor="#ffffff"
33 + android:textSize="14sp"
34 + android:shadowColor="#66000000"
35 + android:shadowDx="1"
36 + android:shadowDy="1"
37 + android:shadowRadius="1"
38 + android:layout_alignParentRight="true"
39 + />
40 + <LinearLayout
41 + android:id="@+id/com_facebook_picker_divider"
42 + android:layout_width="1dp"
43 + android:layout_height="match_parent"
44 + android:background="#40000000"
45 + android:layout_alignLeft="@id/com_facebook_picker_done_button"/>
46 + <TextView
47 + android:id="@+id/com_facebook_picker_title"
48 + android:layout_width="match_parent"
49 + android:layout_height="match_parent"
50 + android:textSize="22sp"
51 + android:textColor="#FFFFFF"
52 + android:gravity="left|center_vertical"
53 + android:ellipsize="end"
54 + android:singleLine="true"
55 + android:scaleType="center"
56 + android:shadowColor="#66000000"
57 + android:shadowDx="1"
58 + android:shadowDy="1"
59 + android:shadowRadius="1"
60 + android:layout_marginLeft="10dip"
61 + android:layout_marginRight="10dip"
62 + android:layout_toLeftOf="@id/com_facebook_picker_divider"/>
63 +</RelativeLayout>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<merge xmlns:android="http://schemas.android.com/apk/res/android">
19 + <ViewStub android:id="@+id/com_facebook_picker_title_bar_stub"
20 + android:inflatedId="@+id/com_facebook_picker_title_bar"
21 + android:layout="@layout/com_facebook_picker_title_bar"
22 + android:layout_height="48dip"
23 + android:layout_width="match_parent"/>
24 +
25 +</merge>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
19 + android:layout_width="match_parent"
20 + android:layout_height="match_parent"
21 + android:background="#FFFFFF"
22 + android:descendantFocusability="beforeDescendants"
23 + android:focusableInTouchMode="true">
24 +
25 + <include layout="@layout/com_facebook_picker_title_bar_stub"/>
26 +
27 + <ListView
28 + android:id="@+id/com_facebook_picker_list_view"
29 + android:layout_width="match_parent"
30 + android:layout_height="match_parent"
31 + android:layout_alignParentTop="true"
32 + android:divider="@null"
33 + android:fastScrollEnabled="true"
34 + android:scrollbars="vertical"
35 + android:listSelector="@drawable/com_facebook_picker_list_selector"
36 + android:cacheColorHint="#FFFFFF"
37 + />
38 +
39 + <ProgressBar android:indeterminate="true"
40 + android:layout_width="wrap_content"
41 + android:layout_height="wrap_content"
42 + android:id="@+id/com_facebook_picker_activity_circle"
43 + style="@android:style/Widget.ProgressBar"
44 + android:layout_centerInParent="true"
45 + android:visibility="invisible"
46 + />
47 +</RelativeLayout>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<RelativeLayout
19 + xmlns:android="http://schemas.android.com/apk/res/android"
20 + android:layout_height="wrap_content"
21 + android:layout_width="match_parent"
22 + android:focusable="false">
23 + <LinearLayout
24 + android:layout_width="match_parent"
25 + android:layout_height="wrap_content"
26 + android:orientation="horizontal"
27 + android:focusable="false"
28 + >
29 + <FrameLayout
30 + android:layout_width="80dp"
31 + android:layout_height="wrap_content"
32 + >
33 + <ViewStub
34 + android:id="@+id/com_facebook_picker_profile_pic_stub"
35 + android:inflatedId="@+id/com_facebook_picker_image"
36 + android:layout="@layout/com_facebook_picker_image"
37 + android:layout_gravity="left|center_vertical"
38 + android:layout_width="@dimen/com_facebook_picker_place_image_size"
39 + android:layout_height="@dimen/com_facebook_picker_place_image_size" />
40 + </FrameLayout>
41 + <LinearLayout
42 + android:orientation="vertical"
43 + android:focusable="false"
44 + android:layout_width="0dip"
45 + android:layout_height="wrap_content"
46 + android:layout_marginRight="16dp"
47 + android:layout_gravity="center_vertical"
48 + android:layout_weight="1">
49 + <TextView
50 + android:id="@+id/com_facebook_picker_title"
51 + android:layout_width="fill_parent"
52 + android:layout_height="wrap_content"
53 + android:layout_weight="1.0"
54 + android:ellipsize="end"
55 + android:singleLine="true"
56 + android:typeface="sans"
57 + android:textColor="#000000"
58 + android:lines="1"
59 + android:textSize="16sp"
60 + android:gravity="left|center_vertical"/>
61 + <TextView
62 + android:id="@+id/picker_subtitle"
63 + android:layout_width="fill_parent"
64 + android:layout_height="wrap_content"
65 + android:layout_weight="1.0"
66 + android:ellipsize="end"
67 + android:singleLine="true"
68 + android:textColor="#666666"
69 + android:lines="1"
70 + android:typeface="sans"
71 + android:textSize="12sp"
72 + android:gravity="left|center_vertical"/>
73 + </LinearLayout>
74 + <!--ViewStub
75 + android:id="@+id/checkbox_stub"
76 + android:inflatedId="@+id/picker_checkbox"
77 + android:layout="@layout/checkbox_layout"
78 + android:layout_width="23dip"
79 + android:layout_height="23dip"
80 + android:layout_marginRight="10dip"/-->
81 + </LinearLayout>
82 + <View
83 + android:layout_width="0dp"
84 + android:layout_height="@dimen/com_facebook_picker_divider_width"
85 + android:layout_alignParentLeft="true"
86 + android:layout_alignParentRight="true"
87 + android:layout_alignParentBottom="true"
88 + android:background="@drawable/com_facebook_picker_default_separator_color"
89 + />
90 +</RelativeLayout>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +
3 +<LinearLayout
4 + xmlns:android="http://schemas.android.com/apk/res/android"
5 + android:id="@+id/com_facebook_search_bar_view"
6 + android:orientation="horizontal"
7 + android:layout_width="match_parent"
8 + android:layout_height="wrap_content"
9 + android:paddingTop="0dp"
10 + android:paddingBottom="0dp"
11 + android:paddingLeft="5dp"
12 + android:paddingRight="5dp"
13 + android:background="@color/com_facebook_picker_search_bar_background"
14 + >
15 + <EditText
16 + android:id="@+id/com_facebook_picker_search_text"
17 + android:layout_width="match_parent"
18 + android:layout_height="48dp"
19 + android:layout_marginLeft="5dp"
20 + android:singleLine="true"
21 + android:layout_gravity="center"
22 + android:gravity="center_vertical"
23 + android:textSize="16sp"
24 + android:textColor="@android:color/black"
25 + android:textColorHint="@color/com_facebook_picker_search_bar_text"
26 + android:background="@color/com_facebook_picker_search_bar_background"
27 + android:drawableLeft="@drawable/com_facebook_picker_magnifier"
28 + android:drawablePadding="5dp"
29 + android:imeOptions="actionDone"
30 + />
31 +</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<RelativeLayout
3 + xmlns:android="http://schemas.android.com/apk/res/android"
4 + android:layout_width="wrap_content"
5 + android:layout_height="wrap_content"
6 + android:paddingLeft="20dp"
7 + android:paddingRight="20dp">
8 + <RelativeLayout
9 + android:id="@+id/com_facebook_body_frame"
10 + android:layout_width="wrap_content"
11 + android:layout_height="wrap_content"
12 + android:layout_below="@+id/com_facebook_tooltip_bubble_view_top_pointer"
13 + android:layout_centerHorizontal="true"
14 + android:background="@drawable/com_facebook_tooltip_blue_background">
15 + <ImageView
16 + android:id="@+id/com_facebook_button_xout"
17 + android:layout_width="wrap_content"
18 + android:layout_height="wrap_content"
19 + android:layout_alignParentTop="true"
20 + android:layout_alignParentRight="true"
21 + android:padding="10dp"
22 + android:src="@drawable/com_facebook_tooltip_blue_xout"
23 + />
24 + <TextView
25 + android:id="@+id/com_facebook_tooltip_bubble_view_text_body"
26 + android:layout_width="wrap_content"
27 + android:layout_height="wrap_content"
28 + android:layout_alignParentTop="true"
29 + android:layout_toLeftOf="@id/com_facebook_button_xout"
30 + android:layout_alignParentLeft="true"
31 + android:padding="10dp"
32 + style="@style/tooltip_bubble_text"
33 + />
34 + </RelativeLayout>
35 + <ImageView
36 + android:id="@+id/com_facebook_tooltip_bubble_view_top_pointer"
37 + android:layout_width="wrap_content"
38 + android:layout_height="wrap_content"
39 + android:layout_alignParentTop="true"
40 + android:layout_centerHorizontal="true"
41 + android:layout_marginBottom="-10dp"
42 + android:src="@drawable/com_facebook_tooltip_blue_topnub"
43 + />
44 + <ImageView
45 + android:id="@+id/com_facebook_tooltip_bubble_view_bottom_pointer"
46 + android:layout_width="wrap_content"
47 + android:layout_height="wrap_content"
48 + android:layout_gravity="center_horizontal|bottom"
49 + android:layout_centerHorizontal="true"
50 + android:layout_below="@id/com_facebook_body_frame"
51 + android:layout_marginTop="-13dp"
52 + android:src="@drawable/com_facebook_tooltip_blue_bottomnub"
53 + />
54 +</RelativeLayout>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<ScrollView
19 + xmlns:android="http://schemas.android.com/apk/res/android"
20 + xmlns:loginView="http://schemas.android.com/apk/res-auto"
21 + android:layout_width="match_parent"
22 + android:layout_height="match_parent"
23 + android:background="@drawable/com_facebook_usersettingsfragment_background_gradient" >
24 + <LinearLayout
25 + android:layout_width="match_parent"
26 + android:layout_height="wrap_content"
27 + android:orientation="vertical">
28 +
29 + <ImageView
30 + android:id="@+id/com_facebook_usersettingsfragment_logo_image"
31 + android:layout_width="193dp"
32 + android:layout_height="44dp"
33 + android:layout_gravity="center_horizontal"
34 + android:src="@drawable/com_facebook_logo"
35 + android:layout_marginTop="35dp"
36 + android:contentDescription="@string/com_facebook_logo_content_description"/>
37 +
38 + <TextView
39 + android:id="@+id/com_facebook_usersettingsfragment_profile_name"
40 + android:layout_width="match_parent"
41 + android:layout_height="100dp"
42 + android:lines="1"
43 + android:textSize="16sp"
44 + android:textStyle="bold"
45 + android:layout_marginTop="35dp"
46 + android:gravity="center"/>
47 +
48 + <com.facebook.widget.LoginButton
49 + android:id="@+id/com_facebook_usersettingsfragment_login_button"
50 + android:layout_width="wrap_content"
51 + android:layout_height="wrap_content"
52 + android:layout_gravity="center_horizontal"
53 + android:layout_marginTop="35dp"
54 + android:layout_marginBottom="35dp"
55 + loginView:login_text="@string/com_facebook_usersettingsfragment_log_in_button"
56 + style="@style/com_facebook_loginview_silver_style" />
57 +
58 + </LinearLayout>
59 +</ScrollView>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 +/*
4 +** Copyright 2010, The Android Open Source Project
5 +**
6 +** Licensed under the Apache License, Version 2.0 (the "License");
7 +** you may not use this file except in compliance with the License.
8 +** You may obtain a copy of the License at
9 +**
10 +** http://www.apache.org/licenses/LICENSE-2.0
11 +**
12 +** Unless required by applicable law or agreed to in writing, software
13 +** distributed under the License is distributed on an "AS IS" BASIS,
14 +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 +** See the License for the specific language governing permissions and
16 +** limitations under the License.
17 +*/
18 +-->
19 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
20 + android:layout_width="fill_parent"
21 + android:layout_height="fill_parent"
22 + android:orientation="vertical" >
23 +
24 + <!-- The main area showing the list of downloads -->
25 +
26 + <com.p7725.downloadmanager.view.TitleView
27 + android:id="@+id/ll_game_list_title"
28 + android:layout_width="fill_parent"
29 + android:layout_height="wrap_content"
30 + android:orientation="vertical" />
31 +
32 + <FrameLayout
33 + android:layout_width="fill_parent"
34 + android:layout_height="0dip"
35 + android:layout_weight="1.0"
36 + android:background="@color/p7725_sdk_all_background" >
37 +
38 + <ExpandableListView
39 + android:id="@+id/date_ordered_list"
40 + android:layout_width="fill_parent"
41 + android:layout_height="fill_parent" />
42 +
43 + <ListView
44 + android:id="@+id/size_ordered_list"
45 + android:layout_width="fill_parent"
46 + android:layout_height="fill_parent" />
47 +
48 + <TextView
49 + android:id="@+id/empty"
50 + android:layout_width="fill_parent"
51 + android:layout_height="fill_parent"
52 + android:gravity="center"
53 + android:text="@string/no_downloads"
54 + android:textStyle="bold" />
55 + </FrameLayout>
56 +
57 + <!-- The selection menu that pops up from the bottom of the screen -->
58 +
59 + <LinearLayout
60 + android:id="@+id/selection_menu"
61 + android:layout_width="fill_parent"
62 + android:layout_height="wrap_content"
63 + android:layout_gravity="center"
64 + android:background="@android:drawable/bottom_bar"
65 + android:gravity="center"
66 + android:orientation="horizontal"
67 + android:paddingBottom="1dip"
68 + android:paddingLeft="4dip"
69 + android:paddingRight="4dip"
70 + android:paddingTop="5dip"
71 + android:visibility="gone" >
72 +
73 + <Button
74 + android:id="@+id/selection_delete"
75 + android:layout_width="fill_parent"
76 + android:layout_height="fill_parent"
77 + android:layout_weight="1" />
78 +
79 + <Button
80 + android:id="@+id/deselect_all"
81 + android:layout_width="fill_parent"
82 + android:layout_height="fill_parent"
83 + android:layout_weight="1"
84 + android:text="@string/deselect_all" />
85 + </LinearLayout>
86 +
87 +</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 +/*
4 +** Copyright 2010, The Android Open Source Project
5 +**
6 +** Licensed under the Apache License, Version 2.0 (the "License");
7 +** you may not use this file except in compliance with the License.
8 +** You may obtain a copy of the License at
9 +**
10 +** http://www.apache.org/licenses/LICENSE-2.0
11 +**
12 +** Unless required by applicable law or agreed to in writing, software
13 +** distributed under the License is distributed on an "AS IS" BASIS,
14 +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 +** See the License for the specific language governing permissions and
16 +** limitations under the License.
17 +*/
18 +-->
19 +
20 +<com.library.providers.downloads.ui.DownloadItem xmlns:android="http://schemas.android.com/apk/res/android"
21 + android:layout_width="fill_parent"
22 + android:layout_height="wrap_content"
23 + android:background="#fff"
24 + android:descendantFocusability="blocksDescendants"
25 + android:gravity="center_vertical"
26 + android:paddingRight="?android:attr/scrollbarSize" >
27 +
28 + <!-- Clicks are handled directly by DownloadItem -->
29 +
30 + <CheckBox
31 + android:id="@+id/download_checkbox"
32 + android:layout_width="wrap_content"
33 + android:layout_height="wrap_content"
34 + android:layout_alignParentLeft="true"
35 + android:layout_centerVertical="true"
36 + android:layout_marginLeft="5dip"
37 + android:clickable="false"
38 + android:scaleType="fitCenter"
39 + android:visibility="visible" />
40 +
41 + <LinearLayout
42 + xmlns:android="http://schemas.android.com/apk/res/android"
43 + android:layout_width="fill_parent"
44 + android:layout_height="wrap_content"
45 + android:layout_toRightOf="@id/download_checkbox"
46 + android:descendantFocusability="blocksDescendants"
47 + android:gravity="center_vertical"
48 + android:orientation="horizontal" >
49 +
50 + <!-- Clicks are handled directly by DownloadItem -->
51 +
52 + <ImageView
53 + android:id="@+id/download_icon"
54 + android:layout_width="@android:dimen/app_icon_size"
55 + android:layout_height="@android:dimen/app_icon_size"
56 + android:layout_margin="6dp"
57 + android:contentDescription="@string/button_cancel_download"
58 + android:scaleType="fitCenter"
59 + android:visibility="visible" />
60 +
61 + <LinearLayout
62 + android:layout_width="0dp"
63 + android:layout_height="wrap_content"
64 + android:layout_weight="1.0"
65 + android:gravity="center_vertical"
66 + android:orientation="vertical" >
67 +
68 + <LinearLayout
69 + android:layout_width="fill_parent"
70 + android:layout_height="wrap_content"
71 + android:orientation="horizontal" >
72 +
73 + <TextView
74 + android:id="@+id/download_title"
75 + android:layout_width="0dp"
76 + android:layout_height="wrap_content"
77 + android:layout_weight="1.0"
78 + android:maxLines="1"
79 + android:singleLine="true"
80 + android:textColor="#777"
81 + android:textSize="18sp"
82 + android:textStyle="bold" />
83 +
84 + <TextView
85 + android:id="@+id/size_text"
86 + android:layout_width="wrap_content"
87 + android:layout_height="wrap_content"
88 + android:maxLines="1"
89 + android:textColor="#999"
90 + android:textSize="14sp"
91 + android:visibility="gone" />
92 + </LinearLayout>
93 +
94 + <LinearLayout
95 + android:layout_width="fill_parent"
96 + android:layout_height="wrap_content"
97 + android:layout_marginBottom="5dp"
98 + android:orientation="horizontal" >
99 +
100 + <ProgressBar
101 + android:id="@+id/download_progress"
102 + style="?android:attr/progressBarStyleHorizontal"
103 + android:layout_width="fill_parent"
104 + android:layout_height="10dp"
105 + android:visibility="gone" />
106 + </LinearLayout>
107 +
108 + <LinearLayout
109 + android:layout_width="fill_parent"
110 + android:layout_height="wrap_content"
111 + android:orientation="horizontal" >
112 +
113 + <TextView
114 + android:id="@+id/tv_progress"
115 + android:layout_width="wrap_content"
116 + android:layout_height="wrap_content" />
117 +
118 + <TextView
119 + android:id="@+id/status_text"
120 + android:layout_width="wrap_content"
121 + android:layout_height="wrap_content"
122 + android:layout_marginLeft="8dp"
123 + android:text="@string/common_loading_now"
124 + android:textAppearance="?android:attr/textAppearanceSmall"
125 + android:textSize="10dp" />
126 +
127 + <TextView
128 + android:id="@+id/last_modified_date"
129 + android:layout_width="wrap_content"
130 + android:layout_height="wrap_content"
131 + android:maxLines="1"
132 + android:textAppearance="?android:attr/textAppearanceSmall"
133 + android:textSize="9dp"
134 + android:visibility="gone" />
135 + </LinearLayout>
136 + </LinearLayout>
137 +
138 + <LinearLayout
139 + android:layout_width="wrap_content"
140 + android:layout_height="wrap_content"
141 + android:layout_margin="3dp"
142 + android:visibility="visible" >
143 +
144 + <Button
145 + android:id="@+id/btn_download_pause"
146 + android:layout_width="55dp"
147 + android:layout_height="30dp"
148 + android:background="@drawable/btn_download"
149 + android:text="@string/common_pause"
150 + android:textColor="#fff" />
151 + </LinearLayout>
152 +
153 + <LinearLayout
154 + android:layout_width="wrap_content"
155 + android:layout_height="wrap_content"
156 + android:layout_margin="3dp"
157 + android:visibility="visible" >
158 +
159 + <Button
160 + android:id="@+id/btn_download_cancel"
161 + android:layout_width="55dp"
162 + android:layout_height="30dp"
163 + android:background="@drawable/btn_download"
164 + android:text="@string/common_cancel"
165 + android:textColor="#fff" />
166 + </LinearLayout>
167 + </LinearLayout>
168 +
169 +</com.library.providers.downloads.ui.DownloadItem>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!-- Copyright (C) 2010 The Android Open Source Project
3 +
4 + Licensed under the Apache License, Version 2.0 (the "License");
5 + you may not use this file except in compliance with the License.
6 + You may obtain a copy of the License at
7 +
8 + http://www.apache.org/licenses/LICENSE-2.0
9 +
10 + Unless required by applicable law or agreed to in writing, software
11 + distributed under the License is distributed on an "AS IS" BASIS,
12 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 + See the License for the specific language governing permissions and
14 + limitations under the License.
15 +-->
16 +
17 +<TextView xmlns:android="http://schemas.android.com/apk/res/android"
18 + android:layout_width="fill_parent"
19 + android:layout_height="wrap_content"
20 + android:minHeight="?android:attr/listPreferredItemHeight"
21 + android:textAppearance="?android:attr/textAppearanceMedium"
22 + android:paddingLeft="43dip"
23 + android:layout_gravity="center_vertical"
24 + android:gravity="center_vertical"/>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 +/*
4 +** Copyright 2008, The Android Open Source Project
5 +**
6 +** Licensed under the Apache License, Version 2.0 (the "License");
7 +** you may not use this file except in compliance with the License.
8 +** You may obtain a copy of the License at
9 +**
10 +** http://www.apache.org/licenses/LICENSE-2.0
11 +**
12 +** Unless required by applicable law or agreed to in writing, software
13 +** distributed under the License is distributed on an "AS IS" BASIS,
14 +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 +** See the License for the specific language governing permissions and
16 +** limitations under the License.
17 +*/
18 +-->
19 +
20 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
21 + android:layout_width="fill_parent"
22 + android:layout_height="wrap_content"
23 + android:orientation="horizontal" >
24 +
25 + <LinearLayout
26 + android:layout_width="40dp"
27 + android:layout_height="wrap_content"
28 + android:orientation="vertical"
29 + android:paddingTop="8dp" >
30 +
31 + <ImageView
32 + android:id="@+id/appIcon"
33 + android:layout_width="wrap_content"
34 + android:layout_height="wrap_content"
35 + android:layout_gravity="center"
36 + android:contentDescription="@string/permlab_downloadCompletedIntent"
37 + android:src="@android:drawable/sym_def_app_icon" />
38 +
39 + <TextView
40 + android:id="@+id/progress_text"
41 + android:layout_width="wrap_content"
42 + android:layout_height="wrap_content"
43 + android:layout_gravity="center_horizontal"
44 + android:singleLine="true" />
45 + </LinearLayout>
46 +
47 + <RelativeLayout
48 + android:layout_width="fill_parent"
49 + android:layout_height="wrap_content"
50 + android:orientation="vertical" >
51 +
52 + <LinearLayout
53 + android:id="@+id/ll_01"
54 + android:layout_width="fill_parent"
55 + android:layout_height="wrap_content"
56 + android:orientation="horizontal"
57 + android:paddingTop="10dp" >
58 +
59 + <TextView
60 + android:id="@+id/title"
61 + android:layout_width="wrap_content"
62 + android:layout_height="wrap_content"
63 + android:paddingLeft="2dp"
64 + android:singleLine="true"
65 + android:textSize="12sp" />
66 +
67 + <TextView
68 + android:id="@+id/description"
69 + android:layout_width="wrap_content"
70 + android:layout_height="wrap_content"
71 + android:paddingLeft="5dp"
72 + android:singleLine="true"
73 + android:textSize="12sp" />
74 + </LinearLayout>
75 + <!-- Only one of progress_bar and paused_text will be visible. -->
76 +
77 + <LinearLayout
78 + android:layout_width="fill_parent"
79 + android:layout_height="wrap_content"
80 + android:layout_below="@id/ll_01"
81 + android:orientation="vertical" >
82 +
83 + <ProgressBar
84 + android:id="@+id/progress_bar"
85 + style="?android:attr/progressBarStyleHorizontal"
86 + android:layout_width="fill_parent"
87 + android:layout_height="wrap_content"
88 + android:paddingBottom="8dp"
89 + android:paddingRight="2dp" />
90 +
91 + <TextView
92 + android:id="@+id/paused_text"
93 + android:layout_width="fill_parent"
94 + android:layout_height="wrap_content"
95 + android:paddingBottom="8dp"
96 + android:paddingLeft="5dp"
97 + android:singleLine="true"
98 + android:textSize="12sp" />
99 + </LinearLayout>
100 + </RelativeLayout>
101 +
102 +</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:tools="http://schemas.android.com/tools"
3 + android:layout_width="match_parent"
4 + android:layout_height="48dp"
5 + android:background="@drawable/p7725_sdk_bar"
6 + android:baselineAligned="false" >
7 +
8 + <LinearLayout
9 + android:layout_width="wrap_content"
10 + android:layout_height="match_parent"
11 + android:layout_alignParentLeft="true"
12 + android:layout_centerVertical="true"
13 + android:gravity="center"
14 + android:orientation="horizontal" >
15 +
16 + <Button
17 + android:id="@+id/btn_title_back"
18 + android:layout_width="50dp"
19 + android:layout_height="wrap_content"
20 + android:background="@drawable/btn_title_back" />
21 +
22 + <TextView
23 + android:id="@+id/text"
24 + android:layout_width="wrap_content"
25 + android:layout_height="wrap_content"
26 + android:gravity="center"
27 + android:textColor="#fff"
28 + android:visibility="gone"
29 + android:textSize="12sp" />
30 + </LinearLayout>
31 +
32 + <LinearLayout
33 + android:layout_width="wrap_content"
34 + android:layout_height="match_parent"
35 + android:layout_centerHorizontal="true"
36 + android:layout_centerVertical="true"
37 + android:layout_margin="2dp"
38 + android:gravity="center"
39 + android:orientation="horizontal" >
40 +
41 + <TextView
42 + android:id="@+id/tv_title_text"
43 + android:layout_width="wrap_content"
44 + android:layout_height="wrap_content"
45 + android:gravity="center"
46 + android:textColor="@color/p7725_sdk_white"
47 + android:textSize="20sp" />
48 + </LinearLayout>
49 +
50 + <LinearLayout
51 + android:layout_width="wrap_content"
52 + android:layout_height="match_parent"
53 + android:layout_alignParentRight="true"
54 + android:layout_centerVertical="true"
55 + android:layout_marginRight="8dp"
56 + android:orientation="horizontal"
57 + android:gravity="center" >
58 +
59 +
60 + <Button
61 + android:id="@+id/btn_title_people"
62 + android:layout_width="wrap_content"
63 + android:layout_height="35dp"
64 + android:background="@drawable/btn_border_white_to_orange"
65 + android:paddingLeft="10dp"
66 + android:paddingRight="10dp"
67 + android:paddingTop="4dp"
68 + android:paddingBottom="4dp"
69 + android:textColor="@drawable/font_black_white"
70 + android:textSize="14sp"
71 + android:layout_marginRight="5dp"
72 + android:visibility="gone" />
73 + <Button
74 + android:id="@+id/btn_title_share"
75 + android:layout_width="wrap_content"
76 + android:layout_height="wrap_content"
77 + android:background="@drawable/p7725_recreation_life_share"
78 + android:textColor="@drawable/font_black_white"
79 + android:gravity="center"
80 + android:visibility="gone" />
81 + </LinearLayout>
82 +
83 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 + android:layout_width="match_parent"
4 + android:layout_height="match_parent"
5 + android:orientation="vertical" >
6 +
7 + <RelativeLayout
8 + android:id="@+id/fullscreen_advs_view"
9 + android:layout_width="match_parent"
10 + android:layout_height="match_parent"
11 + android:orientation="vertical" >
12 +
13 + <android.support.v4.view.ViewPager
14 + android:id="@+id/adv_pager"
15 + android:layout_width="wrap_content"
16 + android:layout_height="wrap_content" >
17 + </android.support.v4.view.ViewPager>
18 +
19 + <LinearLayout
20 + android:id="@+id/viewGroup"
21 + android:layout_width="match_parent"
22 + android:layout_height="match_parent"
23 + android:layout_below="@id/adv_pager"
24 + android:layout_marginTop="-60dp"
25 + android:gravity="center_horizontal"
26 + android:orientation="horizontal" >
27 + </LinearLayout>
28 +
29 + <RelativeLayout
30 + android:id="@+id/layout_chck_backgroud"
31 + android:layout_width="180dp"
32 + android:layout_height="30dp"
33 + android:layout_below="@id/adv_pager"
34 + android:layout_centerHorizontal="true"
35 + android:layout_marginTop="-30dp"
36 + android:background="#D0000000" >
37 +
38 + <CheckBox
39 + android:id="@+id/chck_not_show_today"
40 + android:layout_width="wrap_content"
41 + android:layout_height="wrap_content"
42 + android:checked="false"
43 + android:text="@string/p7725_sdk_not_show_today"
44 + android:textColor="#FFFFFF" />
45 + </RelativeLayout>
46 + </RelativeLayout>
47 +
48 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<RelativeLayout
2 + xmlns:android="http://schemas.android.com/apk/res/android"
3 + xmlns:tools="http://schemas.android.com/tools"
4 + android:layout_width="fill_parent"
5 + android:layout_height="fill_parent"
6 + android:gravity="center" >
7 +
8 + <RelativeLayout
9 + android:id="@+id/rl_root"
10 + android:layout_width="fill_parent"
11 + android:layout_height="fill_parent"
12 + android:background="#0000"
13 + android:gravity="center" >
14 +
15 + <RelativeLayout
16 + android:id="@+id/rl_exit"
17 + android:layout_width="wrap_content"
18 + android:layout_height="wrap_content"
19 + android:layout_centerHorizontal="true"
20 + android:background="@drawable/p7725_exit_bg1"
21 + android:orientation="vertical" >
22 +
23 + <Button
24 + android:id="@+id/btn_cancel"
25 + android:layout_width="wrap_content"
26 + android:layout_height="wrap_content"
27 + android:background="@drawable/com_7725_close" />
28 +
29 + <ImageView
30 + android:id="@+id/iv_title"
31 + android:layout_width="wrap_content"
32 + android:layout_height="wrap_content"
33 + android:background="@drawable/com_7725_tips"
34 + android:visibility="gone" />
35 +
36 + <ImageView
37 + android:id="@+id/iv_content"
38 + android:layout_width="wrap_content"
39 + android:layout_height="wrap_content"
40 + android:scaleType="fitXY" />
41 + </RelativeLayout>
42 +
43 + <Button
44 + android:id="@+id/btn_exit"
45 + style="@style/Button"
46 + android:layout_width="wrap_content"
47 + android:layout_height="wrap_content"
48 + android:layout_below="@id/rl_exit"
49 + android:layout_centerHorizontal="true"
50 + android:background="@drawable/p7725_exit_ok_selector" />
51 + </RelativeLayout>
52 +
53 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:tools="http://schemas.android.com/tools"
3 + android:layout_width="match_parent"
4 + android:layout_height="match_parent"
5 + android:gravity="center" >
6 +
7 + <include
8 + android:id="@+id/ll_login"
9 + layout="@layout/p7725_sdk_layout_login" />
10 +
11 + <include
12 + android:id="@+id/ll_register"
13 + layout="@layout/p7725_sdk_layout_register"
14 + android:visibility="gone" />
15 +
16 + <include
17 + android:id="@+id/ll_findpass"
18 + layout="@layout/p7725_sdk_layout_findpass"
19 + android:visibility="gone" />
20 +
21 + <include
22 + android:id="@+id/ll_changepass"
23 + layout="@layout/p7725_sdk_layout_changepass"
24 + android:visibility="gone" />
25 +
26 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:tools="http://schemas.android.com/tools"
3 + android:layout_width="match_parent"
4 + android:layout_height="match_parent"
5 + android:orientation="vertical" >
6 +
7 + <Button
8 + android:id="@+id/btn_to_fblogin"
9 + android:layout_width="wrap_content"
10 + android:layout_height="wrap_content"
11 + android:layout_alignParentBottom="true"
12 + android:layout_alignParentLeft="true"
13 + android:background="@drawable/p7725_sdk_btn_facebook_login" />
14 +
15 + <Button
16 + android:id="@+id/btn_to_login"
17 + android:layout_width="wrap_content"
18 + android:layout_height="wrap_content"
19 + android:layout_alignParentBottom="true"
20 + android:layout_alignParentRight="true"
21 + android:background="@drawable/p7725_sdk_btn_7725_login" />
22 +
23 + <Button
24 + android:id="@+id/btn_to_quick_login"
25 + android:layout_width="wrap_content"
26 + android:layout_height="wrap_content"
27 + android:layout_alignParentBottom="true"
28 + android:layout_centerHorizontal="true"
29 + android:background="@drawable/p7725_sdk_btn_7725_quick_login"
30 + />
31 +
32 + <RelativeLayout
33 + android:id="@+id/layout_clause"
34 + android:layout_width="wrap_content"
35 + android:layout_height="wrap_content"
36 + android:layout_alignParentBottom="true"
37 + android:layout_centerInParent="true"
38 + android:layout_gravity="center" >
39 +
40 + <CheckBox
41 + android:id="@+id/chck_clause"
42 + android:layout_width="wrap_content"
43 + android:layout_height="wrap_content"
44 + style="@style/p7725_sdk_checkbox"
45 + android:layout_alignParentBottom="true"
46 + android:checked="true"
47 + android:text="@string/p7725_sdk_chck_clause"
48 + android:textColor="@color/p7725_sdk_clause"/>
49 +
50 + <Button
51 + android:id="@+id/btn_agree_privacy"
52 + android:layout_width="wrap_content"
53 + android:layout_height="wrap_content"
54 + android:layout_alignBaseline="@+id/chck_clause"
55 + android:layout_alignBottom="@+id/chck_clause"
56 + android:layout_toRightOf="@+id/chck_clause"
57 + android:background="@color/p7725_sdk_transparent"
58 + android:text="@string/p7725_sdk_txt_agree_privacy"
59 + android:textAppearance="?android:attr/textAppearanceSmall"
60 + android:textColor="@color/p7725_sdk_clause"
61 + />
62 +
63 + <TextView
64 + android:id="@+id/txt_agree_and"
65 + android:layout_width="wrap_content"
66 + android:layout_height="wrap_content"
67 + android:layout_alignBaseline="@+id/btn_agree_privacy"
68 + android:layout_alignBottom="@+id/btn_agree_privacy"
69 + android:layout_toRightOf="@+id/btn_agree_privacy"
70 + android:text="@string/p7725_sdk_txt_agree_and"
71 + android:textAppearance="?android:attr/textAppearanceSmall"
72 + android:textColor="@color/p7725_sdk_clause" />
73 +
74 + <Button
75 + android:id="@+id/btn_agree_clause"
76 + android:layout_width="wrap_content"
77 + android:layout_height="wrap_content"
78 + android:layout_alignBaseline="@+id/txt_agree_and"
79 + android:layout_alignBottom="@+id/txt_agree_and"
80 + android:layout_toRightOf="@+id/txt_agree_and"
81 + android:background="@color/p7725_sdk_transparent"
82 + android:text="@string/p7725_sdk_txt_agree_clause"
83 + android:textAppearance="?android:attr/textAppearanceSmall"
84 + android:textColor="@color/p7725_sdk_clause"
85 + />
86 +
87 + </RelativeLayout>
88 +
89 +
90 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:tools="http://schemas.android.com/tools"
3 + android:id="@+id/rl_userlist_root"
4 + android:layout_width="fill_parent"
5 + android:layout_height="fill_parent"
6 + android:layout_marginLeft="20dp"
7 + android:layout_marginRight="20dp"
8 + android:background="#0000" >
9 +
10 + <ListView
11 + android:id="@+id/lv_userlist"
12 + android:layout_width="230dp"
13 + android:layout_height="250dp"
14 + android:layout_centerHorizontal="true"
15 + android:layout_centerVertical="true"
16 + android:layout_marginLeft="20dp"
17 + android:background="#fff"
18 + android:cacheColorHint="#0000" />
19 +
20 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:tools="http://schemas.android.com/tools"
3 + android:id="@+id/rl_userlist_root"
4 + android:layout_width="fill_parent"
5 + android:layout_height="fill_parent"
6 + android:layout_marginLeft="50dp"
7 + android:layout_marginRight="50dp"
8 + android:background="#0000"
9 + android:gravity="center" >
10 +
11 + <ListView
12 + android:id="@+id/lv_userlist"
13 + android:layout_width="190dp"
14 + android:layout_height="250dp"
15 + android:background="#fff"
16 + android:cacheColorHint="#0000" />
17 +
18 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 + android:layout_width="match_parent"
4 + android:layout_height="match_parent"
5 + android:background="#000000"
6 + android:orientation="vertical" >
7 +
8 +
9 +
10 +</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 + android:id="@+id/rl_diaog_root"
4 + android:layout_width="wrap_content"
5 + android:layout_height="wrap_content"
6 + android:background="@drawable/p7725_sdk_box_bg" >
7 +
8 + <TextView
9 + android:id="@+id/tv_mydialog_message"
10 + style="@style/Title"
11 + android:layout_width="fill_parent"
12 + android:layout_height="wrap_content"
13 + android:layout_margin="10dp"
14 + android:gravity="left|center_vertical" />
15 +
16 + <Button
17 + android:id="@+id/btn_mydialog_ok"
18 + style="@style/Button"
19 + android:layout_width="wrap_content"
20 + android:layout_height="wrap_content" />
21 +
22 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:tools="http://schemas.android.com/tools"
3 + android:id="@+id/dialog_root"
4 + android:layout_width="fill_parent"
5 + android:layout_height="wrap_content"
6 + android:background="@drawable/p7725_sdk_box_bg" >
7 +
8 + <!-- 标题 -->
9 + <!--
10 + <ImageView
11 + android:id="@+id/iv_dialog_title"
12 + android:layout_width="wrap_content"
13 + android:layout_height="wrap_content"
14 + android:background="@drawable/p7725_sdk_botton_loginlogo"
15 + android:contentDescription="@string/com_7725_app_name" />
16 + -->
17 +
18 +
19 +<ScrollView
20 + android:id="@+id/sv_dialog_content"
21 + android:layout_width="wrap_content"
22 + android:layout_height="wrap_content">
23 + <TextView
24 + android:id="@+id/tv_dialog_content"
25 + android:layout_width="wrap_content"
26 + android:layout_height="wrap_content"
27 + android:gravity="left"
28 + android:textColor="#fff"
29 + android:textSize="38.74px"
30 + android:textStyle="bold" />
31 +
32 +</ScrollView>
33 + <Button
34 + android:id="@+id/btn_dialog_to_binding"
35 + style="@style/Button"
36 + android:layout_width="wrap_content"
37 + android:layout_height="wrap_content"
38 + android:text="@string/p7725_sdk_to_binding" />
39 +
40 + <Button
41 + android:id="@+id/btn_dialog_cancle"
42 + style="@style/Button"
43 + android:layout_width="wrap_content"
44 + android:layout_height="wrap_content"
45 + android:text="@string/p7725_sdk_text_cancel" />
46 +
47 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
3 + android:id="@android:id/tabhost"
4 + android:background="@android:color/black"
5 + android:layout_width="fill_parent"
6 + android:layout_height="fill_parent" >
7 +
8 + <LinearLayout
9 + android:layout_width="fill_parent"
10 + android:layout_height="fill_parent"
11 + android:orientation="vertical" >
12 +
13 + <FrameLayout
14 + android:id="@android:id/tabcontent"
15 + android:layout_width="0dp"
16 + android:layout_height="0dp"
17 + android:layout_weight="0" />
18 +
19 + <FrameLayout
20 + android:id="@+id/realtabcontent"
21 + android:layout_width="fill_parent"
22 + android:layout_height="0dp"
23 + android:layout_weight="1" />
24 +
25 + <TabWidget
26 + android:id="@android:id/tabs"
27 + android:layout_width="fill_parent"
28 + android:layout_height="wrap_content"
29 + android:background="@drawable/p7725_recreation_footerbg"
30 + android:orientation="horizontal"
31 + android:padding="1dp" />
32 + </LinearLayout>
33 +
34 +</TabHost>
...\ No newline at end of file ...\ No newline at end of file
1 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + android:id="@+id/tabsLayout"
3 + android:layout_width="fill_parent"
4 + android:layout_height="fill_parent"
5 + android:gravity="center"
6 + android:orientation="vertical" >
7 +
8 + <ImageView
9 + android:id="@+id/tab_icon"
10 + android:contentDescription="@string/com_7725_ok"
11 + android:layout_width="wrap_content"
12 + android:layout_height="wrap_content" />
13 +
14 +</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 + android:layout_width="match_parent"
4 + android:layout_height="match_parent"
5 + android:orientation="vertical" >
6 +
7 + <com.platform7725.gamesdk.view.TitleView
8 + android:id="@+id/game_center_title"
9 + android:layout_width="fill_parent"
10 + android:layout_height="wrap_content"
11 + android:orientation="vertical" />
12 +
13 + <com.platform7725.gamesdk.view.ScrollViewExtend
14 + android:layout_width="match_parent"
15 + android:layout_height="match_parent"
16 + android:background="@color/p7725_sdk_background" >
17 +
18 + <LinearLayout
19 + android:layout_width="match_parent"
20 + android:layout_height="wrap_content"
21 + android:orientation="vertical" >
22 +
23 + <LinearLayout
24 + android:layout_width="match_parent"
25 + android:layout_height="120dp"
26 + android:orientation="horizontal"
27 + android:padding="@dimen/p7725_distance" >
28 +
29 + <android.support.v4.view.ViewPager
30 + android:id="@+id/game_center_ad"
31 + android:layout_width="fill_parent"
32 + android:layout_height="wrap_content" />
33 + </LinearLayout>
34 +
35 + <com.platform7725.gamesdk.view.ImproveListView
36 + android:id="@+id/game_center_list"
37 + style="@style/style_listview"
38 + android:layout_marginLeft="@dimen/p7725_distance"
39 + android:layout_marginRight="@dimen/p7725_distance"
40 + android:dividerHeight="@dimen/p7725_distance"
41 + android:paddingBottom="@dimen/p7725_distance"
42 + android:visibility="gone" />
43 +
44 + <com.platform7725.gamesdk.view.ImproveGridView
45 + android:id="@+id/game_center_grid"
46 + android:layout_width="fill_parent"
47 + android:layout_height="wrap_content"
48 + android:gravity="center"
49 + android:horizontalSpacing="@dimen/p7725_distance"
50 + android:numColumns="2"
51 + android:paddingBottom="@dimen/p7725_distance"
52 + android:paddingLeft="@dimen/p7725_distance"
53 + android:paddingRight="@dimen/p7725_distance"
54 + android:verticalSpacing="@dimen/p7725_distance"
55 + android:visibility="gone" />
56 +
57 + <include layout="@layout/p7725_sdk_item_search_more" />
58 + </LinearLayout>
59 + </com.platform7725.gamesdk.view.ScrollViewExtend>
60 +
61 +</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 + android:layout_width="match_parent"
4 + android:layout_height="match_parent"
5 + android:orientation="vertical"
6 + android:background="@android:color/black"
7 + >
8 +
9 + <com.platform7725.gamesdk.view.TitleView
10 + android:id="@+id/user_center_title"
11 + android:layout_width="fill_parent"
12 + android:layout_height="wrap_content"
13 + android:orientation="vertical" />
14 +
15 + <ScrollView
16 + android:layout_width="match_parent"
17 + android:layout_height="match_parent"
18 + android:padding="@dimen/p7725_distance"
19 + android:background="@color/p7725_sdk_background" >
20 +
21 + <LinearLayout
22 + android:layout_width="match_parent"
23 + android:layout_height="wrap_content"
24 + android:orientation="vertical"
25 + >
26 +
27 + <LinearLayout
28 + android:layout_width="match_parent"
29 + android:layout_height="wrap_content"
30 + android:layout_marginBottom="@dimen/p7725_distance"
31 + android:layout_marginTop="@dimen/p7725_distance"
32 + android:orientation="horizontal" >
33 +
34 + <TextView
35 + android:id="@+id/user_center_username"
36 + android:layout_width="0dp"
37 + android:layout_height="wrap_content"
38 + android:layout_weight="1"
39 + android:singleLine="true"
40 + android:textSize="@dimen/p7725_font_name_size"
41 + android:textColor="@color/p7725_sdk_black_light" />
42 +
43 + <Button
44 + android:id="@+id/user_center_invite_by_fb"
45 + android:layout_width="100dp"
46 + android:layout_height="30dp"
47 + android:background="@drawable/p7725_sdk_btn_orange_red"
48 + android:text="@string/p7725_invite_by_fb"
49 + android:textSize="@dimen/p7725_font_name_size"
50 + android:textColor="@android:color/white" />
51 + </LinearLayout>
52 +
53 + <Button
54 + android:id="@+id/user_center_change_password"
55 + style="@style/p7725_sdk_user_center_button"
56 + android:drawableLeft="@drawable/p7725_sdk_change_password_off"
57 + android:text="@string/p7725_change_password" />
58 +
59 +
60 + <Button
61 + android:layout_marginTop="-5dp"
62 + android:id="@+id/user_center_binding_username"
63 + style="@style/p7725_sdk_user_center_button"
64 + android:drawableLeft="@drawable/p7725_sdk_binding_off"
65 + android:text="@string/p7725_binding_username" />
66 +
67 + <Button
68 + android:layout_marginTop="-5dp"
69 + android:id="@+id/user_center_download_manager"
70 + style="@style/p7725_sdk_user_center_button"
71 + android:drawableLeft="@drawable/p7725_sdk_download_off"
72 + android:text="@string/p7725_download_manager" />
73 +
74 + <Button
75 + android:id="@+id/user_center_deposits_record"
76 + style="@style/p7725_sdk_user_center_button"
77 + android:layout_marginTop="@dimen/p7725_distance"
78 + android:drawableLeft="@drawable/p7725_sdk_stored_value_off"
79 + android:text="@string/p7725_deposits_record" />
80 +
81 +</LinearLayout>
82 +</ScrollView>
83 +</LinearLayout>
1 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:tools="http://schemas.android.com/tools"
3 + android:layout_width="fill_parent"
4 + android:layout_height="wrap_content"
5 + android:background="@android:color/white"
6 + android:descendantFocusability="blocksDescendants"
7 + android:orientation="horizontal"
8 + android:padding="@dimen/p7725_distance" >
9 +
10 + <LinearLayout
11 + android:layout_width="wrap_content"
12 + android:layout_height="wrap_content"
13 + android:paddingRight="5dp"
14 + android:orientation="vertical" >
15 +
16 + <TextView
17 + android:id="@+id/deposit_record_game"
18 + android:layout_width="wrap_content"
19 + android:layout_height="wrap_content"
20 + android:gravity="center_vertical"
21 + android:singleLine="true"
22 + android:textColor="@color/p7725_sdk_orange_light"
23 + android:textSize="@dimen/p7725_font_name_size" />
24 +
25 + <TextView
26 + android:id="@+id/deposit_record_way"
27 + android:layout_width="wrap_content"
28 + android:layout_height="wrap_content"
29 + android:singleLine="true"
30 + android:layout_marginTop="@dimen/p7725_distance_half"
31 + android:textSize="@dimen/p7725_font_detail_size"
32 + android:textColor="@color/p7725_sdk_gray_deep"
33 + />
34 + </LinearLayout>
35 +
36 + <TextView
37 + android:id="@+id/deposit_record_gold"
38 + android:layout_width="wrap_content"
39 + android:layout_height="wrap_content"
40 + android:singleLine="true"
41 + android:textColor="@color/p7725_sdk_gray_deep"
42 + android:textSize="@dimen/p7725_font_name_size"
43 + />
44 +
45 +
46 +
47 + <TextView
48 + android:id="@+id/deposit_record_money"
49 + android:layout_width="0dp"
50 + android:layout_height="wrap_content"
51 + android:layout_weight="1"
52 + android:singleLine="true"
53 + android:gravity="center_horizontal"
54 + android:paddingLeft="5dp"
55 + android:textSize="@dimen/p7725_font_name_size"
56 + android:textColor="@color/p7725_sdk_orange_light"
57 + />
58 +
59 + <TextView
60 + android:id="@+id/deposit_record_time"
61 + android:layout_width="0dp"
62 + android:layout_height="wrap_content"
63 + android:layout_weight="1"
64 + android:gravity="right"
65 + android:textColor="@color/p7725_sdk_gray_deep"
66 + android:textSize="@dimen/p7725_font_detail_size"/>
67 +</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:tools="http://schemas.android.com/tools"
3 + android:layout_width="fill_parent"
4 + android:layout_height="wrap_content"
5 + android:background="@android:color/white"
6 + android:descendantFocusability="blocksDescendants"
7 + android:gravity="center_vertical"
8 + android:orientation="horizontal"
9 + android:padding="@dimen/p7725_distance" >
10 +
11 + <ImageView
12 + android:id="@+id/game_list_icon"
13 + android:layout_width="@dimen/p7725_icon_middle_size"
14 + android:layout_height="@dimen/p7725_icon_middle_size"
15 + android:layout_marginRight="@dimen/p7725_distance"
16 + android:background="@drawable/p7725_icon_default" />
17 +
18 + <!-- <LinearLayout
19 + android:layout_width="0dp"
20 + android:layout_height="wrap_content"
21 + android:layout_marginLeft="@dimen/p7725_distance"
22 + android:layout_weight="1"
23 + android:baselineAligned="false"
24 + android:orientation="vertical" > -->
25 +
26 + <TextView
27 + android:id="@+id/game_list_name"
28 + android:layout_width="fill_parent"
29 + android:layout_height="wrap_content"
30 + android:singleLine="true"
31 + android:layout_toRightOf="@+id/game_list_icon"
32 + android:textColor="@color/p7725_sdk_black_light"
33 + android:textSize="@dimen/p7725_font_name_size" />
34 +
35 + <RatingBar
36 + android:id="@+id/game_list_good"
37 + style="@style/game_detail_ratingBar"
38 + android:layout_width="wrap_content"
39 + android:layout_height="wrap_content"
40 + android:isIndicator="true"
41 + android:layout_toRightOf="@+id/game_list_icon"
42 + android:layout_below="@+id/game_list_name"
43 + android:numStars="5"
44 + android:rating="5" />
45 +
46 + <TextView
47 + android:id="@+id/game_list_type"
48 + android:layout_width="fill_parent"
49 + android:layout_height="wrap_content"
50 + android:singleLine="true"
51 + android:layout_toRightOf="@+id/game_list_icon"
52 + android:layout_below="@+id/game_list_good"
53 + android:textColor="@color/p7725_sdk_gray_deep"
54 + android:textSize="@dimen/p7725_font_detail_size" />
55 +
56 + <TextView
57 + android:id="@+id/game_list_size"
58 + android:layout_width="fill_parent"
59 + android:layout_height="wrap_content"
60 + android:singleLine="true"
61 + android:layout_toRightOf="@+id/game_list_icon"
62 + android:layout_below="@+id/game_list_type"
63 + android:textColor="@color/p7725_sdk_gray_deep"
64 + android:textSize="@dimen/p7725_font_detail_size" />
65 + <!-- </LinearLayout> -->
66 +
67 + <Button
68 + android:id="@+id/game_list_download"
69 + android:layout_width="60dp"
70 + android:layout_height="30dp"
71 + android:background="@drawable/p7725_sdk_btn_orange_red"
72 + android:layout_alignParentRight="true"
73 + android:layout_below="@+id/game_list_name"
74 + android:text="@string/notification_download"
75 + android:textColor="@android:color/white"
76 + android:textSize="@dimen/p7725_font_name_size"
77 + android:textStyle="bold" />
78 +
79 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 + android:id="@+id/root"
4 + android:layout_width="fill_parent"
5 + android:layout_height="wrap_content"
6 + android:background="@android:color/transparent"
7 + android:gravity="center"
8 + android:orientation="vertical"
9 + android:visibility="gone"
10 + android:padding="@dimen/p7725_distance_half" >
11 +
12 + <Button
13 + android:id="@+id/more_game"
14 + android:layout_width="130dp"
15 + android:layout_height="wrap_content"
16 + android:layout_marginBottom="3dp"
17 + android:background="@drawable/p7725_recreation_gamemore"
18 + android:gravity="center"
19 + android:text="@string/p7725_sdk_more_game"
20 + android:textColor="#000"
21 + android:textSize="@dimen/p7725_font_name_size" />
22 +
23 +</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<TextView xmlns:android="http://schemas.android.com/apk/res/android"
2 + android:id="@android:id/text1"
3 + android:layout_width="match_parent"
4 + android:layout_height="40dp"
5 + android:gravity="center_vertical"
6 + android:textColor="#000"
7 + android:textSize="16sp"
8 + android:paddingLeft="3dp"
9 +/>
1 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:tools="http://schemas.android.com/tools"
3 + android:id="@+id/ll_changepass"
4 + android:layout_width="match_parent"
5 + android:layout_height="match_parent"
6 + android:background="@drawable/p7725_sdk_box_bg"
7 + android:orientation="vertical" >
8 +
9 + <TextView
10 + android:id="@+id/tv_changepass_title"
11 + style="@style/Title"
12 + android:layout_width="wrap_content"
13 + android:layout_height="wrap_content"
14 + android:text="@string/p7725_sdk_tv_changepass2" />
15 +
16 + <EditText
17 + android:id="@+id/et_changepass_input_username"
18 + style="@style/Input"
19 + android:layout_width="wrap_content"
20 + android:layout_height="wrap_content"
21 + android:hint="@string/p7725_sdk_hint_changepass_input_username"
22 + android:inputType="text" />
23 +
24 + <EditText
25 + android:id="@+id/et_changepass_input_pass"
26 + style="@style/Input"
27 + android:layout_width="wrap_content"
28 + android:layout_height="wrap_content"
29 + android:hint="@string/p7725_sdk_hint_changepass_input_pass"
30 + android:inputType="textPassword" />
31 +
32 + <EditText
33 + android:id="@+id/et_changepass_input_passnew"
34 + style="@style/Input"
35 + android:layout_width="wrap_content"
36 + android:layout_height="wrap_content"
37 + android:hint="@string/p7725_sdk_hint_changepass_input_passnew"
38 + android:inputType="textPassword" />
39 +
40 + <Button
41 + android:id="@+id/btn_changepass_ok"
42 + style="@style/Button"
43 + android:layout_width="wrap_content"
44 + android:layout_height="wrap_content"
45 + android:text="@string/p7725_sdk_btn_ok" />
46 +
47 + <Button
48 + android:id="@+id/btn_changepass_back"
49 + style="@style/Button"
50 + android:layout_width="wrap_content"
51 + android:layout_height="wrap_content"
52 + android:text="@string/p7725_sdk_btn_back" />
53 +
54 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:tools="http://schemas.android.com/tools"
3 + android:layout_width="wrap_content"
4 + android:layout_height="wrap_content"
5 + android:background="@drawable/p7725_sdk_box_bg" >
6 +
7 + <TextView
8 + android:id="@+id/tv_findpass_title"
9 + style="@style/Title"
10 + android:layout_width="wrap_content"
11 + android:layout_height="wrap_content"
12 + android:text="@string/p7725_sdk_tv_findpass2" />
13 +
14 + <EditText
15 + android:id="@+id/et_findpass_input_username"
16 + style="@style/Input"
17 + android:layout_width="wrap_content"
18 + android:layout_height="wrap_content"
19 + android:hint="@string/p7725_sdk_hint_findpass_input_username"
20 + android:inputType="text" />
21 +
22 + <EditText
23 + android:id="@+id/et_findpass_input_email"
24 + style="@style/Input"
25 + android:layout_width="wrap_content"
26 + android:layout_height="wrap_content"
27 + android:hint="@string/p7725_sdk_hint_findpass_input_email"
28 + android:inputType="textEmailAddress" />
29 +
30 + <Button
31 + android:id="@+id/btn_findpass_ok"
32 + style="@style/Button"
33 + android:layout_width="wrap_content"
34 + android:layout_height="wrap_content"
35 + android:text="@string/p7725_sdk_btn_ok" />
36 +
37 + <Button
38 + android:id="@+id/btn_findpass_back"
39 + style="@style/Button"
40 + android:layout_width="wrap_content"
41 + android:layout_height="wrap_content"
42 + android:text="@string/p7725_sdk_btn_back" />
43 +
44 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:tools="http://schemas.android.com/tools"
3 + android:id="@+id/ll_root"
4 + android:layout_width="wrap_content"
5 + android:layout_height="wrap_content"
6 + android:background="@drawable/p7725_sdk_tool_bar"
7 + android:gravity="center_vertical"
8 + android:paddingLeft="27dp"
9 + android:paddingTop="5dp"
10 + android:paddingRight="10dp"
11 + android:paddingBottom="6dp"
12 + android:orientation="horizontal" >
13 +
14 + <TextView
15 + android:id="@+id/tv_gamelist_left"
16 + android:layout_width="0dp"
17 + android:layout_height="wrap_content"
18 + android:layout_weight="1.0"
19 + android:background="@drawable/p7725_sdk_gamecenter_selector" />
20 +
21 + <TextView
22 + android:id="@+id/tv_strategy_left"
23 + android:layout_width="0dp"
24 + android:layout_height="wrap_content"
25 + android:layout_weight="1.0"
26 + android:background="@drawable/p7725_sdk_guide_selector" />
27 +
28 + <TextView
29 + android:id="@+id/tv_fans_left"
30 + android:layout_width="0dp"
31 + android:layout_height="wrap_content"
32 + android:layout_weight="1.0"
33 + android:background="@drawable/p7725_sdk_fans_selector" />
34 +
35 + <TextView
36 + android:id="@+id/tv_personal_left"
37 + android:layout_width="0dp"
38 + android:layout_height="wrap_content"
39 + android:layout_weight="1.0"
40 + android:background="@drawable/p7725_sdk_account_selector" />
41 +
42 +</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:tools="http://schemas.android.com/tools"
3 + android:layout_width="wrap_content"
4 + android:layout_height="wrap_content"
5 + android:background="@drawable/p7725_sdk_box_bg" >
6 +
7 + <!-- 标题 -->
8 + <ImageView
9 + android:id="@+id/iv_login_title"
10 + android:layout_width="wrap_content"
11 + android:layout_height="wrap_content"
12 + android:background="@drawable/p7725_sdk_botton_loginlogo"
13 + android:contentDescription="@string/com_7725_app_name" />
14 +
15 + <!-- 帐号,密码 -->
16 +
17 + <TextView
18 + android:id="@+id/tv_login_input_username"
19 + android:layout_width="wrap_content"
20 + android:layout_height="wrap_content"
21 + android:gravity="left"
22 + android:hint="@string/p7725_sdk_hint_login_input_username"
23 + android:text="@string/p7725_sdk_tv_login_input_username"
24 + android:textColor="#fff"
25 + android:textSize="38.74px"
26 + android:textStyle="bold" />
27 +
28 + <EditText
29 + android:id="@+id/et_login_input_username"
30 + style="@style/Input"
31 + android:layout_width="wrap_content"
32 + android:layout_height="wrap_content"
33 + android:hint="@string/p7725_sdk_hint_login_input_username"
34 + android:inputType="text"
35 + android:paddingRight="30dp" />
36 +
37 + <Button
38 + android:id="@+id/btn_login_showList"
39 + android:layout_width="wrap_content"
40 + android:layout_height="wrap_content"
41 + android:background="@drawable/p7725_sdk_btn_login_showlist" />
42 +
43 + <TextView
44 + android:id="@+id/tv_login_input_pass"
45 + android:layout_width="wrap_content"
46 + android:layout_height="wrap_content"
47 + android:gravity="left"
48 + android:hint="@string/p7725_sdk_hint_login_input_username"
49 + android:text="@string/p7725_sdk_tv_login_input_pass"
50 + android:textColor="#fff"
51 + android:textSize="38.74px"
52 + android:textStyle="bold" />
53 +
54 + <EditText
55 + android:id="@+id/et_login_input_pass"
56 + style="@style/Input"
57 + android:layout_width="wrap_content"
58 + android:layout_height="wrap_content"
59 + android:hint="@string/p7725_sdk_hint_login_input_pass"
60 + android:inputType="textPassword" />
61 +
62 + <!-- 客服 ,找回,修改 -->
63 +
64 + <TextView
65 + android:id="@+id/tv_to_customer"
66 + android:layout_width="wrap_content"
67 + android:layout_height="wrap_content"
68 + android:gravity="left"
69 + android:text="@string/p7725_sdk_tv_customer"
70 + android:textColor="#000"
71 + android:textSize="20px" />
72 +
73 + <TextView
74 + android:id="@+id/tv_to_findpass"
75 + android:layout_width="wrap_content"
76 + android:layout_height="wrap_content"
77 + android:gravity="left"
78 + android:text="@string/p7725_sdk_tv_findpass"
79 + android:textColor="#000"
80 + android:textSize="20px" />
81 +
82 + <TextView
83 + android:id="@+id/tv_to_changepass"
84 + android:layout_width="wrap_content"
85 + android:layout_height="wrap_content"
86 + android:gravity="left"
87 + android:text="@string/p7725_sdk_tv_changepass"
88 + android:textColor="#000"
89 + android:textColorLink="#fff"
90 + android:textSize="20px" />
91 + <!-- 登入,注册 -->
92 +
93 + <Button
94 + android:id="@+id/btn_login"
95 + style="@style/Button"
96 + android:layout_width="wrap_content"
97 + android:layout_height="wrap_content"
98 + android:text="@string/p7725_sdk_tv_login" />
99 +
100 + <Button
101 + android:id="@+id/btn_to_register"
102 + style="@style/Button"
103 + android:layout_width="wrap_content"
104 + android:layout_height="wrap_content"
105 + android:text="@string/p7725_sdk_btn_register" />
106 +
107 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:tools="http://schemas.android.com/tools"
3 + android:layout_width="match_parent"
4 + android:layout_height="match_parent"
5 + android:background="@drawable/p7725_sdk_box_bg"
6 + android:orientation="vertical" >
7 +
8 + <TextView
9 + android:id="@+id/tv_register_title"
10 + style="@style/Title"
11 + android:layout_width="wrap_content"
12 + android:layout_height="wrap_content"
13 + android:text="@string/p7725_sdk_tv_register_title" />
14 +
15 + <EditText
16 + android:id="@+id/et_register_input_username"
17 + style="@style/Input"
18 + android:layout_width="wrap_content"
19 + android:layout_height="wrap_content"
20 + android:hint="@string/p7725_sdk_hint_register_input_username"
21 + android:inputType="text" />
22 +
23 + <EditText
24 + android:id="@+id/et_register_input_pass"
25 + style="@style/Input"
26 + android:layout_width="wrap_content"
27 + android:layout_height="wrap_content"
28 + android:hint="@string/p7725_sdk_hint_register_input_pass"
29 + android:inputType="textPassword" />
30 +
31 + <EditText
32 + android:id="@+id/et_register_input_passok"
33 + style="@style/Input"
34 + android:layout_width="wrap_content"
35 + android:layout_height="wrap_content"
36 + android:hint="@string/p7725_sdk_hint_register_input_passok"
37 + android:inputType="textPassword" />
38 +
39 + <EditText
40 + android:id="@+id/et_register_input_email"
41 + style="@style/Input"
42 + android:layout_width="wrap_content"
43 + android:layout_height="wrap_content"
44 + android:hint="@string/p7725_sdk_hint_register_input_email"
45 + android:inputType="textEmailAddress" />
46 +
47 + <Button
48 + android:id="@+id/btn_register"
49 + style="@style/Button"
50 + android:layout_width="wrap_content"
51 + android:layout_height="wrap_content"
52 + android:text="@string/p7725_sdk_btn_register" />
53 +
54 + <Button
55 + android:id="@+id/btn_register_back"
56 + style="@style/Button"
57 + android:layout_width="wrap_content"
58 + android:layout_height="wrap_content"
59 + android:text="@string/p7725_sdk_btn_back" />
60 +
61 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:tools="http://schemas.android.com/tools"
3 + android:layout_width="match_parent"
4 + android:layout_height="@dimen/p7725_title_height"
5 + android:background="@drawable/p7725_sdk_bar"
6 + android:paddingRight="@dimen/p7725_distance"
7 + android:baselineAligned="false" >
8 +
9 + <Button
10 + android:id="@+id/title_previous"
11 + android:layout_width="wrap_content"
12 + android:layout_height="wrap_content"
13 + android:background="@drawable/p7725_sdk_btn_previous"
14 + android:layout_centerVertical="true"
15 + android:visibility="gone"
16 + android:textColor="@android:color/black" />
17 +
18 + <TextView
19 + android:id="@+id/title_text"
20 + android:layout_width="wrap_content"
21 + android:layout_height="wrap_content"
22 + android:layout_centerHorizontal="true"
23 + android:layout_centerVertical="true"
24 + android:gravity="center"
25 + android:textColor="@android:color/white"
26 + android:textSize="@dimen/p7725_font_title_size" />
27 +
28 + <Button
29 + android:id="@+id/title_back"
30 + android:layout_width="wrap_content"
31 + android:layout_height="wrap_content"
32 + android:layout_alignParentRight="true"
33 + android:layout_centerVertical="true"
34 + android:background="@drawable/p7725_sdk_btn_back"
35 + android:textColor="@android:color/black" />
36 +
37 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 + android:id="@+id/layout_line_share"
4 + android:layout_width="match_parent"
5 + android:layout_height="match_parent"
6 + android:orientation="vertical" >
7 +
8 +<WebView
9 + android:id="@+id/webview_line"
10 + android:layout_width="match_parent"
11 + android:layout_height="match_parent"
12 + />
13 +
14 +</LinearLayout>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 + android:layout_width="match_parent"
4 + android:layout_height="match_parent"
5 + android:orientation="vertical" >
6 +
7 + <com.platform7725.gamesdk.view.TitleView
8 + android:id="@+id/binding_title"
9 + android:layout_width="match_parent"
10 + android:layout_height="wrap_content" />
11 +
12 + <ScrollView
13 + android:layout_width="match_parent"
14 + android:layout_height="match_parent"
15 + android:background="@color/p7725_sdk_background" >
16 +
17 + <LinearLayout
18 + android:layout_width="match_parent"
19 + android:layout_height="wrap_content"
20 + android:orientation="vertical"
21 + android:padding="@dimen/p7725_distance" >
22 +
23 + <!-- 账号 -->
24 +
25 + <TextView
26 + style="@style/p7725_sdk_change_password_textview"
27 + android:text="@string/p7725_sdk_tv_login_input_username" />
28 +
29 + <EditText
30 + android:id="@+id/binding_username"
31 + style="@style/p7725_sdk_change_password_edittext"
32 + android:hint="@string/p7725_sdk_hint_register_input_username" />
33 +
34 + <!-- 密码 -->
35 +
36 + <TextView
37 + style="@style/p7725_sdk_change_password_textview"
38 + android:text="@string/p7725_sdk_tv_login_input_pass" />
39 +
40 + <EditText
41 + android:id="@+id/binding_password"
42 + style="@style/p7725_sdk_change_password_edittext"
43 + android:inputType="textPassword"
44 + android:hint="@string/p7725_sdk_hint_register_input_pass" />
45 +
46 + <!-- 确认密码 -->
47 +
48 + <TextView
49 + style="@style/p7725_sdk_change_password_textview"
50 + android:text="@string/p7725_sdk_binding_password_again" />
51 +
52 + <EditText
53 + android:id="@+id/binding_password_again"
54 + style="@style/p7725_sdk_change_password_edittext"
55 + android:inputType="textPassword"
56 + android:hint="@string/p7725_sdk_hint_register_input_passok" />
57 +
58 + <!-- 邮箱 -->
59 +
60 + <TextView
61 + style="@style/p7725_sdk_change_password_textview"
62 + android:text="@string/p7725_sdk_binding_email" />
63 +
64 + <EditText
65 + android:id="@+id/binding_email"
66 + style="@style/p7725_sdk_change_password_edittext"
67 + android:hint="@string/p7725_sdk_hint_register_input_email" />
68 +
69 + <LinearLayout
70 + android:layout_width="match_parent"
71 + android:layout_height="wrap_content"
72 + android:layout_marginTop="@dimen/p7725_font_name_size"
73 + android:background="@color/p7725_sdk_background"
74 + android:orientation="horizontal" >
75 +
76 + <Button
77 + android:id="@+id/binding_ok"
78 + style="@style/p7725_sdk_change_password_button"
79 + android:layout_marginRight="@dimen/p7725_font_name_size"
80 + android:text="@string/p7725_sdk_tv_binding_title" />
81 +
82 + <Button
83 + android:id="@+id/binding_back"
84 + style="@style/p7725_sdk_change_password_button"
85 + android:text="@string/p7725_sdk_btn_back" />
86 + </LinearLayout>
87 + </LinearLayout>
88 + </ScrollView>
89 +
90 +</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 + android:layout_width="match_parent"
4 + android:layout_height="match_parent"
5 + android:orientation="vertical" >
6 +
7 + <com.platform7725.gamesdk.view.TitleView
8 + android:id="@+id/change_password_title"
9 + android:layout_width="match_parent"
10 + android:layout_height="wrap_content" />
11 +
12 + <ScrollView
13 + android:layout_width="match_parent"
14 + android:layout_height="match_parent"
15 + android:background="@color/p7725_sdk_background"
16 + >
17 + <LinearLayout
18 + android:layout_width="match_parent"
19 + android:layout_height="wrap_content"
20 + android:orientation="vertical"
21 + android:padding="@dimen/p7725_distance" >
22 +
23 + <!-- 账号 -->
24 +
25 + <TextView
26 + style="@style/p7725_sdk_change_password_textview"
27 + android:text="@string/p7725_sdk_tv_login_input_username" />
28 +
29 + <TextView
30 + android:id="@+id/change_password_username"
31 + style="@style/p7725_sdk_change_password_edittext"
32 + android:textColor="@color/p7725_sdk_black_light"
33 + android:gravity="center_vertical"
34 + />
35 +
36 + <!-- 旧密码 -->
37 +
38 + <TextView
39 + style="@style/p7725_sdk_change_password_textview"
40 + android:text="@string/p7725_sdk_changepass_input_passold" />
41 +
42 + <EditText
43 + android:id="@+id/change_password_password_old"
44 + style="@style/p7725_sdk_change_password_edittext"
45 + android:inputType="textPassword"
46 + android:hint="@string/p7725_sdk_hint_changepass_input_pass" />
47 +
48 + <!-- 新密码 -->
49 +
50 + <TextView
51 + style="@style/p7725_sdk_change_password_textview"
52 + android:text="@string/p7725_sdk_changepass_input_passnew" />
53 +
54 + <EditText
55 + android:id="@+id/change_password_password_new"
56 + style="@style/p7725_sdk_change_password_edittext"
57 + android:inputType="textPassword"
58 + android:hint="@string/p7725_sdk_hint_changepass_input_passnew" />
59 +
60 +
61 + <LinearLayout
62 + android:layout_width="match_parent"
63 + android:layout_height="wrap_content"
64 + android:background="@color/p7725_sdk_background"
65 + android:orientation="horizontal"
66 + android:layout_marginTop="@dimen/p7725_font_name_size"
67 + >
68 +
69 + <Button
70 + android:id="@+id/change_password_ok"
71 + style="@style/p7725_sdk_change_password_button"
72 + android:text="@string/p7725_sdk_btn_ok"
73 + android:layout_marginRight="@dimen/p7725_font_name_size"
74 + />
75 +
76 + <Button
77 + android:id="@+id/change_password_back"
78 + style="@style/p7725_sdk_change_password_button"
79 + android:text="@string/p7725_sdk_btn_back"
80 + />
81 + </LinearLayout>
82 + </LinearLayout>
83 +</ScrollView>
84 +</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 + android:layout_width="match_parent"
4 + android:layout_height="match_parent"
5 + android:orientation="vertical" >
6 +
7 + <com.platform7725.gamesdk.view.TitleView
8 + android:id="@+id/deposits_record_title"
9 + android:layout_width="match_parent"
10 + android:layout_height="wrap_content" />
11 +
12 + <LinearLayout
13 + android:layout_width="match_parent"
14 + android:layout_height="fill_parent"
15 + android:background="@color/p7725_sdk_background"
16 + android:gravity="center"
17 + android:orientation="vertical" >
18 +
19 + <ListView
20 + android:id="@+id/deposits_record_list"
21 + style="@style/style_listview" />
22 +
23 + <TextView
24 + android:layout_width="wrap_content"
25 + android:layout_height="wrap_content"
26 + android:text="@string/p7725_sdk_deposits_no_record" />
27 + </LinearLayout>
28 +
29 +</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 + android:layout_width="match_parent"
4 + android:layout_height="match_parent"
5 + android:orientation="vertical" >
6 +
7 + <com.platform7725.gamesdk.view.TitleView
8 + android:id="@+id/game_detail_title"
9 + android:layout_width="fill_parent"
10 + android:layout_height="wrap_content"
11 + android:orientation="vertical" />
12 +
13 + <ScrollView
14 + android:id="@+id/sl_game_info_02"
15 + android:layout_width="fill_parent"
16 + android:layout_height="fill_parent"
17 + android:padding="@dimen/p7725_distance"
18 + android:background="@color/p7725_sdk_background"
19 + android:gravity="center_vertical" >
20 +
21 + <LinearLayout
22 + android:id="@+id/ll_game_info_02"
23 + android:layout_width="fill_parent"
24 + android:layout_height="wrap_content"
25 + android:gravity="center_vertical"
26 + android:orientation="vertical"
27 + >
28 +
29 + <include layout="@layout/p7725_sdk_item_game_list"/>
30 +
31 + <TextView
32 + android:id="@+id/game_list_detail_text"
33 + android:layout_width="fill_parent"
34 + android:layout_height="wrap_content"
35 + android:layout_marginTop="@dimen/p7725_distance"
36 + android:textColor="@color/p7725_sdk_gray_deep"
37 + android:padding="@dimen/p7725_distance"
38 + android:lineSpacingMultiplier="1.2"
39 + android:background="@android:color/white"
40 + android:textSize="@dimen/p7725_font_detail_size" />
41 +
42 + <HorizontalScrollView
43 + android:id="@+id/game_detail_show_picture"
44 + android:layout_marginTop="@dimen/p7725_distance"
45 + android:layout_width="fill_parent"
46 + android:layout_height="wrap_content" >
47 +
48 + <LinearLayout
49 + android:id="@+id/game_detail_pictures"
50 + android:layout_width="wrap_content"
51 + android:layout_height="250dp"
52 + android:orientation="horizontal" >
53 +
54 + </LinearLayout>
55 + </HorizontalScrollView>
56 + </LinearLayout>
57 + </ScrollView>
58 +
59 +</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + android:layout_width="match_parent"
3 + android:layout_height="match_parent"
4 + android:background="@android:color/black"
5 + android:orientation="vertical" >
6 +
7 + <com.platform7725.gamesdk.view.TitleView
8 + android:id="@+id/webview_title"
9 + android:layout_width="fill_parent"
10 + android:layout_height="wrap_content"
11 + android:orientation="vertical" />
12 +
13 + <RelativeLayout
14 + android:layout_width="match_parent"
15 + android:layout_height="match_parent"
16 + android:background="@android:color/white"
17 + android:orientation="vertical" >
18 +
19 + <WebView
20 + android:id="@+id/webview_content"
21 + android:layout_width="match_parent"
22 + android:layout_height="match_parent" />
23 +
24 + <LinearLayout
25 + android:id="@+id/loading_root"
26 + android:layout_width="wrap_content"
27 + android:layout_height="wrap_content"
28 + android:layout_centerInParent="true"
29 + android:gravity="center_vertical"
30 + android:orientation="horizontal" >
31 +
32 + <ProgressBar
33 + android:layout_width="15dp"
34 + android:layout_height="15dp" />
35 +
36 + <TextView
37 + android:layout_width="wrap_content"
38 + android:layout_height="wrap_content"
39 + android:text="@string/com_7725_loading"
40 + android:textColor="@color/p7725_sdk_black_light"
41 + android:layout_marginLeft="@dimen/p7725_distance_half"
42 + android:textSize="@dimen/p7725_font_name_size" />
43 + </LinearLayout>
44 + </RelativeLayout>
45 +
46 +</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright (C) 2008 The Android Open Source Project
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<menu xmlns:android="http://schemas.android.com/apk/res/android" >
19 +
20 + <item
21 + android:id="@+id/download_menu_sort_by_size"
22 + android:icon="@android:drawable/ic_menu_sort_by_size"
23 + android:title="@string/download_menu_sort_by_size"/>
24 + <item
25 + android:id="@+id/download_menu_sort_by_date"
26 + android:icon="@drawable/ic_menu_desk_clock"
27 + android:title="@string/download_menu_sort_by_date"/>
28 +
29 +</menu>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<resources>
3 + <string-array name="overriderUrl">
4 + <item>https://account.live.com/ResetPassword.aspx</item>
5 + <item>https://accounts.google.com/SignUp</item>
6 +
7 + <item>https://accounts.google.com/RecoverAccount</item>
8 + <item>http://www.google.com/intl/zh-CN/privacy/</item>
9 + <item>http://www.google.com/support/accounts?hl=zh-CN</item>
10 + <item>http://go.microsoft.com/fwlink/?LinkID=254486</item>
11 + <item>https://signup.live.com/signup.aspx</item>
12 + <item>https://www.google.com/accounts/recovery</item>
13 + <item>market://details?id=com.facebook.katana</item>
14 + <item>mailto:xunlecorp@qq.com</item>
15 + </string-array>
16 +
17 + <string-array name="yahooOverriderUrl">
18 + <item>https://edit.yahoo.com/config/eval_forgot_pw</item>
19 + <item>https://legalredirect.yahoo.com/copyright?intl=us</item>
20 + <item>https://legalredirect.yahoo.com/utos?intl=us</item>
21 + <item>http://security.yahoo.com/</item>
22 + <item>https://legalredirect.yahoo.com/privacy?intl=us</item>
23 + <item>http://help.yahoo.com/kb/index?local</item>
24 + <item>https://open.login.yahoo.com/openid/op/html/us/atos.php</item>
25 + <item>http://help.yahoo.com/l/en-us/yahoo/edit/</item>
26 + <item>https://login.yahoo.com/config/login?.src=ymbr</item>
27 + </string-array>
28 +
29 +</resources>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<resources>
19 + <declare-styleable name="com_facebook_picker_fragment">
20 + <attr name="show_pictures" format="boolean"/>
21 + <attr name="extra_fields" format="string"/>
22 + <attr name="show_title_bar" format="boolean" />
23 + <attr name="title_text" format="string" />
24 + <attr name="done_button_text" format="string" />
25 + <attr name="title_bar_background" format="reference" />
26 + <attr name="done_button_background" format="reference" />
27 + </declare-styleable>
28 + <declare-styleable name="com_facebook_friend_picker_fragment">
29 + <attr name="multi_select" format="boolean"/>
30 + </declare-styleable>
31 + <declare-styleable name="com_facebook_place_picker_fragment">
32 + <attr name="radius_in_meters" format="integer"/>
33 + <attr name="results_limit" format="integer"/>
34 + <attr name="search_text" format="string"/>
35 + <attr name="show_search_box" format="boolean" />
36 + </declare-styleable>
37 + <declare-styleable name="com_facebook_login_view">
38 + <attr name="confirm_logout" format="boolean"/>
39 + <attr name="fetch_user_info" format="boolean"/>
40 + <attr name="login_text" format="string"/>
41 + <attr name="logout_text" format="string"/>
42 + </declare-styleable>
43 + <declare-styleable name="com_facebook_profile_picture_view">
44 + <attr name="preset_size">
45 + <!-- Keep in sync with constants in ProfilePictureView -->
46 + <enum name="small" value="-2" />
47 + <enum name="normal" value="-3" />
48 + <enum name="large" value="-4" />
49 + </attr>
50 + <attr name="is_cropped" format="boolean" />
51 + </declare-styleable>
52 + <declare-styleable name="com_facebook_like_view">
53 + <attr name="foreground_color" format="color" />
54 + <attr name="object_id" format="string" />
55 + <attr name="style">
56 + <!-- Keep in sync with Enums in LikeView -->
57 + <enum name="standard" value="0" />
58 + <enum name="button" value="1" />
59 + <enum name="box_count" value="2" />
60 + </attr>
61 + <attr name="auxiliary_view_position">
62 + <!-- Keep in sync with Enums in LikeView -->
63 + <enum name="bottom" value="0" />
64 + <enum name="inline" value="1" />
65 + <enum name="top" value="2" />
66 + </attr>
67 + <attr name="horizontal_alignment">
68 + <!-- Keep in sync with Enums in LikeView -->
69 + <enum name="center" value="0" />
70 + <enum name="left" value="1" />
71 + <enum name="right" value="2" />
72 + </attr>
73 + </declare-styleable>
74 +</resources>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<resources>
3 + <dimen name="com_facebook_picker_place_image_size">64dp</dimen>
4 + <color name="com_facebook_picker_search_bar_background">#f5f5f7</color>
5 + <color name="com_facebook_picker_search_bar_text">#bcbdc2</color>
6 +</resources>
...\ No newline at end of file ...\ No newline at end of file
1 +<resources>
2 +
3 + <!-- Default screen margins, per the Android Design guidelines. -->
4 + <dimen name="com_7725_activity_horizontal_margin">16dp</dimen>
5 + <dimen name="com_7725_activity_vertical_margin">16dp</dimen>
6 + <dimen name="com_facebook_picker_divider_width">1px</dimen>
7 +
8 + <dimen name="p7725_distance">10dp</dimen>
9 + <dimen name="p7725_distance_half">5dp</dimen>
10 + <dimen name="p7725_font_name_size">16sp</dimen>
11 + <dimen name="p7725_font_detail_size">12sp</dimen>
12 + <dimen name="p7725_font_title_size">20sp</dimen>
13 +
14 + <dimen name="p7725_icon_middle_size">80dp</dimen>
15 + <dimen name="p7725_title_height">50dp</dimen>
16 +</resources>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<resources>
3 + <drawable name="com_facebook_picker_default_separator_color">#33464c59</drawable>
4 +</resources>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<resources>
19 + <string name="com_facebook_dialogloginactivity_ok_button">OK</string>
20 + <string name="com_facebook_like_button_not_liked">Like</string>
21 + <string name="com_facebook_like_button_liked">Liked</string>
22 + <string name="com_facebook_loginview_log_out_button">Log out</string>
23 + <string name="com_facebook_loginview_log_in_button">Log in with Facebook</string>
24 + <string name="com_facebook_loginview_logged_in_as">Logged in as: %1$s</string>
25 + <string name="com_facebook_loginview_logged_in_using_facebook">Logged in using Facebook</string>
26 + <string name="com_facebook_loginview_log_out_action">Log out</string>
27 + <string name="com_facebook_loginview_cancel_action">Cancel</string>
28 + <string name="com_facebook_logo_content_description">Facebook Logo</string>
29 + <string name="com_facebook_usersettingsfragment_log_in_button">Log in&#8230;</string>
30 + <string name="com_facebook_usersettingsfragment_logged_in">Logged in</string>
31 + <string name="com_facebook_usersettingsfragment_not_logged_in">Not logged in</string>
32 + <string name="com_facebook_placepicker_subtitle_format">%1$s • %2$,d were here</string>
33 + <string name="com_facebook_placepicker_subtitle_catetory_only_format">%1$s</string>
34 + <string name="com_facebook_placepicker_subtitle_were_here_only_format">%1$,d were here</string>
35 + <string name="com_facebook_picker_done_button_text">Done</string>
36 + <string name="com_facebook_choose_friends">Choose Friends</string>
37 + <string name="com_facebook_nearby">Nearby</string>
38 + <string name="com_facebook_loading">Loading...</string>
39 + <string name="com_facebook_internet_permission_error_title">AndroidManifest Error</string>
40 + <string name="com_facebook_internet_permission_error_message">WebView login requires INTERNET permission</string>
41 + <string name="com_facebook_requesterror_web_login">Your Facebook account is locked. Please log into www.facebook.com to continue.</string>
42 + <string name="com_facebook_requesterror_relogin">Please log into this app again to reconnect your Facebook account.</string>
43 + <string name="com_facebook_requesterror_password_changed">Your Facebook password has changed. Please log into this app again to reconnect your Facebook account.</string>
44 + <string name="com_facebook_requesterror_reconnect">Please log into this app again to reconnect your Facebook account.</string>
45 + <string name="com_facebook_requesterror_permissions">This app doesn’t have permission to do this. To change permissions, try logging into the app again.</string>
46 + <string name="com_facebook_tooltip_default">New! You\'re in control - choose what info you want to share with apps.</string>
47 + <string name="com_facebook_image_download_unknown_error">Unexpected error while downloading an image.</string>
48 +</resources>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<resources xmlns:android="http://schemas.android.com/apk/res/android">
19 + <color name="com_facebook_blue">#3B5998</color>
20 +
21 + <color name="com_facebook_usersettingsfragment_connected_text_color">#FFFFFF</color>
22 + <color name="com_facebook_usersettingsfragment_connected_shadow_color">#000000</color>
23 + <color name="com_facebook_usersettingsfragment_not_connected_text_color">#A6AED7</color>
24 + <dimen name="com_facebook_usersettingsfragment_profile_picture_width">64dp</dimen>
25 + <dimen name="com_facebook_usersettingsfragment_profile_picture_height">64dp</dimen>
26 +
27 + <dimen name="com_facebook_loginview_padding_left">12dip</dimen>
28 + <dimen name="com_facebook_loginview_padding_right">16dp</dimen>
29 + <dimen name="com_facebook_loginview_padding_top">12dp</dimen>
30 + <dimen name="com_facebook_loginview_padding_bottom">12dp</dimen>
31 + <dimen name="com_facebook_loginview_compound_drawable_padding">12dp</dimen>
32 + <color name="com_facebook_loginview_text_color">#FFFFFF</color>
33 + <dimen name="com_facebook_loginview_text_size">16.0sp</dimen>
34 +
35 + <dimen name="com_facebook_likeview_text_size">11.0sp</dimen>
36 + <color name="com_facebook_likeview_text_color">#6a7180</color>
37 + <dimen name="com_facebook_likeview_edge_padding">2dp</dimen>
38 + <dimen name="com_facebook_likeview_internal_padding">6dp</dimen>
39 +
40 + <dimen name="com_facebook_likebutton_padding_left">8dp</dimen>
41 + <dimen name="com_facebook_likebutton_padding_right">8dp</dimen>
42 + <dimen name="com_facebook_likebutton_padding_top">0dp</dimen>
43 + <dimen name="com_facebook_likebutton_padding_bottom">0dp</dimen>
44 + <dimen name="com_facebook_likebutton_compound_drawable_padding">8dp</dimen>
45 + <color name="com_facebook_likebutton_text_color">#FFFFFF</color>
46 + <dimen name="com_facebook_likebutton_text_size">13.0sp</dimen>
47 +
48 + <dimen name="com_facebook_likeboxcountview_caret_width">6dp</dimen>
49 + <dimen name="com_facebook_likeboxcountview_caret_height">3dp</dimen>
50 + <dimen name="com_facebook_likeboxcountview_border_radius">3dp</dimen>
51 + <dimen name="com_facebook_likeboxcountview_border_width">1dp</dimen>
52 + <color name="com_facebook_likeboxcountview_border_color">#6a7180</color>
53 + <color name="com_facebook_likeboxcountview_text_color">#6a7180</color>
54 + <dimen name="com_facebook_likeboxcountview_text_size">11.0sp</dimen>
55 + <dimen name="com_facebook_likeboxcountview_text_padding">6dp</dimen>
56 +
57 + <dimen name="com_facebook_profilepictureview_preset_size_small">50dp</dimen>
58 + <dimen name="com_facebook_profilepictureview_preset_size_normal">100dp</dimen>
59 + <dimen name="com_facebook_profilepictureview_preset_size_large">180dp</dimen>
60 +
61 + <dimen name="com_facebook_tooltip_horizontal_padding">10dp</dimen>
62 +
63 + <style name="com_facebook_loginview_default_style" parent="@android:style/Widget.Button">
64 + <item name="android:layout_width">wrap_content</item>
65 + <item name="android:layout_height">wrap_content</item>
66 + <item name="android:background">@drawable/com_facebook_button_blue</item>
67 + <item name="android:textColor">@color/com_facebook_loginview_text_color</item>
68 + <item name="android:textSize">@dimen/com_facebook_loginview_text_size</item>
69 + <item name="android:textStyle">bold</item>
70 + <item name="android:paddingLeft">@dimen/com_facebook_loginview_padding_left</item>
71 + <item name="android:gravity">center</item>
72 + </style>
73 +
74 + <style name="com_facebook_loginview_silver_style" parent="@android:style/Widget.Button">
75 + <item name="android:width">205dp</item>
76 + <item name="android:height">44dp</item>
77 + <item name="android:background">@drawable/com_facebook_loginbutton_silver</item>
78 + <item name="android:textSize">18sp</item>
79 + <item name="android:textStyle">bold</item>
80 + <item name="android:textColor">#4B5164</item>
81 + <item name="android:gravity">center</item>
82 + </style>
83 +
84 + <style name="tooltip_bubble_text">
85 + <item name="android:textColor">@android:color/white</item>
86 + <item name="android:gravity">left</item>
87 + <item name="android:textSize">12sp</item>
88 + <item name="android:shadowDy">-1</item>
89 + <item name="android:shadowRadius">0.25</item>
90 + <item name="android:shadowColor">#40000000</item>
91 + </style>
92 +</resources>
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<!--
3 + Copyright (C) 2007 The Android Open Source Project
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
19 +
20 + <string name="permlab_downloadManager" msgid="7779544811202855500">"访问下载管理器。"</string>
21 + <string name="permdesc_downloadManager" msgid="4240298564918160337">"允许应用程序访问下载管理器以及用它下载文件。恶意应用程序可借此干扰下载,以及访问隐私信息。"</string>
22 + <string name="permlab_downloadManagerAdvanced" msgid="7103642833308809655">"高级下载管理器功能。"</string>
23 + <string name="permdesc_downloadManagerAdvanced" msgid="6985743912436565114">"允许应用程序使用下载管理器的高级功能。恶意应用程序可能会借此中断下载以及访问私密信息。"</string>
24 + <string name="permlab_downloadCompletedIntent" msgid="945913803765675685">"发送下载通知。"</string>
25 + <string name="permdesc_downloadCompletedIntent" msgid="8672701687104399228">"允许应用程序发送关于已完成下载的通知。恶意应用程序可借此干扰下载文件的其他应用程序。"</string>
26 + <string name="permlab_downloadCacheNonPurgeable" msgid="3069534308882047412">"保留下载缓存中的空间"</string>
27 + <string name="permdesc_downloadCacheNonPurgeable" msgid="1089583021652571424">"允许应用程序将文件下载到下载缓存(系统不会因为下载管理器需要更多空间而自动删除下载缓存)。"</string>
28 + <string name="permlab_accessAllDownloads" msgid="2436240495424393717">"访问所有系统下载内容"</string>
29 + <string name="permdesc_accessAllDownloads" msgid="4575801130424505112">"允许该应用程序查看和修改由系统中的任意程序所发起的所有下载。"</string>
30 + <string name="download_unknown_title" msgid="7015124071247271585">"&lt;未命名&gt;"</string>
31 + <string name="notification_filename_separator" msgid="7147189522857807618">", "</string>
32 + <string name="notification_filename_extras" msgid="5549729917695688191">" 还有 <xliff:g id="NUMBER">%d</xliff:g> 项"</string>
33 + <string name="notification_download_complete" msgid="840713937779273632">"下载完成"</string>
34 + <string name="notification_download" msgid="840713937779273632">"下载"</string>
35 + <string name="notification_download_failed" msgid="5343637375905111462">"下载失败"</string>
36 + <string name="notification_need_wifi_for_size" msgid="5973127997598540499">"此大小的文件需要通过 Wi-Fi 下载"</string>
37 + <string name="wifi_required_title" msgid="1995971416871498179">您必须使用 Wi-Fi 才能完成此 <xliff:g id="SIZE">%s </xliff:g> 文件的下载。"\n\n"点击<xliff:g id="QUEUE_TEXT">%s </xliff:g>可在下次连接到 Wi-Fi 网络时开始此下载。"</string>
38 + <string name="wifi_recommended_title" msgid="7441589306734687400">"稍后再加入下载队列吗?"</string>
39 + <string name="wifi_recommended_body" msgid="7574517147645381271">"立即开始此 <xliff:g id="SIZE">%s </xliff:g> 文件的下载可能会缩短电池的使用时间并/或导致超额使用移动数据连接(这会导致移动运营商依照流量套餐中的超额规定向您收费)。"\n\n"点击下面的<xliff:g id="QUEUE_TEXT">%s</xliff:g>可在下次连接到 Wi-Fi 网络时开始此下载。"</string>
40 + <string name="button_queue_for_wifi" msgid="422576726189179221">"排队"</string>
41 + <string name="button_cancel_download" msgid="2430166148737975604">"取消下载"</string>
42 + <string name="button_start_now" msgid="792123674007840864">"立即开始"</string>
43 + <string name="common_pause">暂停</string>
44 + <string name="common_cancel">取消</string>
45 + <string name="common_loading_now">正在下载</string>
46 +
47 +</resources>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!-- Copyright (C) 2010 The Android Open Source Project
3 +
4 + Licensed under the Apache License, Version 2.0 (the "License");
5 + you may not use this file except in compliance with the License.
6 + You may obtain a copy of the License at
7 +
8 + http://www.apache.org/licenses/LICENSE-2.0
9 +
10 + Unless required by applicable law or agreed to in writing, software
11 + distributed under the License is distributed on an "AS IS" BASIS,
12 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 + See the License for the specific language governing permissions and
14 + limitations under the License.
15 +-->
16 +
17 +<resources>
18 + <style name="Theme.Translucent" parent="android:style/Theme.Translucent">
19 + <item name="android:windowNoTitle">true</item>
20 + </style>
21 +</resources>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!-- Copyright (C) 2010 The Android Open Source Project
3 +
4 + Licensed under the Apache License, Version 2.0 (the "License");
5 + you may not use this file except in compliance with the License.
6 + You may obtain a copy of the License at
7 +
8 + http://www.apache.org/licenses/LICENSE-2.0
9 +
10 + Unless required by applicable law or agreed to in writing, software
11 + distributed under the License is distributed on an "AS IS" BASIS,
12 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 + See the License for the specific language governing permissions and
14 + limitations under the License.
15 +-->
16 +
17 +<resources>
18 + <dimen name="checkmark_area">40dip</dimen>
19 + <dimen name="fullscreen_close_btn_size">30dip</dimen>
20 +</resources>
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<!--
3 + Copyright (C) 2010 The Android Open Source Project
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
19 +
20 + <string name="download_title" msgid="2470985874255839247">"下载内容"</string>
21 + <string name="no_downloads" msgid="1029667411186146836">"无下载内容。"</string>
22 + <string name="missing_title" msgid="830115697868833773">"&lt;未知>"</string>
23 + <string name="download_menu_sort_by_size" msgid="2276438658769422878">"按大小排序"</string>
24 + <string name="download_menu_sort_by_date" msgid="4300882048968609945">"按时间排序"</string>
25 + <string name="download_queued" msgid="104973307780629904">"已加入队列"</string>
26 + <string name="download_running" msgid="4656462962155580641">"正在下载"</string>
27 + <string name="download_paused">暂停</string>
28 + <string name="download_success" msgid="7006048006543495236">"已经完成,点击安装"</string>
29 + <string name="download_error" msgid="3107369653921738690">"下载失败"</string>
30 + <string name="dialog_title_not_available" msgid="4479021195995400471">"下载失败"</string>
31 + <string name="dialog_failed_body" msgid="587545111677064427">"您想要稍后重新尝试下载该文件,还是将其从队列中删除?"</string>
32 + <string name="dialog_running_body">您想要暂停下载文件,还是取消下载?</string>
33 + <string name="dialog_paused_body">您想要继续下载该文件,还是将其从队列中删除?</string>
34 + <string name="dialog_title_queued_body" msgid="3062862079904954824">"文件尚不可用"</string>
35 + <string name="dialog_queued_body" msgid="2506935748423351902">"该文件已加入队列,供以后下载。"</string>
36 + <string name="dialog_file_missing_body" msgid="2783781332668129395">"未找到已下载的文件。"</string>
37 + <string name="dialog_insufficient_space_on_external" msgid="7534108515812329821">"无法完成下载,外部存储器的空间不足。"</string>
38 + <string name="dialog_insufficient_space_on_cache" msgid="8387210487235302129">"无法完成下载,内部下载存储器的空间不足。"</string>
39 + <string name="dialog_cannot_resume" msgid="7704082031608361756">"下载中断,无法继续进行。"</string>
40 + <string name="dialog_file_already_exists" msgid="2663737850617642888">"无法下载,目标文件已存在。"</string>
41 + <string name="dialog_media_not_found" msgid="5308602145105720991">"无法下载,未安装外部媒体。"</string>
42 + <string name="download_no_application_title" msgid="3501359021635168387">"无法打开文件"</string>
43 + <string name="remove_download" msgid="6372920256257247857">"清除"</string>
44 + <string name="delete_download" msgid="76629022653866471">"删除"</string>
45 + <string name="pause_download">暂停</string>
46 + <string name="resume_download">继续</string>
47 + <string name="keep_queued_download" msgid="5144882786014818569">"保留"</string>
48 + <string name="cancel_running_download" msgid="5232704030969221112">取消下载</string>
49 + <string name="retry_download" msgid="7617100787922717912">"重试"</string>
50 + <string name="deselect_all" msgid="5638030443515705047">"取消选中项"</string>
51 +
52 + <string name="text_no_appplay" >请先安装GOOGPLE PLAY或其他APP商店</string>
53 +
54 +</resources>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<resources>
3 +
4 + <color name="p7725_sdk_all_background">#E6E6E6</color>
5 + <color name="p7725_sdk_white">#fff</color>
6 + <color name="p7725_sdk_black">#000</color>
7 + <color name="p7725_sdk_gray_deep">#777777</color>
8 + <color name="p7725_sdk_background">#EEEEEE</color>
9 + <color name="p7725_sdk_black_light">#333333</color>
10 + <color name="p7725_sdk_orange_light">#F97523</color>
11 + <color name="p7725_sdk_clause">#F97523</color>
12 + <color name="p7725_sdk_transparent">#00FFFFFF</color>
13 +
14 +</resources>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<resources>
3 +
4 + <!-- ******************LoginPro****************** -->
5 + <string name="p7725_sdk_tv_login_7725">7725登入</string>
6 + <string name="p7725_sdk_tv_login_fb">FB登入</string>
7 + <!-- ******************Login****************** -->
8 + <string name="p7725_sdk_btn_back">返回</string>
9 + <string name="p7725_sdk_btn_ok">确定</string>
10 + <!-- 登入 -->
11 + <string name="p7725_sdk_tv_login">登入</string>
12 + <string name="p7725_sdk_tv_login_input_username">账号</string>
13 + <string name="p7725_sdk_tv_login_input_pass">密码</string>
14 + <string name="p7725_sdk_hint_login_input_username">请输入7725账号</string>
15 + <string name="p7725_sdk_hint_login_input_pass">请输入7725密码</string>
16 + <string name="p7725_sdk_hint_login_fail">登录失败,请稍后再试</string>
17 + <string name="p7725_sdk_chck_clause">同意</string>
18 + <string name="p7725_sdk_txt_agree_clause">游戏规范</string>
19 + <string name="p7725_sdk_txt_agree_and"></string>
20 + <string name="p7725_sdk_txt_agree_privacy">隐私政策</string>
21 + <string name="p7725_sdk_dlg_agree_clause">请阅读并同意《隐私政策》及《游戏规范》</string>
22 + <string name="p7725_sdk_clause_title">游戏规范</string>
23 + <string name="p7725_sdk_privacy_title">隐私政策</string>
24 + <string name="p7725_sdk_browser_title">正在浏览</string>
25 + <string name="p7725_sdk_not_show_today">今天不要再显示&#160;&#160;</string>
26 + <!-- 注册 -->
27 + <string name="p7725_sdk_tv_register_title">注册7725账号</string>
28 + <string name="p7725_sdk_btn_register">注册</string>
29 + <string name="p7725_sdk_hint_register_input_username">请输入账号</string>
30 + <string name="p7725_sdk_hint_register_input_pass">请输入密码</string>
31 + <string name="p7725_sdk_hint_register_input_passok">请确认密码</string>
32 + <string name="p7725_sdk_hint_register_input_email">请输入信箱</string>
33 + <!-- 联系客服 -->
34 + <string name="p7725_sdk_tv_customer">联系客服</string>
35 + <!-- 找回密码 -->
36 + <string name="p7725_sdk_tv_findpass">找回密码</string>
37 + <string name="p7725_sdk_tv_findpass2">找回密码</string>
38 + <string name="p7725_sdk_hint_findpass_input_username">请输入您的7725账号</string>
39 + <string name="p7725_sdk_hint_findpass_input_email">请输入您的注册信箱</string>
40 + <!-- 修改密码 -->
41 + <string name="p7725_sdk_tv_changepass">修改密码</string>
42 + <string name="p7725_sdk_tv_changepass2">修改密码</string>
43 + <string name="p7725_sdk_hint_changepass_input_username">请输入您的7725账号</string>
44 + <string name="p7725_sdk_hint_changepass_input_pass">请输入原始密码</string>
45 + <string name="p7725_sdk_hint_changepass_input_passnew">请输入新的密码</string>
46 +
47 + <string name="p7725_sdk_changepass_input_passold">原始密码</string>
48 + <string name="p7725_sdk_changepass_input_passnew">新的密码</string>
49 +
50 + <!-- 绑定提示框 -->
51 + <string name="p7725_sdk_to_binding">绑定</string>
52 +
53 + <!-- 退出 -->
54 + <string name="p7725_sdk_btn_exit">确认注销</string>
55 + <!-- DIALOG -->
56 + <string name="p7725_sdk_text_ok">我知道了</string>
57 + <string name="p7725_sdk_text_changepass_ok">您已经成功修改了密码!</string>
58 + <string name="p7725_sdk_text_findpass_ok">找回密码的信息已经寄送到您的信箱,请注意查收!</string>
59 + <!-- 储值 -->
60 + <string name="p7725_sdk_text_back">返回</string>
61 + <string name="p7725_sdk_text_store">储值</string>
62 + <string name="p7725_sdk_text_loading">拼命加载中&#8230;</string>
63 + <string name="p7725_sdk_text_loading2">数据处理中,请稍后&#8230;</string>
64 + <string name="p7725_sdk_deposits_no_record">无储值内容。</string>
65 + <!-- 其它 -->
66 + <string name="p7725_sdk_text_no_net">网络不可用,请检查!</string>
67 + <string name="p7725_sdk_text_sure">确定</string>
68 + <string name="p7725_sdk_text_cancel">取消</string>
69 + <string name="p7725_sdk_text_no_serverid">没有设定服务器,客服功能不可用!</string>
70 + <string name="p7725_sdk_text_no_roleid">没有设定角色ID,储值功能不可用!</string>
71 + <string name="p7725_sdk_text_no_role">没有设定角色名,储值功能不可用!</string>
72 + <string name="p7725_sdk_text_pay_failure">支付失败,请检查google play账号和密码是否正确!</string>
73 + <string name="p7725_sdk_text_choose_username">请选择账号</string>
74 + <string name="p7725_sdk_text_no_username">账号不能为空!</string>
75 + <string name="p7725_sdk_text_no_password">密码不能为空!</string>
76 + <string name="p7725_sdk_text_no_email">信箱不能为空!</string>
77 + <string name="p7725_sdk_text_no_password_sure">确认密码不能为空!</string>
78 + <string name="p7725_sdk_text_no_password_new">新密码不能为空!</string>
79 + <string name="p7725_sdk_text_no_password2">两次输入的密码不一致!</string>
80 + <string name="p7725_sdk_text_input_error">输入数据有误!</string>
81 + <string name="p7725_sdk_text_timeout">请求超时,请稍后再试!</string>
82 +
83 + <!-- 绑定界面 -->
84 + <string name="p7725_sdk_tv_binding_title">绑定7725账号</string>
85 + <string name="p7725_sdk_tv_binding_to">绑定7725</string>
86 + <string name="p7725_sdk_tv_binding_do_not">不了,下次吧</string>
87 + <string name="p7725_sdk_tv_binding_success">绑定成功</string>
88 + <string name="p7725_sdk_binding_password_again">确认密码</string>
89 + <string name="p7725_sdk_binding_email">注册信箱</string>
90 + <string name="p7725_sdk_binding_hint_must_bind">为保护您的数据安全,请先绑定7725账户</string>
91 + <string name="p7725_sdk_binding_hint_not_bind">您已注册7725账户,无须绑定</string>
92 + <string name="p7725_sdk_binding_hint_already_bind">您已经绑定了7725账户</string>
93 +
94 +
95 + <!-- ******************Google Billing相關****************** -->
96 + <string name="com_7725_setup_isSuccess_BILLING_UNAVAILABLE">您的设备未激活GOOGLE PLAY付费服务。</string>
97 + <string name="com_7725_setup_isSuccess_ITEM_UNAVAILABLE">没有找到相关产品。</string>
98 + <string name="com_7725_setup_isSuccess_DEVELOPER_ERROR">您的设备未激活GOOGLE PLAY付费服务。</string>
99 + <string name="com_7725_setup_isSuccess_ERROR">您的设备未激活GOOGLE PLAY付费服务。</string>
100 + <string name="com_7725_query_inventory">查询购买过的产品失败:</string>
101 + <string name="com_7725_purchase_failure">购买未完成!</string>
102 + <string name="com_7725_purchase_failure_verify">购买失败,验证不通过!</string>
103 + <string name="com_7725_consume_failure">异常信息:</string>
104 + <string name="com_7725_submit_SUCCESS">购买金币成功,正在处理数据,请等待服务器发送元宝。</string>
105 + <string name="com_7725_submit_FAIL_4001">很抱歉,ACTION错误,请稍后再试!</string>
106 + <string name="com_7725_submit_FAIL_4002">很抱歉,订单有误,请稍后再试!</string>
107 + <string name="com_7725_submit_FAIL_4003">很抱歉,运营商订单错误,请稍后再试!</string>
108 + <string name="com_7725_submit_FAIL_4004">很抱歉,金额格式错误,请稍后再试!</string>
109 + <string name="com_7725_submit_FAIL_4005">很抱歉,游戏参数错误,请稍后再试</string>
110 + <string name="com_7725_submit_FAIL_4006">很抱歉,游戏金币兑换比例错误,请稍后再试</string>
111 + <string name="com_7725_submit_FAIL__1">很抱歉,服务器响应异常,请稍后再试</string>
112 +
113 + <string name="com_7725_pvc">3</string>
114 +
115 + <string name="com_7725_loading">加载中...</string>
116 + <string name="com_7725_change_pass_error_net_hint">网络异常,请稍后再试</string>
117 + <string name="com_7725_common_result">结果</string>
118 + <string name="com_7725_common_share_success">分享成功</string>
119 + <string name="com_7725_ok">确定</string>
120 +
121 + <string name="p7725_sdk_hint_quick_login_has_binding">您已经绑定了7725,请使用7725账号登入</string>
122 +
123 + <string name="com_7725_exception_hint">内部发生错误</string>
124 +
125 + <string name="p7725_tab_game_center">游戏中心</string>
126 + <string name="p7725_tab_strategy">攻略</string>
127 + <string name="p7725_tab_funs">粉丝团</string>
128 + <string name="p7725_tab_user_center">账户</string>
129 +
130 + <string name="p7725_install">安装</string>
131 + <string name="p7725_invite_by_fb">邀请FB好友</string>
132 + <string name="p7725_invite">邀请</string>
133 + <string name="p7725_invite_success">邀请成功</string>
134 + <string name="p7725_invite_no_select_friend">您还未勾选好友,请重新选择</string>
135 +
136 + <string name="p7725_change_password">修改密码</string>
137 + <string name="p7725_binding_username">绑定7725账号</string>
138 + <string name="p7725_download_manager">下载管理</string>
139 + <string name="p7725_deposits_record">储值记录</string>
140 + <string name="p7725_customer_service">联系客服</string>
141 + <string name="p7725_log_out">注销</string>
142 +
143 + <string name="p7725_sdk_type">类型:%1$s</string>
144 + <string name="p7725_sdk_size">大小:%1$s</string>
145 +
146 + <string name="p7725_sdk_more_game">点击查看更多</string>
147 +
148 +
149 + <!-- 遊戲 -->
150 + <string name="p7725_sdk_recommend_game">热门游戏推荐</string>
151 + <string name="p7725_sdk_recommend_game_detail">游戏介绍\n\n%1$s</string>
152 +
153 + <!-- 我的帳戶 -->
154 + <string name="p7725_sdk_user_center">我的账户</string>
155 + <string name="p7725_sdk_user_id">玩家ID:%1$s</string>
156 +
157 +
158 + <!-- 资源缺失时的默认属性 -->
159 + <string name="p7725_sdk_error_default">未定义!!!</string>
160 + <string name="p7725_sdk_exception_hint">内部发生错误</string>
161 +
162 + <string name="permname_downloadManager">com.library.permission.ACCESS_DOWNLOAD_MANAGER</string>
163 + <string name="permname_downloadManagerAdvanced">com.library.permission.ACCESS_DOWNLOAD_MANAGER_ADVANCED</string>
164 + <string name="permname_downloadCompletedIntent">com.library.permission.SEND_DOWNLOAD_COMPLETED_INTENTS</string>
165 +
166 +
167 +</resources>
...\ No newline at end of file ...\ No newline at end of file
1 +<resources xmlns:android="http://schemas.android.com/apk/res/android">
2 +
3 + <!--
4 + Base application theme, dependent on API level. This theme is replaced
5 + by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
6 + -->
7 + <style name="AppBaseTheme" parent="android:Theme.Light">
8 + <!--
9 + Theme customizations available in newer API levels can go in
10 + res/values-vXX/styles.xml, while customizations related to
11 + backward-compatibility can go here.
12 + -->
13 + </style>
14 +
15 + <!-- Application theme. -->
16 + <style name="AppTheme" parent="AppBaseTheme">
17 + <!-- All customizations that are NOT specific to a particular API-level can go here. -->
18 + </style>
19 +
20 + <!-- 淡入淡出动画 -->
21 + <style name="FadeAnimation">
22 + <item name="android:windowEnterAnimation">@anim/p7725_sdk_fade_in</item>
23 + <item name="android:windowExitAnimation">@anim/p7725_sdk_fade_out</item>
24 + </style>
25 +
26 + <style name="FadeAnimation2">
27 + <item name="android:windowExitAnimation">@anim/p7725_sdk_fade_out</item>
28 + </style>
29 +
30 + <style name="LoginPro" parent="@style/p7725_full_screen">
31 + <item name="android:windowAnimationStyle">@style/FadeAnimation</item>
32 + </style>
33 +
34 + <style name="Login" parent="@style/p7725_full_screen">
35 + <item name="android:windowAnimationStyle">@style/FadeAnimation</item>
36 + </style>
37 +
38 + <style name="p7725_full_screen">
39 + <item name="android:windowBackground">@android:color/transparent</item>
40 + <item name="android:windowIsTranslucent">true</item>
41 + <item name="android:windowNoTitle">true</item>
42 + <item name="android:windowFullscreen">true</item>
43 + <item name="android:windowContentOverlay">@null</item>
44 + </style>
45 +
46 + <style name="MyDialog">
47 + <item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item>
48 + <item name="android:windowBackground">@android:color/transparent</item>
49 + <item name="android:windowIsFloating">true</item>
50 + <item name="android:windowContentOverlay">@null</item>
51 + <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
52 + </style>
53 +
54 + <style name="UserList" parent="@android:style/Theme.Dialog">
55 + <item name="android:windowNoTitle">true</item>
56 + <item name="android:windowBackground">@android:color/transparent</item>
57 + </style>
58 +
59 + <style name="Title">
60 + <item name="android:textColor">#000</item>
61 + <item name="android:textStyle">bold</item>
62 + <item name="android:textSize">30.0px</item>
63 + <item name="android:gravity">center</item>
64 + </style>
65 +
66 + <style name="Input">
67 + <item name="android:background">@drawable/p7725_sdk_input_bg</item>
68 + <item name="android:paddingLeft">10dp</item>
69 + <item name="android:paddingRight">10dp</item>
70 + <item name="android:singleLine">true</item>
71 + <item name="android:textColor">#fff</item>
72 + <item name="android:textColorHint">#fff</item>
73 + <item name="android:textSize">22.96px</item>
74 + </style>
75 +
76 + <style name="Button">
77 + <item name="android:background">@drawable/p7725_sdk_btn_ok</item>
78 + <item name="android:gravity">center</item>
79 + <item name="android:textColor">#fff</item>
80 + <item name="android:textStyle">bold</item>
81 + <item name="android:textSize">22.76px</item>
82 + </style>
83 +
84 + <style name="style_listview">
85 + <item name="android:layout_width">fill_parent</item>
86 + <item name="android:layout_height">fill_parent</item>
87 + <item name="android:cacheColorHint">@android:color/transparent</item>
88 + <item name="android:divider">@android:color/transparent</item>
89 + <item name="android:listSelector">@android:color/transparent</item>
90 + </style>
91 +
92 + <style name="game_detail_ratingBar" parent="@android:style/Widget.RatingBar">
93 + <item name="android:progressDrawable">@drawable/p7725_sdk_game_detail_ratingbar</item>
94 + <item name="android:minHeight">15dip</item>
95 + <item name="android:maxHeight">15dip</item>
96 + </style>
97 +
98 + <style name="p7725_sdk_change_password_textview">
99 + <item name="android:layout_width">fill_parent</item>
100 + <item name="android:layout_height">wrap_content</item>
101 + <item name="android:textColor">@color/p7725_sdk_black_light</item>
102 + <item name="android:textSize">@dimen/p7725_font_name_size</item>
103 + <item name="android:layout_marginBottom">@dimen/p7725_distance_half</item>
104 + </style>
105 +
106 + <style name="p7725_sdk_change_password_edittext">
107 + <item name="android:layout_width">fill_parent</item>
108 + <item name="android:layout_height">wrap_content</item>
109 + <item name="android:background">@drawable/p7725_sdk_banding_account_input_box</item>
110 + <item name="android:textSize">@dimen/p7725_font_detail_size</item>
111 + <item name="android:layout_marginBottom">@dimen/p7725_distance</item>
112 + <item name="android:singleLine">true</item>
113 + </style>
114 +
115 + <style name="p7725_sdk_change_password_button">
116 + <item name="android:layout_width">0dp</item>
117 + <item name="android:layout_height">wrap_content</item>
118 + <item name="android:layout_weight">1</item>
119 + <item name="android:background">@drawable/p7725_sdk_btn_grey_orange</item>
120 + <item name="android:textSize">@dimen/p7725_font_name_size</item>
121 + <item name="android:textColor">@android:color/white</item>
122 + </style>
123 +
124 + <style name="p7725_sdk_user_center_button">
125 + <item name="android:layout_width">fill_parent</item>
126 + <item name="android:layout_height">62dp</item>
127 + <item name="android:gravity">left|center_vertical</item>
128 + <item name="android:background">@drawable/p7725_sdk_select_button_background</item>
129 + <item name="android:drawablePadding">@dimen/p7725_distance_half</item>
130 + <item name="android:textColor">@color/p7725_sdk_black_light</item>
131 + <item name="android:padding">10dp</item>
132 + <item name="android:drawableRight">@drawable/p7725_sdk_select_button_arrow</item>
133 + </style>
134 +
135 + <style name="p7725_dialogBuilder" parent="@android:Theme.Dialog">
136 +
137 + <!-- 去除标题 -->
138 + <item name="android:windowNoTitle">true</item>
139 + <!-- 去除背景 -->
140 + <item name="android:windowBackground">@android:color/transparent</item>
141 + <!--
142 + <item name="android:backgroundDimEnabled">false</item>
143 + <item name="android:windowIsFloating">false</item>
144 + <item name="android:windowIsTranslucent">true</item>
145 +
146 + -->
147 +
148 + </style>
149 +
150 + <style name="p7725_sdk_checkbox" parent="@android:style/Widget.CompoundButton.CheckBox">
151 + <item name="android:button">@drawable/p7725_sdk_chck_clause</item>
152 + </style>
153 +</resources>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<resources>
3 + <integer name="google_play_services_version">5077000</integer>
4 +</resources>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<resources>
3 +
4 + <!-- app name. eg.: 風雲天下 OL -->
5 +
6 + <!-- <string name="com_7725_app_name">塔防無雙</string> -->
7 +
8 + <string name="com_7725_app_name">EasyGameDemo</string>
9 +
10 +
11 + <!-- 程序入口的类名和包名,请游戏商填写 (推送) -->
12 + <string name="com_7725_game_main_activity"> </string>
13 +
14 + <!-- 7725 sdk protocol token & game alias -->
15 + <!--
16 + <string name="com_7725_sdkProtocolToken">3f36dc69b4330ed1ed6f50c412018d50</string>
17 + <string name="com_7725_sdkProtocolGame">tfws</string>
18 +-->
19 + <string name="com_7725_sdkProtocolToken">f8ea4b100a5f2c774160434e038f044a</string>
20 + <string name="com_7725_sdkProtocolGame">demo</string>
21 +
22 +
23 +
24 + <!-- facebook manifest -->
25 +<!--
26 + <string name="com_7725_facebookSdkApplicationId">114726065640556</string>
27 + -->
28 + <string name="com_7725_facebookSdkApplicationId">687193478101420</string>
29 +
30 +
31 + <!-- 英特 -->
32 + <string name="com_7725_enable_mobile_payment_tracker">false</string>
33 + <string name="com_7725_mobile_payment_tracker_id">15530</string>
34 + <string name="com_7725_mobile_payment_tracker_key">87a5d0f9221d0e066ab4dc60fd1a0247</string>
35 +
36 + <!-- Airpush manifest -->
37 + <string name="com_7725_enable_mobile_airpush_advertisement_tracker">false</string>
38 +
39 + <!-- BearMedia manifest -->
40 + <string name="com_7725_bearMedia_appid">rcPQXy3sxjJDfmd7xA8EBH</string>
41 + <string name="com_7725_enable_mobile_bearMedia_advertisement_tracker">false</string>
42 +
43 + <!-- InMobi manifest -->
44 + <string name="com_7725_enable_mobile_inmobi_advertisement_tracker">true</string>
45 + <string name="com_7725_inmobi_appid">8ce54673ed0346a7b84c299f688bd043</string>
46 +
47 + <!-- KuADCPA manifest -->
48 + <string name="com_7725_enable_mobile_kuadcpa_advertisement_tracker">true</string>
49 + <string name="com_7725_kuadcpa_appid">2015020400002</string>
50 + <string name="com_7725_kuadcpa_appkey">a424a879a8994e4fd136c9d05efbb1b6</string>
51 +
52 + <!-- Advertiser manifest -->
53 + <string name="com_7725_enable_mobile_advertiser_advertisement_tracker">true</string>
54 + <string name="com_7725_advertiser_appid">fy_ctzj2_hk_tw</string>
55 +
56 +
57 + <!-- MdotM manifest -->
58 + <string name="com_7725_enable_mobile_MdotM_advertisement_tracker">true</string>
59 +
60 + <!-- MillennialMedia manifest -->
61 + <string name="com_7725_enable_mobile_millennialMedia_advertisement_tracker">true</string>
62 + <string name="com_7725_millennialMedia_appid">46050</string>
63 +
64 + <!-- google analytics manifest -->
65 + <!-- Replace placeholder ID with your tracking ID -->
66 + <string name="ga_trackingId">UA-42392414-18</string>
67 + <!-- Enable automatic activity tracking -->
68 + <bool name="ga_autoActivityTracking">true</bool>
69 + <!-- Enable automatic exception tracking -->
70 + <bool name="ga_reportUncaughtExceptions">true</bool>
71 +
72 +</resources>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<resources>
3 +
4 + <string name="app_name">EasyGame_Demo</string>
5 + <string name="action_settings">Settings</string>
6 + <string name="hello_world">Hello world!</string>
7 +
8 +</resources>
1 +<resources>
2 +
3 + <!--
4 + Base application theme, dependent on API level. This theme is replaced
5 + by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
6 + -->
7 + <style name="AppBaseTheme" parent="android:Theme.Light">
8 + <!--
9 + Theme customizations available in newer API levels can go in
10 + res/values-vXX/styles.xml, while customizations related to
11 + backward-compatibility can go here.
12 + -->
13 + </style>
14 +
15 + <!-- Application theme. -->
16 + <style name="AppTheme" parent="AppBaseTheme">
17 + <!-- All customizations that are NOT specific to a particular API-level can go here. -->
18 + </style>
19 +
20 +</resources>
1 +package com.youai.easygame;
2 +
3 +
4 +import com.platform7725.gamesdk.DepositsActivity;
5 +import com.platform7725.gamesdk.ITopSDKEventsListener;
6 +import com.platform7725.gamesdk.LoginProActivity;
7 +import com.platform7725.gamesdk.entity.User;
8 +import com.platform7725.gamesdk.manager.UserManager;
9 +import com.platform7725.gamesdk.util.Toasts;
10 +import com.platform7725.qile.tfws.R;
11 +
12 +import android.os.Bundle;
13 +import android.util.Log;
14 +import android.view.View;
15 +import android.view.View.OnClickListener;
16 +import android.widget.Button;
17 +import android.app.Activity;
18 +import android.content.Intent;
19 +
20 +public class MainActivity extends Activity implements OnClickListener {
21 +
22 + private Activity context;
23 + private Button bt_login, bt_gl_pay;
24 + private int LOGIN_CODE = 1;
25 +
26 + @Override
27 + protected void onCreate(Bundle savedInstanceState) {
28 + super.onCreate(savedInstanceState);
29 + setContentView(R.layout.activity_main);
30 + context = this;
31 + //初始化界面
32 + initView();
33 +
34 + }
35 +
36 + private void initView() {
37 + bt_login = (Button) findViewById(R.id.test_login);
38 + bt_gl_pay = (Button) findViewById(R.id.test_pay);
39 + bt_login.setOnClickListener(this);
40 + bt_gl_pay.setOnClickListener(this);
41 + }
42 +
43 + @Override
44 + public void onClick(View mView) {
45 + switch (mView.getId()) {
46 + // 登录按钮
47 + case R.id.test_login:
48 + LoginProActivity.login(LOGIN_CODE, new ITopSDKEventsListener() {
49 +
50 + @Override
51 + public void onEventDispatch(int code, Intent data) {
52 + Log.e("onEventDispatch--->", "code:" + code);
53 + User user = (User) data.getSerializableExtra("user");
54 + if (user != null) {
55 + String nickName = user.getNickname();
56 + Log.e("账号登录成功:" , nickName);
57 + //设置角色和服务器
58 + UserManager.setServer(context, "S10086");
59 + UserManager.setRole(context, "951", "我是角色名");
60 + Toasts.makeText(context, "账号登录成功:"+nickName);
61 + }
62 + }
63 + }, context);
64 +
65 + break;
66 + // 支付按钮
67 + case R.id.test_pay:
68 + DepositsActivity.pay(context, "", "{\"payment_flag\":\"0\"}");
69 + break;
70 + default:
71 + break;
72 + }
73 + }
74 +
75 +}
1 +# EasyGame客户端对接文档 #
2 +## 1.配置开发环境 ##
3 +使用7725SDK需要完成下面5个步骤:
4 +
5 +1.把res中所有资源拷贝合并到你项目res目录中。
6 +
7 +![](http://i.imgur.com/bViJNcw.png)
8 +
9 +2.把assets中的内容拷贝合并你的项目assets目录中。
10 +
11 +![](http://i.imgur.com/RHJKhBN.png)
12 +
13 +3.把libs中所有jar包拷贝到你的项目libs目录中。
14 +
15 +## 2.配置AndroidManifest.xml ##
16 +
17 +1.添加permission
18 +```xml
19 + <!-- easygame SDK PERMISSION START. -->
20 + <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
21 + <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
22 + <uses-permission android:name="android.permission.READ_PHONE_STATE" />
23 + <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
24 + <uses-permission android:name="android.permission.INTERNET" />
25 + <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
26 + <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
27 + <uses-permission android:name="android.permission.VIBRATE" />
28 + <uses-permission android:name="com.android.vending.BILLING" />
29 + <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />
30 + <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
31 + <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
32 + <uses-permission android:name="com.library.permission.ACCESS_DOWNLOAD_MANAGER" />
33 + <uses-permission android:name="com.library.permission.ACCESS_DOWNLOAD_MANAGER_ADVANCED" />
34 + <uses-permission android:name="com.library.permission.SEND_DOWNLOAD_COMPLETED_INTENTS" />
35 + <uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" />
36 + <uses-permission android:name="android.permission.WAKE_LOCK" />
37 +
38 + <permission
39 + android:name="com.library.permission.ACCESS_DOWNLOAD_MANAGER"
40 + android:description="@string/permdesc_downloadManager"
41 + android:label="@string/permlab_downloadManager"
42 + android:protectionLevel="normal" />
43 + <permission
44 + android:name="com.library.permission.ACCESS_DOWNLOAD_MANAGER_ADVANCED"
45 + android:description="@string/permdesc_downloadManagerAdvanced"
46 + android:label="@string/permlab_downloadManagerAdvanced"
47 + android:protectionLevel="normal" />
48 + <permission
49 + android:name="com.library.permission.SEND_DOWNLOAD_COMPLETED_INTENTS"
50 + android:description="@string/permdesc_downloadCompletedIntent"
51 + android:label="@string/permlab_downloadCompletedIntent"
52 + android:protectionLevel="normal" />
53 + <!-- easygame SDK PERMISSION END. -->
54 +```
55 +
56 +2.添加application相关属性
57 +```xml
58 + <!-- easygame SDK ACTIVITY,SERVER,RECEIVER START -->
59 + <activity
60 + android:name="com.platform7725.gamesdk.CustomerServiceActivity"
61 + android:configChanges="keyboardHidden|orientation"
62 + android:theme="@style/p7725_full_screen" />
63 + <activity
64 + android:name="com.platform7725.gamesdk.DepositsActivity"
65 + android:configChanges="keyboardHidden|orientation"
66 + android:theme="@style/p7725_full_screen"
67 + android:windowSoftInputMode="adjustResize" />
68 + <activity
69 + android:name="com.platform7725.gamesdk.LoginProActivity"
70 + android:theme="@style/LoginPro" />
71 + <activity
72 + android:name="com.platform7725.gamesdk.LoginActivity"
73 + android:theme="@style/Login" />
74 + <activity
75 + android:name="com.platform7725.gamesdk.UserListActivity"
76 + android:theme="@style/UserList" />
77 + <activity
78 + android:name="com.platform7725.gamesdk.ExitActivity"
79 + android:theme="@style/Login" />
80 + <activity
81 + android:name="com.platform7725.gamesdk.ShareByFacebookActivity"
82 + android:theme="@style/UserList" />
83 + <activity
84 + android:name="com.platform7725.gamesdk.ShareByLINEActivity"
85 + android:configChanges="keyboardHidden|orientation"
86 + android:theme="@style/p7725_full_screen" />
87 + <activity
88 + android:name="com.platform7725.gamesdk.ClauseActivity"
89 + android:configChanges="keyboardHidden|orientation"
90 + android:theme="@style/p7725_full_screen" />
91 +
92 + <receiver android:name="com.platform7725.gamesdk.receive.OtopGameReceiver" >
93 + <intent-filter>
94 + <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
95 + <action android:name="android.intent.action.BATTERY_CHANGED" />
96 + </intent-filter>
97 + </receiver>
98 + <receiver
99 + android:name="com.appsflyer.MultipleInstallBroadcastReceiver"
100 + android:exported="true" >
101 + <intent-filter>
102 + <action android:name="com.android.vending.INSTALL_REFERRER" />
103 + </intent-filter>
104 + </receiver>
105 + <receiver
106 + android:name="com.platform7725.gamesdk.InstallReceiver"
107 + android:enabled="true"
108 + android:exported="true" >
109 + <intent-filter>
110 + <action android:name="com.android.vending.INSTALL_REFERRER" />
111 + </intent-filter>
112 + </receiver>
113 + <receiver
114 + android:name="com.mobileapptracker.Tracker"
115 + android:exported="true" >
116 + <intent-filter>
117 + <action android:name="com.android.vending.INSTALL_REFERRER" />
118 + </intent-filter>
119 + </receiver>
120 +
121 + <service android:name="com.kuadcpa.OpenUDID_service" >
122 + <intent-filter>
123 + <action android:name="org.openudid.GETUDID" />
124 + </intent-filter>
125 + </service>
126 + <service android:name="com.platform7725.gamesdk.service.OtopGameService" >
127 + <intent-filter>
128 + <action android:name="com.platform7725.gamesdk.service.NOTICES_FILTER" />
129 + </intent-filter>
130 + </service>
131 +
132 +
133 + <activity
134 + android:name="com.facebook.LoginActivity"
135 + android:label="@string/com_7725_app_name"
136 + android:theme="@android:style/Theme.Translucent.NoTitleBar" />
137 +
138 + <meta-data
139 + android:name="com.facebook.sdk.ApplicationId"
140 + android:value="@string/com_7725_facebookSdkApplicationId" />
141 + <meta-data
142 + android:name="com_7725_payment_flag"
143 + android:value="gash" />
144 + <meta-data android:name="com.google.android.gms.version"
145 + android:value="@integer/google_play_services_version" />
146 + <!-- easygame SDK ACTIVITY、SERVER、RECEIVER END. -->
147 +
148 + <!-- download Begin -->
149 + <activity
150 + android:name="com.library.providers.downloads.ui.DownloadListActivity"
151 + android:launchMode="singleTask"
152 + android:theme="@style/p7725_full_screen" />
153 + <activity
154 + android:name="com.p7725.downloadmanager.DownloadManagerActivity"
155 + android:theme="@style/p7725_full_screen" />
156 +
157 + <provider
158 + android:name="com.library.providers.downloads.DownloadProvider"
159 + android:authorities="com.platform7725.gamesdk"
160 + android:exported="false" />
161 +
162 + <service android:name="com.library.providers.downloads.DownloadService" />
163 +
164 + <receiver
165 + android:name="com.library.providers.downloads.DownloadReceiver"
166 + android:exported="false" >
167 + <intent-filter>
168 + <action android:name="android.intent.action.BOOT_COMPLETED" />
169 + <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
170 + </intent-filter>
171 + </receiver>
172 + <!-- download End -->
173 +```
174 +## 3.代码相关接口说明 ##
175 +1.调用登录界面
176 +
177 +通过调用静态方法
178 +```java
179 +LoginProActivity.login(requestCode, callback, context)
180 +```
181 +进行登录。登录成功后,帐户信息封装为USER添加到intent,通过接口回传。
182 +
183 +
184 +
185 +- requestCode:返回码,接入方定义,用于LoginActivity界面返回本游戏界面时触发onActivityResult的响应码。
186 +
187 +- Callback:ITopSDKEventsListener接口,登录成功后,数据将封装到intent,并通过这个接口回调。请接入方的activity实现该接口,编写登录成功后的代码。
188 +
189 +- Context:当前的context
190 +
191 +
192 +示例
193 +```java
194 + LoginProActivity.login(LOGIN_CODE, new ITopSDKEventsListener() {
195 +
196 + @Override
197 + public void onEventDispatch(int code, Intent data) {
198 + Log.e("onEventDispatch--->", "code:" + code);
199 + User user = (User) data.getSerializableExtra("user");
200 + if (user != null) {
201 + String nickName = user.getNickname();
202 + Toasts.makeText(context, "账号登录成功:"+nickName);
203 + }
204 + }
205 + }, context);
206 +```
207 +
208 +2.获取登录用户资料
209 +
210 +在Activity中实现ITopSDKEventsListener接口,实现onEventDispatch方法获取用户资料(Class User, User结构)
211 +
212 +```java
213 +User user = (User) getIntent().getSerializableExtra("user");
214 +```
215 +
216 +User类提供的函数
217 +```java
218 +方法名 返回值数据类型 返回值含义
219 +getUserID() String easygame用户惟一标识
220 +getNickName() String easygame用户昵称
221 +getSex() String easygame用户的性别,枚举值:男、女
222 +getLoginTime() Integer easygame用户本次成功登录时间,UNIXTIME时间戳
223 +getSign() String 给游戏服务器验签使用,验签方式
224 +getGame() String 用户来源游戏别名,如:fengyuntx7725
225 +getOpenidChannel() String 用户来源渠道名,枚举值:Facebook, Google
226 +getOpenUID() String OPENID用户标识,有约定的游戏才可以使用
227 +setServer (serverID) Boolean 用户进入伺服器时调用,区分伺服器的游戏若无调用本函数将无法使用储值功能
228 +setRole(roleid, rolename) Boolean 用户登入角色时调用,不管首次或下次登入都需要调用,有角色名的游戏若无调用本函数将无法使用储值功能
229 +
230 +```
231 +
232 +3.游戏服务端登录验证
233 +
234 +游戏客户端发送以下参数到游戏服务端进行验证。如:
235 +
236 +```java
237 +userid = User.getUserID()
238 +openuid = User.getOpenUID()
239 +nickname = User.getNickName()
240 +sex = User.getSex()
241 +logintime = User.getLoginTime()
242 +Sign = User.getSign()
243 +```
244 +签名加密方式
245 +```java
246 +Sign = md5( game_server_key + userid + openuid + nickname + sex + logintime );
247 +```
248 +注:集成过程中,发现不少厂商将上述参数作特殊字符过滤处理,导致签名校验失败,在此强调 md5 加密用的参数,绝不能过滤特殊字符。
249 +
250 +4.进入充值界面
1 +<!DOCTYPE HTML>
2 +<html>
3 +<head>
4 +<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5 +<title>error</title>
6 +<style type="text/css">
7 +section{ width:100%; margin:0 auto; max-width:550px;}
8 +section img { max-width:100%; width:100%; height:auto; margin:15% auto}
9 +section a{ float:right; width:10%}
10 +</style>
11 +
12 +</head>
13 +
14 +<body>
15 + <section>
16 + <a href="#" title="" onClick="android.closeButton();"><img src="images/close1.png"></a>
17 + <img src="images/error1.png" />
18 + </section>
19 +
20 +</body>
21 +</html>
1 +getSdkRuntimeConf_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=getSdkRuntimeConf&pvc=3
2 +heartbeatReporting_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=heartbeatReporting&pvc=3
3 +bindingCheck_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=bindingCheck&pvc=3
4 +setRole_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=setRole&pvc=3
5 +setServer_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=setServer&pvc=3
6 +openid_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=openLogin&pvc=3
7 +login_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=login&pvc=3
8 +register_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=regist&pvc=3
9 +register_quick_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=autoRegist&pvc=3
10 +login_auto_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=autoLogin&pvc=3
11 +change_password_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=changePassword&pvc=3
12 +change_password_auto_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=changeAutoPassword&pvc=3
13 +forget_password_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=forgetPassword&pvc=3
14 +ignore_change_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=updatePasswordStatus&pvc=3
15 +billing_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=billingOrderComfirm&pvc=3
16 +billingCancelOrder_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=billingCancelOrder&pvc=3
17 +deposit_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=payment&pvc=3
18 +ads_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?a=adTracking&pvc=3
19 +clock_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=getAlarmClockAdv&pvc=3&game=
20 +customer_url=http://sdk.easygame.hk/mgame_sdk_api/?m=service&pvc=3
21 +deposit_head_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=instruct&pvc=3
22 +agreement_url=http://sdk.easygame.hk/mgame_sdk_api/?a=clause&pvc=3&game=
23 +api_time_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?a=getTimestamp&pvc=3&game=
24 +webLogin_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=openLoginByWeb&pvc=3
25 +binding_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=bindingAutoRegs&pvc=3
26 +deposits_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=payRecord&pvc=3
27 +game_list_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=games&pvc=3
28 +game_detail_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=gameInfo&pvc=3
29 +ad_list_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=advList&pvc=3
30 +binding_account_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=bindingAccount&pvc=3
31 +networkerror_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=catchNetworkError&pvc=3
...\ No newline at end of file ...\ No newline at end of file
No preview for this file type
No preview for this file type
1 +prebuilt_jar(
2 + name = 'android-support-v4',
3 + binary_jar = 'android-support-v4.jar',
4 + visibility = [
5 + 'PUBLIC',
6 + ],
7 +)
8 +
9 +prebuilt_jar(
10 + name = 'bolts',
11 + binary_jar = 'bolts.jar',
12 + visibility = [
13 + 'PUBLIC',
14 + ],
15 +)
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
1 +doc=../../../docs/reference
No preview for this file type
No preview for this file type
No preview for this file type
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 +** Copyright 2010, Google Inc.
4 +**
5 +** Licensed under the Apache License, Version 2.0 (the "License");
6 +** you may not use this file except in compliance with the License.
7 +** You may obtain a copy of the License at
8 +**
9 +** http://www.apache.org/licenses/LICENSE-2.0
10 +**
11 +** Unless required by applicable law or agreed to in writing, software
12 +** distributed under the License is distributed on an "AS IS" BASIS,
13 +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 +** See the License for the specific language governing permissions and
15 +** limitations under the License.
16 +*/
17 +-->
18 +
19 +<set xmlns:android="http://schemas.android.com/apk/res/android" >
20 + <translate
21 + android:interpolator="@android:anim/decelerate_interpolator"
22 + android:fromYDelta="+12%p"
23 + android:toYDelta="0"
24 + android:duration="300" />
25 +</set>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 +** Copyright 2010, Google Inc.
4 +**
5 +** Licensed under the Apache License, Version 2.0 (the "License");
6 +** you may not use this file except in compliance with the License.
7 +** You may obtain a copy of the License at
8 +**
9 +** http://www.apache.org/licenses/LICENSE-2.0
10 +**
11 +** Unless required by applicable law or agreed to in writing, software
12 +** distributed under the License is distributed on an "AS IS" BASIS,
13 +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 +** See the License for the specific language governing permissions and
15 +** limitations under the License.
16 +*/
17 +-->
18 +
19 +<set xmlns:android="http://schemas.android.com/apk/res/android" >
20 + <translate
21 + android:interpolator="@android:anim/decelerate_interpolator"
22 + android:fromYDelta="0"
23 + android:toYDelta="+12%p"
24 + android:duration="300" />
25 +</set>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<alpha xmlns:android="http://schemas.android.com/apk/res/android"
3 + android:interpolator="@android:anim/accelerate_interpolator"
4 + android:fromAlpha="0.0" android:toAlpha="1.0"
5 + android:duration="300" />
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<alpha xmlns:android="http://schemas.android.com/apk/res/android"
3 + android:interpolator="@android:anim/accelerate_interpolator"
4 + android:fromAlpha="1.0" android:toAlpha="0.0"
5 + android:duration="300" />
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<set xmlns:android="http://schemas.android.com/apk/res/android" >
3 +
4 + <translate
5 + android:duration="1500"
6 + android:fromXDelta="100%p"
7 + android:toXDelta="-100%p" />
8 +
9 + <alpha
10 + android:duration="1500"
11 + android:fromAlpha="0.1"
12 + android:toAlpha="1.0" />
13 +
14 +</set>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_recreation_member_friendsbutton1" />
5 + <item android:drawable="@drawable/p7725_recreation_member_friendsbutton" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725two_recreation_chat_bg2" />
5 + <item android:drawable="@drawable/p7725two_recreation_chat_bg1" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725two_recreation_member_popbutton7" />
5 + <item android:drawable="@drawable/p7725two_recreation_member_popbutton6" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk__download_buttom_background_reaction" />
5 + <item android:drawable="@drawable/p7725_sdk__download_buttom_background" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_recreation_topreturn1" />
5 + <item android:drawable="@drawable/p7725_recreation_topreturn" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_exit_close_off" />
5 + <item android:drawable="@drawable/p7725_exit_close_on" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<selector xmlns:android="http://schemas.android.com/apk/res/android">
3 +
4 + <item
5 + android:drawable="@drawable/com_facebook_button_blue_pressed"
6 + android:state_focused="true"
7 + android:state_pressed="true"
8 + />
9 + <item
10 + android:drawable="@drawable/com_facebook_button_blue_pressed"
11 + android:state_focused="false"
12 + android:state_pressed="true"
13 + />
14 + <item
15 + android:drawable="@drawable/com_facebook_button_blue_focused"
16 + android:state_focused="true"
17 + />
18 + <item
19 + android:drawable="@drawable/com_facebook_button_blue_normal"
20 + android:state_focused="false"
21 + android:state_pressed="false"
22 + />
23 +
24 +</selector>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +<selector xmlns:android="http://schemas.android.com/apk/res/android">
18 + <item android:state_checked="true" android:drawable="@drawable/com_facebook_button_check_on" />
19 + <item android:drawable="@drawable/com_facebook_button_check_off" />
20 +</selector>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<selector xmlns:android="http://schemas.android.com/apk/res/android">
3 +
4 + <item
5 + android:drawable="@drawable/com_facebook_button_like_pressed"
6 + android:state_focused="true"
7 + android:state_pressed="true"
8 + />
9 + <item
10 + android:drawable="@drawable/com_facebook_button_like_pressed"
11 + android:state_focused="false"
12 + android:state_pressed="true"
13 + />
14 + <item
15 + android:drawable="@drawable/com_facebook_button_like_background"
16 + android:state_focused="true"
17 + android:state_pressed="false"
18 + />
19 + <item
20 + android:drawable="@drawable/com_facebook_button_like_background"
21 + android:state_focused="false"
22 + android:state_pressed="false"
23 + />
24 +
25 +</selector>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<selector xmlns:android="http://schemas.android.com/apk/res/android">
3 +
4 + <item
5 + android:drawable="@drawable/com_facebook_button_like_pressed"
6 + android:state_focused="true"
7 + android:state_pressed="true"
8 + />
9 + <item
10 + android:drawable="@drawable/com_facebook_button_like_pressed"
11 + android:state_focused="false"
12 + android:state_pressed="true"
13 + />
14 + <item
15 + android:drawable="@drawable/com_facebook_button_like_background_selected"
16 + android:state_focused="true"
17 + android:state_pressed="false"
18 + />
19 + <item
20 + android:drawable="@drawable/com_facebook_button_like_background_selected"
21 + android:state_focused="false"
22 + android:state_pressed="false"
23 + />
24 +
25 +
26 +</selector>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +<selector xmlns:android="http://schemas.android.com/apk/res/android" >
18 + <item android:state_pressed="true"
19 + android:drawable="@drawable/com_facebook_loginbutton_blue_pressed" />
20 + <item android:state_focused="true"
21 + android:drawable="@drawable/com_facebook_loginbutton_blue_focused" />
22 + <item android:drawable="@drawable/com_facebook_loginbutton_blue_normal" />
23 +</selector>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +<selector xmlns:android="http://schemas.android.com/apk/res/android" >
18 + <item android:state_pressed="true"
19 + android:drawable="@drawable/com_facebook_button_grey_pressed" />
20 + <item android:state_focused="true"
21 + android:drawable="@drawable/com_facebook_button_grey_focused" />
22 + <item android:drawable="@drawable/com_facebook_button_grey_normal" />
23 +</selector>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +<selector xmlns:android="http://schemas.android.com/apk/res/android">
18 +
19 + <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->
20 + <item android:state_focused="true" android:state_enabled="false" android:state_pressed="true" android:drawable="@drawable/com_facebook_picker_list_selector_disabled" />
21 + <item android:state_focused="true" android:state_enabled="false" android:drawable="@drawable/com_facebook_picker_list_selector_disabled" />
22 + <item android:state_focused="true" android:state_pressed="true" android:drawable="@drawable/com_facebook_picker_list_selector_background_transition" />
23 + <item android:state_focused="false" android:state_pressed="true" android:drawable="@drawable/com_facebook_picker_list_selector_background_transition" />
24 + <item android:state_focused="true" android:drawable="@drawable/com_facebook_picker_list_focused" />
25 + <item android:drawable="@android:color/transparent" />
26 +</selector>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +<selector xmlns:android="http://schemas.android.com/apk/res/android">
18 +
19 + <item android:state_window_focused="false" android:drawable="@android:color/transparent" />
20 +
21 + <item android:state_focused="true" android:state_enabled="false" android:state_pressed="true" android:drawable="@drawable/com_facebook_picker_list_selector_disabled" />
22 + <item android:state_focused="true" android:state_enabled="false" android:drawable="@drawable/com_facebook_picker_list_selector_disabled" />
23 + <item android:state_focused="true" android:state_pressed="true" android:drawable="@drawable/com_facebook_picker_list_selector_background_transition" />
24 + <item android:state_focused="false" android:state_pressed="true" android:drawable="@drawable/com_facebook_picker_list_selector_background_transition" />
25 + <item android:state_focused="true" android:drawable="@drawable/com_facebook_picker_list_focused" />
26 +
27 +</selector>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!-- Copyright (C) 2010 The Android Open Source Project
3 +
4 + Licensed under the Apache License, Version 2.0 (the "License");
5 + you may not use this file except in compliance with the License.
6 + You may obtain a copy of the License at
7 +
8 + http://www.apache.org/licenses/LICENSE-2.0
9 +
10 + Unless required by applicable law or agreed to in writing, software
11 + distributed under the License is distributed on an "AS IS" BASIS,
12 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 + See the License for the specific language governing permissions and
14 + limitations under the License.
15 +-->
16 +
17 +<transition xmlns:android="http://schemas.android.com/apk/res/android">
18 + <item android:drawable="@drawable/com_facebook_picker_list_pressed" />
19 + <item android:drawable="@drawable/com_facebook_picker_list_longpressed" />
20 +</transition>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +<shape xmlns:android="http://schemas.android.com/apk/res/android">
18 + <gradient
19 + android:startColor="#3f5b96"
20 + android:endColor="#2d4984"
21 + android:angle="270"/>
22 +</shape>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +<shape xmlns:android="http://schemas.android.com/apk/res/android">
18 + <gradient
19 + android:startColor="#FF5975b0"
20 + android:endColor="#FF47639e"
21 + android:angle="270"/>
22 +</shape>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<selector xmlns:android="http://schemas.android.com/apk/res/android">
19 + <item android:state_pressed="true"
20 + android:drawable="@drawable/com_facebook_picker_top_button" />
21 + <item android:state_focused="true"
22 + android:drawable="@drawable/com_facebook_picker_top_button" />
23 + <item android:state_selected="true"
24 + android:drawable="@drawable/com_facebook_picker_top_button" />
25 + <item
26 + android:drawable="@drawable/com_facebook_top_background" />
27 +</selector>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
18 + <gradient
19 + android:startColor="#5774B5"
20 + android:endColor="#2C4988"
21 + android:gradientRadius="495"
22 + android:type="radial"/>
23 +</shape>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<selector xmlns:android="http://schemas.android.com/apk/res/android" >
3 + <item android:state_pressed="true" android:color="@color/p7725_sdk_white"/>
4 + <item android:color="@color/p7725_sdk_black"/>
5 +
6 +</selector>
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_exit_ok_off" />
5 + <item android:drawable="@drawable/p7725_exit_ok_on" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_tools_bar_icon_account_on" />
5 + <item android:drawable="@drawable/p7725_sdk_tools_bar_icon_account" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_fybotton_77252" />
5 + <item android:drawable="@drawable/p7725_sdk_fybotton_77251" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_fybotton_7725_en2" />
5 + <item android:drawable="@drawable/p7725_sdk_fybotton_7725_en1" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_msbotton_77252" />
5 + <item android:drawable="@drawable/p7725_sdk_msbotton_77251" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_msbotton_7725_en2" />
5 + <item android:drawable="@drawable/p7725_sdk_msbotton_7725_en1" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_quick_loginbotton_77252" />
5 + <item android:drawable="@drawable/p7725_sdk_quick_loginbotton_77251" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_quick_loginbotton_77253" />
5 + <item android:drawable="@drawable/p7725_sdk_quick_loginbotton_77254" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_close_buttom_reaction" />
5 + <item android:drawable="@drawable/p7725_sdk_close_buttom" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_fybotton_facebook2" />
5 + <item android:drawable="@drawable/p7725_sdk_fybotton_facebook1" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_msbotton_facebook2" />
5 + <item android:drawable="@drawable/p7725_sdk_msbotton_facebook1" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_buttom_background_reaction" />
5 + <item android:drawable="@drawable/p7725_sdk_buttom_background" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_botton_pulldown1" />
5 + <item android:drawable="@drawable/p7725_sdk_botton_pulldown" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_botton_login2" />
5 + <item android:drawable="@drawable/p7725_sdk_botton_login1" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_invitation_buttom_reaction" />
5 + <item android:drawable="@drawable/p7725_sdk_invitation_buttom" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_back_buttom_reaction" />
5 + <item android:drawable="@drawable/p7725_sdk_back_buttom" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_icon_fans_on" />
5 + <item android:drawable="@drawable/p7725_sdk_icon_fans_off" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_icon_game_center_on" />
5 + <item android:drawable="@drawable/p7725_sdk_icon_game_center_off" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_icon_raiders_on" />
5 + <item android:drawable="@drawable/p7725_sdk_icon_raiders_off" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_icon_account_on" />
5 + <item android:drawable="@drawable/p7725_sdk_icon_account_off" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<selector xmlns:android="http://schemas.android.com/apk/res/android" >
3 + <item android:drawable="@drawable/p7725_sdk_checkbox_pressed" android:state_checked="true"/>
4 + <item android:drawable="@drawable/p7725_sdk_checkbox_normal" android:state_checked="false"/>
5 + <item android:drawable="@drawable/p7725_sdk_checkbox_normal"/>
6 +</selector>
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_tools_bar_icon_fans_on" />
5 + <item android:drawable="@drawable/p7725_sdk_tools_bar_icon_fans" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
3 +
4 + <item
5 + android:id="@+android:id/background"
6 + android:drawable="@drawable/p7725_sdk_star_off"/>
7 + <item
8 + android:id="@+android:id/secondaryProgress"
9 + android:drawable="@drawable/p7725_icon_default"/>
10 + <item
11 + android:id="@+android:id/progress"
12 + android:drawable="@drawable/p7725_sdk_star_on"/>
13 +
14 +</layer-list>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_tools_bar_icon_gamecenter_on" />
5 + <item android:drawable="@drawable/p7725_sdk_tools_bar_icon_gamecenter" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<selector
3 + xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:state_pressed="true" android:drawable="@drawable/p7725_sdk_tools_bar_icon_customer_service_account_on" />
5 + <item android:drawable="@drawable/p7725_sdk_tools_bar_icon_customer_service" />
6 +</selector>
...\ No newline at end of file ...\ No newline at end of file
1 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:tools="http://schemas.android.com/tools"
3 + android:layout_width="match_parent"
4 + android:layout_height="match_parent"
5 + android:background="#a2a3dc"
6 + tools:context=".GameLoginActivity" >
7 +
8 + <!-- 登录 -->
9 +
10 + <RelativeLayout
11 + android:id="@+id/l0"
12 + android:layout_width="fill_parent"
13 + android:layout_height="fill_parent"
14 + android:layout_centerHorizontal="true"
15 + android:layout_centerVertical="true"
16 + android:gravity="center"
17 + android:visibility="gone" >
18 +
19 + <Button
20 + android:id="@+id/btn_login"
21 + android:layout_width="wrap_content"
22 + android:layout_height="wrap_content"
23 + android:text="登录" />
24 + </RelativeLayout>
25 +
26 + <!-- 选服 -->
27 +
28 + <RelativeLayout
29 + android:id="@+id/l1"
30 + android:layout_width="fill_parent"
31 + android:layout_height="fill_parent"
32 + android:visibility="gone" >
33 +
34 + <TextView
35 + android:id="@+id/tv_serverid"
36 + android:layout_width="wrap_content"
37 + android:layout_height="wrap_content"
38 + android:layout_centerHorizontal="true"
39 + android:layout_marginTop="150dp"
40 + android:text="设置服务器ID:"
41 + android:textColor="#000"
42 + android:textSize="18sp" />
43 +
44 + <EditText
45 + android:id="@+id/et_serverid"
46 + android:layout_width="150dp"
47 + android:layout_height="50dp"
48 + android:layout_below="@id/tv_serverid"
49 + android:layout_centerHorizontal="true"
50 + android:gravity="center"
51 + android:inputType="text"
52 + android:singleLine="true"
53 + android:text="s1"
54 + android:textColor="#000" />
55 +
56 + <Button
57 + android:id="@+id/btn_setserverid"
58 + android:layout_width="fill_parent"
59 + android:layout_height="50dp"
60 + android:layout_alignParentBottom="true"
61 + android:text="提交,下一步"
62 + android:textColor="#000" />
63 + </RelativeLayout>
64 +
65 + <!-- 选角 -->
66 +
67 + <RelativeLayout
68 + android:id="@+id/l2"
69 + android:layout_width="fill_parent"
70 + android:layout_height="fill_parent"
71 + android:layout_centerHorizontal="true"
72 + android:layout_centerVertical="true"
73 + android:visibility="visible" >
74 +
75 + <LinearLayout
76 + android:id="@+id/l2_roleid"
77 + android:layout_width="wrap_content"
78 + android:layout_height="wrap_content"
79 + android:layout_centerHorizontal="true"
80 + android:layout_marginTop="150dp"
81 + android:gravity="center_horizontal"
82 + android:orientation="vertical"
83 + android:padding="5dp" >
84 +
85 + <TextView
86 + android:id="@+id/tv_roleid"
87 + android:layout_width="wrap_content"
88 + android:layout_height="wrap_content"
89 + android:text="设置角色ID:"
90 + android:textColor="#000"
91 + android:textSize="18sp" />
92 +
93 + <EditText
94 + android:id="@+id/et_roleid"
95 + android:layout_width="150dp"
96 + android:layout_height="50dp"
97 + android:gravity="center"
98 + android:inputType="text"
99 + android:singleLine="true"
100 + android:text="1001"
101 + android:textColor="#000" />
102 + </LinearLayout>
103 +
104 + <LinearLayout
105 + android:id="@+id/l2_role"
106 + android:layout_width="wrap_content"
107 + android:layout_height="wrap_content"
108 + android:layout_below="@id/l2_roleid"
109 + android:layout_centerHorizontal="true"
110 + android:gravity="center_horizontal"
111 + android:orientation="vertical"
112 + android:padding="5dp" >
113 +
114 + <TextView
115 + android:id="@+id/tv_role"
116 + android:layout_width="wrap_content"
117 + android:layout_height="wrap_content"
118 + android:text="设置角色名称:"
119 + android:textColor="#000"
120 + android:textSize="18sp" />
121 +
122 + <EditText
123 + android:id="@+id/et_role"
124 + android:layout_width="150dp"
125 + android:layout_height="50dp"
126 + android:gravity="center"
127 + android:inputType="text"
128 + android:singleLine="true"
129 + android:text="role1001"
130 + android:textColor="#000" />
131 + </LinearLayout>
132 +
133 + <Button
134 + android:id="@+id/btn_setrole"
135 + android:layout_width="fill_parent"
136 + android:layout_height="50dp"
137 + android:layout_alignParentBottom="true"
138 + android:text="提交,下一步"
139 + android:textColor="#000" />
140 + </RelativeLayout>
141 +
142 + <!-- 正常游戏 -->
143 +
144 + <RelativeLayout
145 + android:id="@+id/l3"
146 + android:layout_width="fill_parent"
147 + android:layout_height="fill_parent"
148 + android:layout_centerHorizontal="true"
149 + android:layout_centerVertical="true"
150 + android:visibility="gone" >
151 +
152 + <Button
153 + android:id="@+id/btn_pay"
154 + android:layout_width="100dp"
155 + android:layout_height="40dp"
156 + android:layout_centerHorizontal="true"
157 + android:layout_marginTop="150dp"
158 + android:text="储值" />
159 +
160 + <Button
161 + android:id="@+id/btn_customer"
162 + android:layout_width="100dp"
163 + android:layout_height="40dp"
164 + android:layout_below="@id/btn_pay"
165 + android:layout_centerHorizontal="true"
166 + android:text="客服" />
167 +
168 + <Button
169 + android:id="@+id/btn_exit"
170 + android:layout_width="100dp"
171 + android:layout_height="40dp"
172 + android:layout_below="@id/btn_customer"
173 + android:layout_centerHorizontal="true"
174 + android:text="退出" />
175 +
176 + <LinearLayout
177 + android:layout_width="fill_parent"
178 + android:layout_height="wrap_content"
179 + android:layout_alignParentBottom="true" >
180 +
181 + <Button
182 + android:id="@+id/btn_assecc"
183 + android:layout_width="0dp"
184 + android:layout_height="40dp"
185 + android:layout_weight="1.0"
186 + android:text="获取FB AsseccToken" />
187 +
188 + <Button
189 + android:id="@+id/btn_share"
190 + android:layout_width="0dp"
191 + android:layout_height="40dp"
192 + android:layout_weight="1.0"
193 + android:text="分享FB Share" />
194 + </LinearLayout>
195 + </RelativeLayout>
196 +
197 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
19 + android:layout_width="match_parent"
20 + android:layout_height="match_parent"
21 + android:background="#FFFFFF">
22 +
23 + <include layout="@layout/com_facebook_picker_title_bar_stub"/>
24 +
25 + <ListView
26 + android:id="@+id/com_facebook_picker_list_view"
27 + android:layout_width="match_parent"
28 + android:layout_height="match_parent"
29 + android:divider="@drawable/com_facebook_list_divider"
30 + android:fastScrollEnabled="true"
31 + android:scrollbars="vertical"
32 + android:listSelector="@drawable/com_facebook_picker_list_selector"
33 + android:cacheColorHint="#FFFFFF"
34 + />
35 +
36 + <ProgressBar android:indeterminate="true"
37 + android:layout_width="wrap_content"
38 + android:layout_height="wrap_content"
39 + android:id="@+id/com_facebook_picker_activity_circle"
40 + style="@android:style/Widget.ProgressBar"
41 + android:layout_centerInParent="true"
42 + android:visibility="invisible"
43 + />
44 +</RelativeLayout>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +
3 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
4 + android:layout_width="match_parent"
5 + android:layout_height="match_parent">
6 +
7 + <ProgressBar android:indeterminate="true"
8 + android:layout_width="wrap_content"
9 + android:layout_height="50dip"
10 + android:id="@+id/com_facebook_login_activity_progress_bar"
11 + android:layout_centerInParent="true"
12 + android:visibility="gone"
13 + android:indeterminateOnly="true"
14 + />
15 +</RelativeLayout>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<RelativeLayout
19 + xmlns:android="http://schemas.android.com/apk/res/android"
20 + android:layout_height="50dip"
21 + android:layout_width="match_parent"
22 + >
23 + <ProgressBar android:indeterminate="true"
24 + android:layout_width="wrap_content"
25 + android:layout_height="50dip"
26 + android:id="@+id/com_facebook_picker_row_activity_circle"
27 + style="@android:style/Widget.ProgressBar.Small"
28 + android:layout_centerInParent="true"
29 + android:visibility="visible"
30 + android:indeterminateOnly="true"
31 + />
32 +</RelativeLayout>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<CheckBox
19 + xmlns:android="http://schemas.android.com/apk/res/android"
20 + android:id="@+id/com_facebook_picker_checkbox"
21 + android:layout_width="23dip"
22 + android:layout_height="23dip"
23 + android:focusable="false"
24 + android:clickable="false"
25 + android:button="@drawable/com_facebook_button_check" />
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<ImageView
19 + xmlns:android="http://schemas.android.com/apk/res/android"
20 + android:id="@+id/com_facebook_picker_image"
21 + android:layout_width="50dip"
22 + android:layout_height="50dip"
23 + android:layout_gravity="center_vertical"
24 + android:src="@drawable/com_facebook_profile_default_icon" />
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<LinearLayout
19 + xmlns:android="http://schemas.android.com/apk/res/android"
20 + android:layout_height="wrap_content"
21 + android:layout_width="match_parent"
22 + >
23 + <ViewStub
24 + android:id="@+id/com_facebook_picker_profile_pic_stub"
25 + android:inflatedId="@+id/com_facebook_picker_image"
26 + android:layout="@layout/com_facebook_picker_image"
27 + android:layout_width="50dip"
28 + android:layout_height="50dip" />
29 + <TextView
30 + android:id="@+id/com_facebook_picker_title"
31 + android:layout_width="100dip"
32 + android:layout_height="50dip"
33 + android:layout_weight="1.0"
34 + android:paddingLeft="5dip"
35 + android:textStyle="bold"
36 + android:textColor="#000000"
37 + android:singleLine="true"
38 + android:ellipsize="end"
39 + android:textSize="18sp"
40 + android:gravity="left|center_vertical"/>
41 + <ViewStub
42 + android:id="@+id/com_facebook_picker_checkbox_stub"
43 + android:inflatedId="@+id/com_facebook_picker_checkbox"
44 + android:layout="@layout/com_facebook_picker_checkbox"
45 + android:layout_width="23dip"
46 + android:layout_height="23dip"
47 + android:layout_marginRight="10dip"/>
48 +</LinearLayout>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<TextView
19 + xmlns:android="http://schemas.android.com/apk/res/android"
20 + android:id="@+id/com_facebook_picker_list_section_header"
21 + android:layout_width="match_parent"
22 + android:layout_height="wrap_content"
23 + android:textStyle="bold"
24 + android:background="@drawable/com_facebook_list_section_header_background"
25 + android:orientation="horizontal"
26 + android:gravity="left|center_vertical"
27 + android:textColor="#68768a"
28 + android:textSize="17sp"
29 + android:paddingLeft="8dip"
30 + android:paddingBottom="0px"
31 + android:shadowDx="1"
32 + android:shadowDy="1"
33 + android:shadowRadius="1"
34 + android:shadowColor="#BFFFFFFF" />
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
19 + android:layout_width="match_parent"
20 + android:layout_height="wrap_content"
21 + android:orientation="vertical"
22 + >
23 + <include layout="@layout/com_facebook_search_bar_layout" />
24 + <View
25 + android:layout_width="match_parent"
26 + android:layout_height="@dimen/com_facebook_picker_divider_width"
27 + android:background="@drawable/com_facebook_picker_default_separator_color"
28 + />
29 +</LinearLayout>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
19 + android:id="@+id/com_facebook_picker_top_bar"
20 + android:layout_width="match_parent"
21 + android:layout_height="48dp"
22 + android:background="@drawable/com_facebook_top_background"
23 + android:gravity="right">
24 + <Button
25 + android:id="@+id/com_facebook_picker_done_button"
26 + android:layout_width="wrap_content"
27 + android:minWidth="55dp"
28 + android:layout_height="48dp"
29 + android:background="@drawable/com_facebook_top_button"
30 + android:paddingLeft="5dip"
31 + android:paddingRight="5dip"
32 + android:textColor="#ffffff"
33 + android:textSize="14sp"
34 + android:shadowColor="#66000000"
35 + android:shadowDx="1"
36 + android:shadowDy="1"
37 + android:shadowRadius="1"
38 + android:layout_alignParentRight="true"
39 + />
40 + <LinearLayout
41 + android:id="@+id/com_facebook_picker_divider"
42 + android:layout_width="1dp"
43 + android:layout_height="match_parent"
44 + android:background="#40000000"
45 + android:layout_alignLeft="@id/com_facebook_picker_done_button"/>
46 + <TextView
47 + android:id="@+id/com_facebook_picker_title"
48 + android:layout_width="match_parent"
49 + android:layout_height="match_parent"
50 + android:textSize="22sp"
51 + android:textColor="#FFFFFF"
52 + android:gravity="left|center_vertical"
53 + android:ellipsize="end"
54 + android:singleLine="true"
55 + android:scaleType="center"
56 + android:shadowColor="#66000000"
57 + android:shadowDx="1"
58 + android:shadowDy="1"
59 + android:shadowRadius="1"
60 + android:layout_marginLeft="10dip"
61 + android:layout_marginRight="10dip"
62 + android:layout_toLeftOf="@id/com_facebook_picker_divider"/>
63 +</RelativeLayout>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<merge xmlns:android="http://schemas.android.com/apk/res/android">
19 + <ViewStub android:id="@+id/com_facebook_picker_title_bar_stub"
20 + android:inflatedId="@+id/com_facebook_picker_title_bar"
21 + android:layout="@layout/com_facebook_picker_title_bar"
22 + android:layout_height="48dip"
23 + android:layout_width="match_parent"/>
24 +
25 +</merge>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
19 + android:layout_width="match_parent"
20 + android:layout_height="match_parent"
21 + android:background="#FFFFFF"
22 + android:descendantFocusability="beforeDescendants"
23 + android:focusableInTouchMode="true">
24 +
25 + <include layout="@layout/com_facebook_picker_title_bar_stub"/>
26 +
27 + <ListView
28 + android:id="@+id/com_facebook_picker_list_view"
29 + android:layout_width="match_parent"
30 + android:layout_height="match_parent"
31 + android:layout_alignParentTop="true"
32 + android:divider="@null"
33 + android:fastScrollEnabled="true"
34 + android:scrollbars="vertical"
35 + android:listSelector="@drawable/com_facebook_picker_list_selector"
36 + android:cacheColorHint="#FFFFFF"
37 + />
38 +
39 + <ProgressBar android:indeterminate="true"
40 + android:layout_width="wrap_content"
41 + android:layout_height="wrap_content"
42 + android:id="@+id/com_facebook_picker_activity_circle"
43 + style="@android:style/Widget.ProgressBar"
44 + android:layout_centerInParent="true"
45 + android:visibility="invisible"
46 + />
47 +</RelativeLayout>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<RelativeLayout
19 + xmlns:android="http://schemas.android.com/apk/res/android"
20 + android:layout_height="wrap_content"
21 + android:layout_width="match_parent"
22 + android:focusable="false">
23 + <LinearLayout
24 + android:layout_width="match_parent"
25 + android:layout_height="wrap_content"
26 + android:orientation="horizontal"
27 + android:focusable="false"
28 + >
29 + <FrameLayout
30 + android:layout_width="80dp"
31 + android:layout_height="wrap_content"
32 + >
33 + <ViewStub
34 + android:id="@+id/com_facebook_picker_profile_pic_stub"
35 + android:inflatedId="@+id/com_facebook_picker_image"
36 + android:layout="@layout/com_facebook_picker_image"
37 + android:layout_gravity="left|center_vertical"
38 + android:layout_width="@dimen/com_facebook_picker_place_image_size"
39 + android:layout_height="@dimen/com_facebook_picker_place_image_size" />
40 + </FrameLayout>
41 + <LinearLayout
42 + android:orientation="vertical"
43 + android:focusable="false"
44 + android:layout_width="0dip"
45 + android:layout_height="wrap_content"
46 + android:layout_marginRight="16dp"
47 + android:layout_gravity="center_vertical"
48 + android:layout_weight="1">
49 + <TextView
50 + android:id="@+id/com_facebook_picker_title"
51 + android:layout_width="fill_parent"
52 + android:layout_height="wrap_content"
53 + android:layout_weight="1.0"
54 + android:ellipsize="end"
55 + android:singleLine="true"
56 + android:typeface="sans"
57 + android:textColor="#000000"
58 + android:lines="1"
59 + android:textSize="16sp"
60 + android:gravity="left|center_vertical"/>
61 + <TextView
62 + android:id="@+id/picker_subtitle"
63 + android:layout_width="fill_parent"
64 + android:layout_height="wrap_content"
65 + android:layout_weight="1.0"
66 + android:ellipsize="end"
67 + android:singleLine="true"
68 + android:textColor="#666666"
69 + android:lines="1"
70 + android:typeface="sans"
71 + android:textSize="12sp"
72 + android:gravity="left|center_vertical"/>
73 + </LinearLayout>
74 + <!--ViewStub
75 + android:id="@+id/checkbox_stub"
76 + android:inflatedId="@+id/picker_checkbox"
77 + android:layout="@layout/checkbox_layout"
78 + android:layout_width="23dip"
79 + android:layout_height="23dip"
80 + android:layout_marginRight="10dip"/-->
81 + </LinearLayout>
82 + <View
83 + android:layout_width="0dp"
84 + android:layout_height="@dimen/com_facebook_picker_divider_width"
85 + android:layout_alignParentLeft="true"
86 + android:layout_alignParentRight="true"
87 + android:layout_alignParentBottom="true"
88 + android:background="@drawable/com_facebook_picker_default_separator_color"
89 + />
90 +</RelativeLayout>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +
3 +<LinearLayout
4 + xmlns:android="http://schemas.android.com/apk/res/android"
5 + android:id="@+id/com_facebook_search_bar_view"
6 + android:orientation="horizontal"
7 + android:layout_width="match_parent"
8 + android:layout_height="wrap_content"
9 + android:paddingTop="0dp"
10 + android:paddingBottom="0dp"
11 + android:paddingLeft="5dp"
12 + android:paddingRight="5dp"
13 + android:background="@color/com_facebook_picker_search_bar_background"
14 + >
15 + <EditText
16 + android:id="@+id/com_facebook_picker_search_text"
17 + android:layout_width="match_parent"
18 + android:layout_height="48dp"
19 + android:layout_marginLeft="5dp"
20 + android:singleLine="true"
21 + android:layout_gravity="center"
22 + android:gravity="center_vertical"
23 + android:textSize="16sp"
24 + android:textColor="@android:color/black"
25 + android:textColorHint="@color/com_facebook_picker_search_bar_text"
26 + android:background="@color/com_facebook_picker_search_bar_background"
27 + android:drawableLeft="@drawable/com_facebook_picker_magnifier"
28 + android:drawablePadding="5dp"
29 + android:imeOptions="actionDone"
30 + />
31 +</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<RelativeLayout
3 + xmlns:android="http://schemas.android.com/apk/res/android"
4 + android:layout_width="wrap_content"
5 + android:layout_height="wrap_content"
6 + android:paddingLeft="20dp"
7 + android:paddingRight="20dp">
8 + <RelativeLayout
9 + android:id="@+id/com_facebook_body_frame"
10 + android:layout_width="wrap_content"
11 + android:layout_height="wrap_content"
12 + android:layout_below="@+id/com_facebook_tooltip_bubble_view_top_pointer"
13 + android:layout_centerHorizontal="true"
14 + android:background="@drawable/com_facebook_tooltip_blue_background">
15 + <ImageView
16 + android:id="@+id/com_facebook_button_xout"
17 + android:layout_width="wrap_content"
18 + android:layout_height="wrap_content"
19 + android:layout_alignParentTop="true"
20 + android:layout_alignParentRight="true"
21 + android:padding="10dp"
22 + android:src="@drawable/com_facebook_tooltip_blue_xout"
23 + />
24 + <TextView
25 + android:id="@+id/com_facebook_tooltip_bubble_view_text_body"
26 + android:layout_width="wrap_content"
27 + android:layout_height="wrap_content"
28 + android:layout_alignParentTop="true"
29 + android:layout_toLeftOf="@id/com_facebook_button_xout"
30 + android:layout_alignParentLeft="true"
31 + android:padding="10dp"
32 + style="@style/tooltip_bubble_text"
33 + />
34 + </RelativeLayout>
35 + <ImageView
36 + android:id="@+id/com_facebook_tooltip_bubble_view_top_pointer"
37 + android:layout_width="wrap_content"
38 + android:layout_height="wrap_content"
39 + android:layout_alignParentTop="true"
40 + android:layout_centerHorizontal="true"
41 + android:layout_marginBottom="-10dp"
42 + android:src="@drawable/com_facebook_tooltip_blue_topnub"
43 + />
44 + <ImageView
45 + android:id="@+id/com_facebook_tooltip_bubble_view_bottom_pointer"
46 + android:layout_width="wrap_content"
47 + android:layout_height="wrap_content"
48 + android:layout_gravity="center_horizontal|bottom"
49 + android:layout_centerHorizontal="true"
50 + android:layout_below="@id/com_facebook_body_frame"
51 + android:layout_marginTop="-13dp"
52 + android:src="@drawable/com_facebook_tooltip_blue_bottomnub"
53 + />
54 +</RelativeLayout>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<ScrollView
19 + xmlns:android="http://schemas.android.com/apk/res/android"
20 + xmlns:loginView="http://schemas.android.com/apk/res-auto"
21 + android:layout_width="match_parent"
22 + android:layout_height="match_parent"
23 + android:background="@drawable/com_facebook_usersettingsfragment_background_gradient" >
24 + <LinearLayout
25 + android:layout_width="match_parent"
26 + android:layout_height="wrap_content"
27 + android:orientation="vertical">
28 +
29 + <ImageView
30 + android:id="@+id/com_facebook_usersettingsfragment_logo_image"
31 + android:layout_width="193dp"
32 + android:layout_height="44dp"
33 + android:layout_gravity="center_horizontal"
34 + android:src="@drawable/com_facebook_logo"
35 + android:layout_marginTop="35dp"
36 + android:contentDescription="@string/com_facebook_logo_content_description"/>
37 +
38 + <TextView
39 + android:id="@+id/com_facebook_usersettingsfragment_profile_name"
40 + android:layout_width="match_parent"
41 + android:layout_height="100dp"
42 + android:lines="1"
43 + android:textSize="16sp"
44 + android:textStyle="bold"
45 + android:layout_marginTop="35dp"
46 + android:gravity="center"/>
47 +
48 + <com.facebook.widget.LoginButton
49 + android:id="@+id/com_facebook_usersettingsfragment_login_button"
50 + android:layout_width="wrap_content"
51 + android:layout_height="wrap_content"
52 + android:layout_gravity="center_horizontal"
53 + android:layout_marginTop="35dp"
54 + android:layout_marginBottom="35dp"
55 + loginView:login_text="@string/com_facebook_usersettingsfragment_log_in_button"
56 + style="@style/com_facebook_loginview_silver_style" />
57 +
58 + </LinearLayout>
59 +</ScrollView>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 +/*
4 +** Copyright 2010, The Android Open Source Project
5 +**
6 +** Licensed under the Apache License, Version 2.0 (the "License");
7 +** you may not use this file except in compliance with the License.
8 +** You may obtain a copy of the License at
9 +**
10 +** http://www.apache.org/licenses/LICENSE-2.0
11 +**
12 +** Unless required by applicable law or agreed to in writing, software
13 +** distributed under the License is distributed on an "AS IS" BASIS,
14 +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 +** See the License for the specific language governing permissions and
16 +** limitations under the License.
17 +*/
18 +-->
19 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
20 + android:layout_width="fill_parent"
21 + android:layout_height="fill_parent"
22 + android:orientation="vertical" >
23 +
24 + <!-- The main area showing the list of downloads -->
25 +
26 + <com.p7725.downloadmanager.view.TitleView
27 + android:id="@+id/ll_game_list_title"
28 + android:layout_width="fill_parent"
29 + android:layout_height="wrap_content"
30 + android:orientation="vertical" />
31 +
32 + <FrameLayout
33 + android:layout_width="fill_parent"
34 + android:layout_height="0dip"
35 + android:layout_weight="1.0"
36 + android:background="@color/p7725_sdk_all_background" >
37 +
38 + <ExpandableListView
39 + android:id="@+id/date_ordered_list"
40 + android:layout_width="fill_parent"
41 + android:layout_height="fill_parent" />
42 +
43 + <ListView
44 + android:id="@+id/size_ordered_list"
45 + android:layout_width="fill_parent"
46 + android:layout_height="fill_parent" />
47 +
48 + <TextView
49 + android:id="@+id/empty"
50 + android:layout_width="fill_parent"
51 + android:layout_height="fill_parent"
52 + android:gravity="center"
53 + android:text="@string/no_downloads"
54 + android:textStyle="bold" />
55 + </FrameLayout>
56 +
57 + <!-- The selection menu that pops up from the bottom of the screen -->
58 +
59 + <LinearLayout
60 + android:id="@+id/selection_menu"
61 + android:layout_width="fill_parent"
62 + android:layout_height="wrap_content"
63 + android:layout_gravity="center"
64 + android:background="@android:drawable/bottom_bar"
65 + android:gravity="center"
66 + android:orientation="horizontal"
67 + android:paddingBottom="1dip"
68 + android:paddingLeft="4dip"
69 + android:paddingRight="4dip"
70 + android:paddingTop="5dip"
71 + android:visibility="gone" >
72 +
73 + <Button
74 + android:id="@+id/selection_delete"
75 + android:layout_width="fill_parent"
76 + android:layout_height="fill_parent"
77 + android:layout_weight="1" />
78 +
79 + <Button
80 + android:id="@+id/deselect_all"
81 + android:layout_width="fill_parent"
82 + android:layout_height="fill_parent"
83 + android:layout_weight="1"
84 + android:text="@string/deselect_all" />
85 + </LinearLayout>
86 +
87 +</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 +/*
4 +** Copyright 2010, The Android Open Source Project
5 +**
6 +** Licensed under the Apache License, Version 2.0 (the "License");
7 +** you may not use this file except in compliance with the License.
8 +** You may obtain a copy of the License at
9 +**
10 +** http://www.apache.org/licenses/LICENSE-2.0
11 +**
12 +** Unless required by applicable law or agreed to in writing, software
13 +** distributed under the License is distributed on an "AS IS" BASIS,
14 +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 +** See the License for the specific language governing permissions and
16 +** limitations under the License.
17 +*/
18 +-->
19 +
20 +<com.library.providers.downloads.ui.DownloadItem xmlns:android="http://schemas.android.com/apk/res/android"
21 + android:layout_width="fill_parent"
22 + android:layout_height="wrap_content"
23 + android:background="#fff"
24 + android:descendantFocusability="blocksDescendants"
25 + android:gravity="center_vertical"
26 + android:paddingRight="?android:attr/scrollbarSize" >
27 +
28 + <!-- Clicks are handled directly by DownloadItem -->
29 +
30 + <CheckBox
31 + android:id="@+id/download_checkbox"
32 + android:layout_width="wrap_content"
33 + android:layout_height="wrap_content"
34 + android:layout_alignParentLeft="true"
35 + android:layout_centerVertical="true"
36 + android:layout_marginLeft="5dip"
37 + android:clickable="false"
38 + android:scaleType="fitCenter"
39 + android:visibility="visible" />
40 +
41 + <LinearLayout
42 + xmlns:android="http://schemas.android.com/apk/res/android"
43 + android:layout_width="fill_parent"
44 + android:layout_height="wrap_content"
45 + android:layout_toRightOf="@id/download_checkbox"
46 + android:descendantFocusability="blocksDescendants"
47 + android:gravity="center_vertical"
48 + android:orientation="horizontal" >
49 +
50 + <!-- Clicks are handled directly by DownloadItem -->
51 +
52 + <ImageView
53 + android:id="@+id/download_icon"
54 + android:layout_width="@android:dimen/app_icon_size"
55 + android:layout_height="@android:dimen/app_icon_size"
56 + android:layout_margin="6dp"
57 + android:contentDescription="@string/button_cancel_download"
58 + android:scaleType="fitCenter"
59 + android:visibility="visible" />
60 +
61 + <LinearLayout
62 + android:layout_width="0dp"
63 + android:layout_height="wrap_content"
64 + android:layout_weight="1.0"
65 + android:gravity="center_vertical"
66 + android:orientation="vertical" >
67 +
68 + <LinearLayout
69 + android:layout_width="fill_parent"
70 + android:layout_height="wrap_content"
71 + android:orientation="horizontal" >
72 +
73 + <TextView
74 + android:id="@+id/download_title"
75 + android:layout_width="0dp"
76 + android:layout_height="wrap_content"
77 + android:layout_weight="1.0"
78 + android:maxLines="1"
79 + android:singleLine="true"
80 + android:textColor="#777"
81 + android:textSize="18sp"
82 + android:textStyle="bold" />
83 +
84 + <TextView
85 + android:id="@+id/size_text"
86 + android:layout_width="wrap_content"
87 + android:layout_height="wrap_content"
88 + android:maxLines="1"
89 + android:textColor="#999"
90 + android:textSize="14sp"
91 + android:visibility="gone" />
92 + </LinearLayout>
93 +
94 + <LinearLayout
95 + android:layout_width="fill_parent"
96 + android:layout_height="wrap_content"
97 + android:layout_marginBottom="5dp"
98 + android:orientation="horizontal" >
99 +
100 + <ProgressBar
101 + android:id="@+id/download_progress"
102 + style="?android:attr/progressBarStyleHorizontal"
103 + android:layout_width="fill_parent"
104 + android:layout_height="10dp"
105 + android:visibility="gone" />
106 + </LinearLayout>
107 +
108 + <LinearLayout
109 + android:layout_width="fill_parent"
110 + android:layout_height="wrap_content"
111 + android:orientation="horizontal" >
112 +
113 + <TextView
114 + android:id="@+id/tv_progress"
115 + android:layout_width="wrap_content"
116 + android:layout_height="wrap_content" />
117 +
118 + <TextView
119 + android:id="@+id/status_text"
120 + android:layout_width="wrap_content"
121 + android:layout_height="wrap_content"
122 + android:layout_marginLeft="8dp"
123 + android:text="@string/common_loading_now"
124 + android:textAppearance="?android:attr/textAppearanceSmall"
125 + android:textSize="10dp" />
126 +
127 + <TextView
128 + android:id="@+id/last_modified_date"
129 + android:layout_width="wrap_content"
130 + android:layout_height="wrap_content"
131 + android:maxLines="1"
132 + android:textAppearance="?android:attr/textAppearanceSmall"
133 + android:textSize="9dp"
134 + android:visibility="gone" />
135 + </LinearLayout>
136 + </LinearLayout>
137 +
138 + <LinearLayout
139 + android:layout_width="wrap_content"
140 + android:layout_height="wrap_content"
141 + android:layout_margin="3dp"
142 + android:visibility="visible" >
143 +
144 + <Button
145 + android:id="@+id/btn_download_pause"
146 + android:layout_width="55dp"
147 + android:layout_height="30dp"
148 + android:background="@drawable/btn_download"
149 + android:text="@string/common_pause"
150 + android:textColor="#fff" />
151 + </LinearLayout>
152 +
153 + <LinearLayout
154 + android:layout_width="wrap_content"
155 + android:layout_height="wrap_content"
156 + android:layout_margin="3dp"
157 + android:visibility="visible" >
158 +
159 + <Button
160 + android:id="@+id/btn_download_cancel"
161 + android:layout_width="55dp"
162 + android:layout_height="30dp"
163 + android:background="@drawable/btn_download"
164 + android:text="@string/common_cancel"
165 + android:textColor="#fff" />
166 + </LinearLayout>
167 + </LinearLayout>
168 +
169 +</com.library.providers.downloads.ui.DownloadItem>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!-- Copyright (C) 2010 The Android Open Source Project
3 +
4 + Licensed under the Apache License, Version 2.0 (the "License");
5 + you may not use this file except in compliance with the License.
6 + You may obtain a copy of the License at
7 +
8 + http://www.apache.org/licenses/LICENSE-2.0
9 +
10 + Unless required by applicable law or agreed to in writing, software
11 + distributed under the License is distributed on an "AS IS" BASIS,
12 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 + See the License for the specific language governing permissions and
14 + limitations under the License.
15 +-->
16 +
17 +<TextView xmlns:android="http://schemas.android.com/apk/res/android"
18 + android:layout_width="fill_parent"
19 + android:layout_height="wrap_content"
20 + android:minHeight="?android:attr/listPreferredItemHeight"
21 + android:textAppearance="?android:attr/textAppearanceMedium"
22 + android:paddingLeft="43dip"
23 + android:layout_gravity="center_vertical"
24 + android:gravity="center_vertical"/>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 +/*
4 +** Copyright 2008, The Android Open Source Project
5 +**
6 +** Licensed under the Apache License, Version 2.0 (the "License");
7 +** you may not use this file except in compliance with the License.
8 +** You may obtain a copy of the License at
9 +**
10 +** http://www.apache.org/licenses/LICENSE-2.0
11 +**
12 +** Unless required by applicable law or agreed to in writing, software
13 +** distributed under the License is distributed on an "AS IS" BASIS,
14 +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 +** See the License for the specific language governing permissions and
16 +** limitations under the License.
17 +*/
18 +-->
19 +
20 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
21 + android:layout_width="fill_parent"
22 + android:layout_height="wrap_content"
23 + android:orientation="horizontal" >
24 +
25 + <LinearLayout
26 + android:layout_width="40dp"
27 + android:layout_height="wrap_content"
28 + android:orientation="vertical"
29 + android:paddingTop="8dp" >
30 +
31 + <ImageView
32 + android:id="@+id/appIcon"
33 + android:layout_width="wrap_content"
34 + android:layout_height="wrap_content"
35 + android:layout_gravity="center"
36 + android:contentDescription="@string/permlab_downloadCompletedIntent"
37 + android:src="@android:drawable/sym_def_app_icon" />
38 +
39 + <TextView
40 + android:id="@+id/progress_text"
41 + android:layout_width="wrap_content"
42 + android:layout_height="wrap_content"
43 + android:layout_gravity="center_horizontal"
44 + android:singleLine="true" />
45 + </LinearLayout>
46 +
47 + <RelativeLayout
48 + android:layout_width="fill_parent"
49 + android:layout_height="wrap_content"
50 + android:orientation="vertical" >
51 +
52 + <LinearLayout
53 + android:id="@+id/ll_01"
54 + android:layout_width="fill_parent"
55 + android:layout_height="wrap_content"
56 + android:orientation="horizontal"
57 + android:paddingTop="10dp" >
58 +
59 + <TextView
60 + android:id="@+id/title"
61 + android:layout_width="wrap_content"
62 + android:layout_height="wrap_content"
63 + android:paddingLeft="2dp"
64 + android:singleLine="true"
65 + android:textSize="12sp" />
66 +
67 + <TextView
68 + android:id="@+id/description"
69 + android:layout_width="wrap_content"
70 + android:layout_height="wrap_content"
71 + android:paddingLeft="5dp"
72 + android:singleLine="true"
73 + android:textSize="12sp" />
74 + </LinearLayout>
75 + <!-- Only one of progress_bar and paused_text will be visible. -->
76 +
77 + <LinearLayout
78 + android:layout_width="fill_parent"
79 + android:layout_height="wrap_content"
80 + android:layout_below="@id/ll_01"
81 + android:orientation="vertical" >
82 +
83 + <ProgressBar
84 + android:id="@+id/progress_bar"
85 + style="?android:attr/progressBarStyleHorizontal"
86 + android:layout_width="fill_parent"
87 + android:layout_height="wrap_content"
88 + android:paddingBottom="8dp"
89 + android:paddingRight="2dp" />
90 +
91 + <TextView
92 + android:id="@+id/paused_text"
93 + android:layout_width="fill_parent"
94 + android:layout_height="wrap_content"
95 + android:paddingBottom="8dp"
96 + android:paddingLeft="5dp"
97 + android:singleLine="true"
98 + android:textSize="12sp" />
99 + </LinearLayout>
100 + </RelativeLayout>
101 +
102 +</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:tools="http://schemas.android.com/tools"
3 + android:layout_width="match_parent"
4 + android:layout_height="48dp"
5 + android:background="@drawable/p7725_sdk_bar"
6 + android:baselineAligned="false" >
7 +
8 + <LinearLayout
9 + android:layout_width="wrap_content"
10 + android:layout_height="match_parent"
11 + android:layout_alignParentLeft="true"
12 + android:layout_centerVertical="true"
13 + android:gravity="center"
14 + android:orientation="horizontal" >
15 +
16 + <Button
17 + android:id="@+id/btn_title_back"
18 + android:layout_width="50dp"
19 + android:layout_height="wrap_content"
20 + android:background="@drawable/btn_title_back" />
21 +
22 + <TextView
23 + android:id="@+id/text"
24 + android:layout_width="wrap_content"
25 + android:layout_height="wrap_content"
26 + android:gravity="center"
27 + android:textColor="#fff"
28 + android:visibility="gone"
29 + android:textSize="12sp" />
30 + </LinearLayout>
31 +
32 + <LinearLayout
33 + android:layout_width="wrap_content"
34 + android:layout_height="match_parent"
35 + android:layout_centerHorizontal="true"
36 + android:layout_centerVertical="true"
37 + android:layout_margin="2dp"
38 + android:gravity="center"
39 + android:orientation="horizontal" >
40 +
41 + <TextView
42 + android:id="@+id/tv_title_text"
43 + android:layout_width="wrap_content"
44 + android:layout_height="wrap_content"
45 + android:gravity="center"
46 + android:textColor="@color/p7725_sdk_white"
47 + android:textSize="20sp" />
48 + </LinearLayout>
49 +
50 + <LinearLayout
51 + android:layout_width="wrap_content"
52 + android:layout_height="match_parent"
53 + android:layout_alignParentRight="true"
54 + android:layout_centerVertical="true"
55 + android:layout_marginRight="8dp"
56 + android:orientation="horizontal"
57 + android:gravity="center" >
58 +
59 +
60 + <Button
61 + android:id="@+id/btn_title_people"
62 + android:layout_width="wrap_content"
63 + android:layout_height="35dp"
64 + android:background="@drawable/btn_border_white_to_orange"
65 + android:paddingLeft="10dp"
66 + android:paddingRight="10dp"
67 + android:paddingTop="4dp"
68 + android:paddingBottom="4dp"
69 + android:textColor="@drawable/font_black_white"
70 + android:textSize="14sp"
71 + android:layout_marginRight="5dp"
72 + android:visibility="gone" />
73 + <Button
74 + android:id="@+id/btn_title_share"
75 + android:layout_width="wrap_content"
76 + android:layout_height="wrap_content"
77 + android:background="@drawable/p7725_recreation_life_share"
78 + android:textColor="@drawable/font_black_white"
79 + android:gravity="center"
80 + android:visibility="gone" />
81 + </LinearLayout>
82 +
83 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 + android:layout_width="match_parent"
4 + android:layout_height="match_parent"
5 + android:orientation="vertical" >
6 +
7 + <RelativeLayout
8 + android:id="@+id/fullscreen_advs_view"
9 + android:layout_width="match_parent"
10 + android:layout_height="match_parent"
11 + android:orientation="vertical" >
12 +
13 + <android.support.v4.view.ViewPager
14 + android:id="@+id/adv_pager"
15 + android:layout_width="wrap_content"
16 + android:layout_height="wrap_content" >
17 + </android.support.v4.view.ViewPager>
18 +
19 + <LinearLayout
20 + android:id="@+id/viewGroup"
21 + android:layout_width="match_parent"
22 + android:layout_height="match_parent"
23 + android:layout_below="@id/adv_pager"
24 + android:layout_marginTop="-60dp"
25 + android:gravity="center_horizontal"
26 + android:orientation="horizontal" >
27 + </LinearLayout>
28 +
29 + <RelativeLayout
30 + android:id="@+id/layout_chck_backgroud"
31 + android:layout_width="180dp"
32 + android:layout_height="30dp"
33 + android:layout_below="@id/adv_pager"
34 + android:layout_centerHorizontal="true"
35 + android:layout_marginTop="-30dp"
36 + android:background="#D0000000" >
37 +
38 + <CheckBox
39 + android:id="@+id/chck_not_show_today"
40 + android:layout_width="wrap_content"
41 + android:layout_height="wrap_content"
42 + android:checked="false"
43 + android:text="@string/p7725_sdk_not_show_today"
44 + android:textColor="#FFFFFF" />
45 + </RelativeLayout>
46 + </RelativeLayout>
47 +
48 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<RelativeLayout
2 + xmlns:android="http://schemas.android.com/apk/res/android"
3 + xmlns:tools="http://schemas.android.com/tools"
4 + android:layout_width="fill_parent"
5 + android:layout_height="fill_parent"
6 + android:gravity="center" >
7 +
8 + <RelativeLayout
9 + android:id="@+id/rl_root"
10 + android:layout_width="fill_parent"
11 + android:layout_height="fill_parent"
12 + android:background="#0000"
13 + android:gravity="center" >
14 +
15 + <RelativeLayout
16 + android:id="@+id/rl_exit"
17 + android:layout_width="wrap_content"
18 + android:layout_height="wrap_content"
19 + android:layout_centerHorizontal="true"
20 + android:background="@drawable/p7725_exit_bg1"
21 + android:orientation="vertical" >
22 +
23 + <Button
24 + android:id="@+id/btn_cancel"
25 + android:layout_width="wrap_content"
26 + android:layout_height="wrap_content"
27 + android:background="@drawable/com_7725_close" />
28 +
29 + <ImageView
30 + android:id="@+id/iv_title"
31 + android:layout_width="wrap_content"
32 + android:layout_height="wrap_content"
33 + android:background="@drawable/com_7725_tips"
34 + android:visibility="gone" />
35 +
36 + <ImageView
37 + android:id="@+id/iv_content"
38 + android:layout_width="wrap_content"
39 + android:layout_height="wrap_content"
40 + android:scaleType="fitXY" />
41 + </RelativeLayout>
42 +
43 + <Button
44 + android:id="@+id/btn_exit"
45 + style="@style/Button"
46 + android:layout_width="wrap_content"
47 + android:layout_height="wrap_content"
48 + android:layout_below="@id/rl_exit"
49 + android:layout_centerHorizontal="true"
50 + android:background="@drawable/p7725_exit_ok_selector" />
51 + </RelativeLayout>
52 +
53 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:tools="http://schemas.android.com/tools"
3 + android:layout_width="match_parent"
4 + android:layout_height="match_parent"
5 + android:gravity="center" >
6 +
7 + <include
8 + android:id="@+id/ll_login"
9 + layout="@layout/p7725_sdk_layout_login" />
10 +
11 + <include
12 + android:id="@+id/ll_register"
13 + layout="@layout/p7725_sdk_layout_register"
14 + android:visibility="gone" />
15 +
16 + <include
17 + android:id="@+id/ll_findpass"
18 + layout="@layout/p7725_sdk_layout_findpass"
19 + android:visibility="gone" />
20 +
21 + <include
22 + android:id="@+id/ll_changepass"
23 + layout="@layout/p7725_sdk_layout_changepass"
24 + android:visibility="gone" />
25 +
26 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:tools="http://schemas.android.com/tools"
3 + android:layout_width="match_parent"
4 + android:layout_height="match_parent"
5 + android:orientation="vertical" >
6 +
7 + <Button
8 + android:id="@+id/btn_to_fblogin"
9 + android:layout_width="wrap_content"
10 + android:layout_height="wrap_content"
11 + android:layout_alignParentBottom="true"
12 + android:layout_alignParentLeft="true"
13 + android:background="@drawable/p7725_sdk_btn_facebook_login" />
14 +
15 + <Button
16 + android:id="@+id/btn_to_login"
17 + android:layout_width="wrap_content"
18 + android:layout_height="wrap_content"
19 + android:layout_alignParentBottom="true"
20 + android:layout_alignParentRight="true"
21 + android:background="@drawable/p7725_sdk_btn_7725_login" />
22 +
23 + <Button
24 + android:id="@+id/btn_to_quick_login"
25 + android:layout_width="wrap_content"
26 + android:layout_height="wrap_content"
27 + android:layout_alignParentBottom="true"
28 + android:layout_centerHorizontal="true"
29 + android:background="@drawable/p7725_sdk_btn_7725_quick_login"
30 + />
31 +
32 + <RelativeLayout
33 + android:id="@+id/layout_clause"
34 + android:layout_width="wrap_content"
35 + android:layout_height="wrap_content"
36 + android:layout_alignParentBottom="true"
37 + android:layout_centerInParent="true"
38 + android:layout_gravity="center" >
39 +
40 + <CheckBox
41 + android:id="@+id/chck_clause"
42 + android:layout_width="wrap_content"
43 + android:layout_height="wrap_content"
44 + style="@style/p7725_sdk_checkbox"
45 + android:layout_alignParentBottom="true"
46 + android:checked="true"
47 + android:text="@string/p7725_sdk_chck_clause"
48 + android:textColor="@color/p7725_sdk_clause"/>
49 +
50 + <Button
51 + android:id="@+id/btn_agree_privacy"
52 + android:layout_width="wrap_content"
53 + android:layout_height="wrap_content"
54 + android:layout_alignBaseline="@+id/chck_clause"
55 + android:layout_alignBottom="@+id/chck_clause"
56 + android:layout_toRightOf="@+id/chck_clause"
57 + android:background="@color/p7725_sdk_transparent"
58 + android:text="@string/p7725_sdk_txt_agree_privacy"
59 + android:textAppearance="?android:attr/textAppearanceSmall"
60 + android:textColor="@color/p7725_sdk_clause"
61 + />
62 +
63 + <TextView
64 + android:id="@+id/txt_agree_and"
65 + android:layout_width="wrap_content"
66 + android:layout_height="wrap_content"
67 + android:layout_alignBaseline="@+id/btn_agree_privacy"
68 + android:layout_alignBottom="@+id/btn_agree_privacy"
69 + android:layout_toRightOf="@+id/btn_agree_privacy"
70 + android:text="@string/p7725_sdk_txt_agree_and"
71 + android:textAppearance="?android:attr/textAppearanceSmall"
72 + android:textColor="@color/p7725_sdk_clause" />
73 +
74 + <Button
75 + android:id="@+id/btn_agree_clause"
76 + android:layout_width="wrap_content"
77 + android:layout_height="wrap_content"
78 + android:layout_alignBaseline="@+id/txt_agree_and"
79 + android:layout_alignBottom="@+id/txt_agree_and"
80 + android:layout_toRightOf="@+id/txt_agree_and"
81 + android:background="@color/p7725_sdk_transparent"
82 + android:text="@string/p7725_sdk_txt_agree_clause"
83 + android:textAppearance="?android:attr/textAppearanceSmall"
84 + android:textColor="@color/p7725_sdk_clause"
85 + />
86 +
87 + </RelativeLayout>
88 +
89 +
90 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:tools="http://schemas.android.com/tools"
3 + android:id="@+id/rl_userlist_root"
4 + android:layout_width="fill_parent"
5 + android:layout_height="fill_parent"
6 + android:layout_marginLeft="20dp"
7 + android:layout_marginRight="20dp"
8 + android:background="#0000" >
9 +
10 + <ListView
11 + android:id="@+id/lv_userlist"
12 + android:layout_width="230dp"
13 + android:layout_height="250dp"
14 + android:layout_centerHorizontal="true"
15 + android:layout_centerVertical="true"
16 + android:layout_marginLeft="20dp"
17 + android:background="#fff"
18 + android:cacheColorHint="#0000" />
19 +
20 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:tools="http://schemas.android.com/tools"
3 + android:id="@+id/rl_userlist_root"
4 + android:layout_width="fill_parent"
5 + android:layout_height="fill_parent"
6 + android:layout_marginLeft="50dp"
7 + android:layout_marginRight="50dp"
8 + android:background="#0000"
9 + android:gravity="center" >
10 +
11 + <ListView
12 + android:id="@+id/lv_userlist"
13 + android:layout_width="190dp"
14 + android:layout_height="250dp"
15 + android:background="#fff"
16 + android:cacheColorHint="#0000" />
17 +
18 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 + android:layout_width="match_parent"
4 + android:layout_height="match_parent"
5 + android:background="#000000"
6 + android:orientation="vertical" >
7 +
8 +
9 +
10 +</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 + android:id="@+id/rl_diaog_root"
4 + android:layout_width="wrap_content"
5 + android:layout_height="wrap_content"
6 + android:background="@drawable/p7725_sdk_box_bg" >
7 +
8 + <TextView
9 + android:id="@+id/tv_mydialog_message"
10 + style="@style/Title"
11 + android:layout_width="fill_parent"
12 + android:layout_height="wrap_content"
13 + android:layout_margin="10dp"
14 + android:gravity="left|center_vertical" />
15 +
16 + <Button
17 + android:id="@+id/btn_mydialog_ok"
18 + style="@style/Button"
19 + android:layout_width="wrap_content"
20 + android:layout_height="wrap_content" />
21 +
22 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:tools="http://schemas.android.com/tools"
3 + android:id="@+id/dialog_root"
4 + android:layout_width="fill_parent"
5 + android:layout_height="wrap_content"
6 + android:background="@drawable/p7725_sdk_box_bg" >
7 +
8 + <!-- 标题 -->
9 + <!--
10 + <ImageView
11 + android:id="@+id/iv_dialog_title"
12 + android:layout_width="wrap_content"
13 + android:layout_height="wrap_content"
14 + android:background="@drawable/p7725_sdk_botton_loginlogo"
15 + android:contentDescription="@string/com_7725_app_name" />
16 + -->
17 +
18 +
19 +<ScrollView
20 + android:id="@+id/sv_dialog_content"
21 + android:layout_width="wrap_content"
22 + android:layout_height="wrap_content">
23 + <TextView
24 + android:id="@+id/tv_dialog_content"
25 + android:layout_width="wrap_content"
26 + android:layout_height="wrap_content"
27 + android:gravity="left"
28 + android:textColor="#fff"
29 + android:textSize="38.74px"
30 + android:textStyle="bold" />
31 +
32 +</ScrollView>
33 + <Button
34 + android:id="@+id/btn_dialog_to_binding"
35 + style="@style/Button"
36 + android:layout_width="wrap_content"
37 + android:layout_height="wrap_content"
38 + android:text="@string/p7725_sdk_to_binding" />
39 +
40 + <Button
41 + android:id="@+id/btn_dialog_cancle"
42 + style="@style/Button"
43 + android:layout_width="wrap_content"
44 + android:layout_height="wrap_content"
45 + android:text="@string/p7725_sdk_text_cancel" />
46 +
47 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
3 + android:id="@android:id/tabhost"
4 + android:background="@android:color/black"
5 + android:layout_width="fill_parent"
6 + android:layout_height="fill_parent" >
7 +
8 + <LinearLayout
9 + android:layout_width="fill_parent"
10 + android:layout_height="fill_parent"
11 + android:orientation="vertical" >
12 +
13 + <FrameLayout
14 + android:id="@android:id/tabcontent"
15 + android:layout_width="0dp"
16 + android:layout_height="0dp"
17 + android:layout_weight="0" />
18 +
19 + <FrameLayout
20 + android:id="@+id/realtabcontent"
21 + android:layout_width="fill_parent"
22 + android:layout_height="0dp"
23 + android:layout_weight="1" />
24 +
25 + <TabWidget
26 + android:id="@android:id/tabs"
27 + android:layout_width="fill_parent"
28 + android:layout_height="wrap_content"
29 + android:background="@drawable/p7725_recreation_footerbg"
30 + android:orientation="horizontal"
31 + android:padding="1dp" />
32 + </LinearLayout>
33 +
34 +</TabHost>
...\ No newline at end of file ...\ No newline at end of file
1 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + android:id="@+id/tabsLayout"
3 + android:layout_width="fill_parent"
4 + android:layout_height="fill_parent"
5 + android:gravity="center"
6 + android:orientation="vertical" >
7 +
8 + <ImageView
9 + android:id="@+id/tab_icon"
10 + android:contentDescription="@string/com_7725_ok"
11 + android:layout_width="wrap_content"
12 + android:layout_height="wrap_content" />
13 +
14 +</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 + android:layout_width="match_parent"
4 + android:layout_height="match_parent"
5 + android:orientation="vertical" >
6 +
7 + <com.platform7725.gamesdk.view.TitleView
8 + android:id="@+id/game_center_title"
9 + android:layout_width="fill_parent"
10 + android:layout_height="wrap_content"
11 + android:orientation="vertical" />
12 +
13 + <com.platform7725.gamesdk.view.ScrollViewExtend
14 + android:layout_width="match_parent"
15 + android:layout_height="match_parent"
16 + android:background="@color/p7725_sdk_background" >
17 +
18 + <LinearLayout
19 + android:layout_width="match_parent"
20 + android:layout_height="wrap_content"
21 + android:orientation="vertical" >
22 +
23 + <LinearLayout
24 + android:layout_width="match_parent"
25 + android:layout_height="120dp"
26 + android:orientation="horizontal"
27 + android:padding="@dimen/p7725_distance" >
28 +
29 + <android.support.v4.view.ViewPager
30 + android:id="@+id/game_center_ad"
31 + android:layout_width="fill_parent"
32 + android:layout_height="wrap_content" />
33 + </LinearLayout>
34 +
35 + <com.platform7725.gamesdk.view.ImproveListView
36 + android:id="@+id/game_center_list"
37 + style="@style/style_listview"
38 + android:layout_marginLeft="@dimen/p7725_distance"
39 + android:layout_marginRight="@dimen/p7725_distance"
40 + android:dividerHeight="@dimen/p7725_distance"
41 + android:paddingBottom="@dimen/p7725_distance"
42 + android:visibility="gone" />
43 +
44 + <com.platform7725.gamesdk.view.ImproveGridView
45 + android:id="@+id/game_center_grid"
46 + android:layout_width="fill_parent"
47 + android:layout_height="wrap_content"
48 + android:gravity="center"
49 + android:horizontalSpacing="@dimen/p7725_distance"
50 + android:numColumns="2"
51 + android:paddingBottom="@dimen/p7725_distance"
52 + android:paddingLeft="@dimen/p7725_distance"
53 + android:paddingRight="@dimen/p7725_distance"
54 + android:verticalSpacing="@dimen/p7725_distance"
55 + android:visibility="gone" />
56 +
57 + <include layout="@layout/p7725_sdk_item_search_more" />
58 + </LinearLayout>
59 + </com.platform7725.gamesdk.view.ScrollViewExtend>
60 +
61 +</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 + android:layout_width="match_parent"
4 + android:layout_height="match_parent"
5 + android:orientation="vertical"
6 + android:background="@android:color/black"
7 + >
8 +
9 + <com.platform7725.gamesdk.view.TitleView
10 + android:id="@+id/user_center_title"
11 + android:layout_width="fill_parent"
12 + android:layout_height="wrap_content"
13 + android:orientation="vertical" />
14 +
15 + <ScrollView
16 + android:layout_width="match_parent"
17 + android:layout_height="match_parent"
18 + android:padding="@dimen/p7725_distance"
19 + android:background="@color/p7725_sdk_background" >
20 +
21 + <LinearLayout
22 + android:layout_width="match_parent"
23 + android:layout_height="wrap_content"
24 + android:orientation="vertical"
25 + >
26 +
27 + <LinearLayout
28 + android:layout_width="match_parent"
29 + android:layout_height="wrap_content"
30 + android:layout_marginBottom="@dimen/p7725_distance"
31 + android:layout_marginTop="@dimen/p7725_distance"
32 + android:orientation="horizontal" >
33 +
34 + <TextView
35 + android:id="@+id/user_center_username"
36 + android:layout_width="0dp"
37 + android:layout_height="wrap_content"
38 + android:layout_weight="1"
39 + android:singleLine="true"
40 + android:textSize="@dimen/p7725_font_name_size"
41 + android:textColor="@color/p7725_sdk_black_light" />
42 +
43 + <Button
44 + android:id="@+id/user_center_invite_by_fb"
45 + android:layout_width="100dp"
46 + android:layout_height="30dp"
47 + android:background="@drawable/p7725_sdk_btn_orange_red"
48 + android:text="@string/p7725_invite_by_fb"
49 + android:textSize="@dimen/p7725_font_name_size"
50 + android:textColor="@android:color/white" />
51 + </LinearLayout>
52 +
53 + <Button
54 + android:id="@+id/user_center_change_password"
55 + style="@style/p7725_sdk_user_center_button"
56 + android:drawableLeft="@drawable/p7725_sdk_change_password_off"
57 + android:text="@string/p7725_change_password" />
58 +
59 +
60 + <Button
61 + android:layout_marginTop="-5dp"
62 + android:id="@+id/user_center_binding_username"
63 + style="@style/p7725_sdk_user_center_button"
64 + android:drawableLeft="@drawable/p7725_sdk_binding_off"
65 + android:text="@string/p7725_binding_username" />
66 +
67 + <Button
68 + android:layout_marginTop="-5dp"
69 + android:id="@+id/user_center_download_manager"
70 + style="@style/p7725_sdk_user_center_button"
71 + android:drawableLeft="@drawable/p7725_sdk_download_off"
72 + android:text="@string/p7725_download_manager" />
73 +
74 + <Button
75 + android:id="@+id/user_center_deposits_record"
76 + style="@style/p7725_sdk_user_center_button"
77 + android:layout_marginTop="@dimen/p7725_distance"
78 + android:drawableLeft="@drawable/p7725_sdk_stored_value_off"
79 + android:text="@string/p7725_deposits_record" />
80 +
81 +</LinearLayout>
82 +</ScrollView>
83 +</LinearLayout>
1 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:tools="http://schemas.android.com/tools"
3 + android:layout_width="fill_parent"
4 + android:layout_height="wrap_content"
5 + android:background="@android:color/white"
6 + android:descendantFocusability="blocksDescendants"
7 + android:orientation="horizontal"
8 + android:padding="@dimen/p7725_distance" >
9 +
10 + <LinearLayout
11 + android:layout_width="wrap_content"
12 + android:layout_height="wrap_content"
13 + android:paddingRight="5dp"
14 + android:orientation="vertical" >
15 +
16 + <TextView
17 + android:id="@+id/deposit_record_game"
18 + android:layout_width="wrap_content"
19 + android:layout_height="wrap_content"
20 + android:gravity="center_vertical"
21 + android:singleLine="true"
22 + android:textColor="@color/p7725_sdk_orange_light"
23 + android:textSize="@dimen/p7725_font_name_size" />
24 +
25 + <TextView
26 + android:id="@+id/deposit_record_way"
27 + android:layout_width="wrap_content"
28 + android:layout_height="wrap_content"
29 + android:singleLine="true"
30 + android:layout_marginTop="@dimen/p7725_distance_half"
31 + android:textSize="@dimen/p7725_font_detail_size"
32 + android:textColor="@color/p7725_sdk_gray_deep"
33 + />
34 + </LinearLayout>
35 +
36 + <TextView
37 + android:id="@+id/deposit_record_gold"
38 + android:layout_width="wrap_content"
39 + android:layout_height="wrap_content"
40 + android:singleLine="true"
41 + android:textColor="@color/p7725_sdk_gray_deep"
42 + android:textSize="@dimen/p7725_font_name_size"
43 + />
44 +
45 +
46 +
47 + <TextView
48 + android:id="@+id/deposit_record_money"
49 + android:layout_width="0dp"
50 + android:layout_height="wrap_content"
51 + android:layout_weight="1"
52 + android:singleLine="true"
53 + android:gravity="center_horizontal"
54 + android:paddingLeft="5dp"
55 + android:textSize="@dimen/p7725_font_name_size"
56 + android:textColor="@color/p7725_sdk_orange_light"
57 + />
58 +
59 + <TextView
60 + android:id="@+id/deposit_record_time"
61 + android:layout_width="0dp"
62 + android:layout_height="wrap_content"
63 + android:layout_weight="1"
64 + android:gravity="right"
65 + android:textColor="@color/p7725_sdk_gray_deep"
66 + android:textSize="@dimen/p7725_font_detail_size"/>
67 +</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:tools="http://schemas.android.com/tools"
3 + android:layout_width="fill_parent"
4 + android:layout_height="wrap_content"
5 + android:background="@android:color/white"
6 + android:descendantFocusability="blocksDescendants"
7 + android:gravity="center_vertical"
8 + android:orientation="horizontal"
9 + android:padding="@dimen/p7725_distance" >
10 +
11 + <ImageView
12 + android:id="@+id/game_list_icon"
13 + android:layout_width="@dimen/p7725_icon_middle_size"
14 + android:layout_height="@dimen/p7725_icon_middle_size"
15 + android:layout_marginRight="@dimen/p7725_distance"
16 + android:background="@drawable/p7725_icon_default" />
17 +
18 + <!-- <LinearLayout
19 + android:layout_width="0dp"
20 + android:layout_height="wrap_content"
21 + android:layout_marginLeft="@dimen/p7725_distance"
22 + android:layout_weight="1"
23 + android:baselineAligned="false"
24 + android:orientation="vertical" > -->
25 +
26 + <TextView
27 + android:id="@+id/game_list_name"
28 + android:layout_width="fill_parent"
29 + android:layout_height="wrap_content"
30 + android:singleLine="true"
31 + android:layout_toRightOf="@+id/game_list_icon"
32 + android:textColor="@color/p7725_sdk_black_light"
33 + android:textSize="@dimen/p7725_font_name_size" />
34 +
35 + <RatingBar
36 + android:id="@+id/game_list_good"
37 + style="@style/game_detail_ratingBar"
38 + android:layout_width="wrap_content"
39 + android:layout_height="wrap_content"
40 + android:isIndicator="true"
41 + android:layout_toRightOf="@+id/game_list_icon"
42 + android:layout_below="@+id/game_list_name"
43 + android:numStars="5"
44 + android:rating="5" />
45 +
46 + <TextView
47 + android:id="@+id/game_list_type"
48 + android:layout_width="fill_parent"
49 + android:layout_height="wrap_content"
50 + android:singleLine="true"
51 + android:layout_toRightOf="@+id/game_list_icon"
52 + android:layout_below="@+id/game_list_good"
53 + android:textColor="@color/p7725_sdk_gray_deep"
54 + android:textSize="@dimen/p7725_font_detail_size" />
55 +
56 + <TextView
57 + android:id="@+id/game_list_size"
58 + android:layout_width="fill_parent"
59 + android:layout_height="wrap_content"
60 + android:singleLine="true"
61 + android:layout_toRightOf="@+id/game_list_icon"
62 + android:layout_below="@+id/game_list_type"
63 + android:textColor="@color/p7725_sdk_gray_deep"
64 + android:textSize="@dimen/p7725_font_detail_size" />
65 + <!-- </LinearLayout> -->
66 +
67 + <Button
68 + android:id="@+id/game_list_download"
69 + android:layout_width="60dp"
70 + android:layout_height="30dp"
71 + android:background="@drawable/p7725_sdk_btn_orange_red"
72 + android:layout_alignParentRight="true"
73 + android:layout_below="@+id/game_list_name"
74 + android:text="@string/notification_download"
75 + android:textColor="@android:color/white"
76 + android:textSize="@dimen/p7725_font_name_size"
77 + android:textStyle="bold" />
78 +
79 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 + android:id="@+id/root"
4 + android:layout_width="fill_parent"
5 + android:layout_height="wrap_content"
6 + android:background="@android:color/transparent"
7 + android:gravity="center"
8 + android:orientation="vertical"
9 + android:visibility="gone"
10 + android:padding="@dimen/p7725_distance_half" >
11 +
12 + <Button
13 + android:id="@+id/more_game"
14 + android:layout_width="130dp"
15 + android:layout_height="wrap_content"
16 + android:layout_marginBottom="3dp"
17 + android:background="@drawable/p7725_recreation_gamemore"
18 + android:gravity="center"
19 + android:text="@string/p7725_sdk_more_game"
20 + android:textColor="#000"
21 + android:textSize="@dimen/p7725_font_name_size" />
22 +
23 +</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<TextView xmlns:android="http://schemas.android.com/apk/res/android"
2 + android:id="@android:id/text1"
3 + android:layout_width="match_parent"
4 + android:layout_height="40dp"
5 + android:gravity="center_vertical"
6 + android:textColor="#000"
7 + android:textSize="16sp"
8 + android:paddingLeft="3dp"
9 +/>
1 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:tools="http://schemas.android.com/tools"
3 + android:id="@+id/ll_changepass"
4 + android:layout_width="match_parent"
5 + android:layout_height="match_parent"
6 + android:background="@drawable/p7725_sdk_box_bg"
7 + android:orientation="vertical" >
8 +
9 + <TextView
10 + android:id="@+id/tv_changepass_title"
11 + style="@style/Title"
12 + android:layout_width="wrap_content"
13 + android:layout_height="wrap_content"
14 + android:text="@string/p7725_sdk_tv_changepass2" />
15 +
16 + <EditText
17 + android:id="@+id/et_changepass_input_username"
18 + style="@style/Input"
19 + android:layout_width="wrap_content"
20 + android:layout_height="wrap_content"
21 + android:hint="@string/p7725_sdk_hint_changepass_input_username"
22 + android:inputType="text" />
23 +
24 + <EditText
25 + android:id="@+id/et_changepass_input_pass"
26 + style="@style/Input"
27 + android:layout_width="wrap_content"
28 + android:layout_height="wrap_content"
29 + android:hint="@string/p7725_sdk_hint_changepass_input_pass"
30 + android:inputType="textPassword" />
31 +
32 + <EditText
33 + android:id="@+id/et_changepass_input_passnew"
34 + style="@style/Input"
35 + android:layout_width="wrap_content"
36 + android:layout_height="wrap_content"
37 + android:hint="@string/p7725_sdk_hint_changepass_input_passnew"
38 + android:inputType="textPassword" />
39 +
40 + <Button
41 + android:id="@+id/btn_changepass_ok"
42 + style="@style/Button"
43 + android:layout_width="wrap_content"
44 + android:layout_height="wrap_content"
45 + android:text="@string/p7725_sdk_btn_ok" />
46 +
47 + <Button
48 + android:id="@+id/btn_changepass_back"
49 + style="@style/Button"
50 + android:layout_width="wrap_content"
51 + android:layout_height="wrap_content"
52 + android:text="@string/p7725_sdk_btn_back" />
53 +
54 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:tools="http://schemas.android.com/tools"
3 + android:layout_width="wrap_content"
4 + android:layout_height="wrap_content"
5 + android:background="@drawable/p7725_sdk_box_bg" >
6 +
7 + <TextView
8 + android:id="@+id/tv_findpass_title"
9 + style="@style/Title"
10 + android:layout_width="wrap_content"
11 + android:layout_height="wrap_content"
12 + android:text="@string/p7725_sdk_tv_findpass2" />
13 +
14 + <EditText
15 + android:id="@+id/et_findpass_input_username"
16 + style="@style/Input"
17 + android:layout_width="wrap_content"
18 + android:layout_height="wrap_content"
19 + android:hint="@string/p7725_sdk_hint_findpass_input_username"
20 + android:inputType="text" />
21 +
22 + <EditText
23 + android:id="@+id/et_findpass_input_email"
24 + style="@style/Input"
25 + android:layout_width="wrap_content"
26 + android:layout_height="wrap_content"
27 + android:hint="@string/p7725_sdk_hint_findpass_input_email"
28 + android:inputType="textEmailAddress" />
29 +
30 + <Button
31 + android:id="@+id/btn_findpass_ok"
32 + style="@style/Button"
33 + android:layout_width="wrap_content"
34 + android:layout_height="wrap_content"
35 + android:text="@string/p7725_sdk_btn_ok" />
36 +
37 + <Button
38 + android:id="@+id/btn_findpass_back"
39 + style="@style/Button"
40 + android:layout_width="wrap_content"
41 + android:layout_height="wrap_content"
42 + android:text="@string/p7725_sdk_btn_back" />
43 +
44 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:tools="http://schemas.android.com/tools"
3 + android:id="@+id/ll_root"
4 + android:layout_width="wrap_content"
5 + android:layout_height="wrap_content"
6 + android:background="@drawable/p7725_sdk_tool_bar"
7 + android:gravity="center_vertical"
8 + android:paddingLeft="27dp"
9 + android:paddingTop="5dp"
10 + android:paddingRight="10dp"
11 + android:paddingBottom="6dp"
12 + android:orientation="horizontal" >
13 +
14 + <TextView
15 + android:id="@+id/tv_gamelist_left"
16 + android:layout_width="0dp"
17 + android:layout_height="wrap_content"
18 + android:layout_weight="1.0"
19 + android:background="@drawable/p7725_sdk_gamecenter_selector" />
20 +
21 + <TextView
22 + android:id="@+id/tv_strategy_left"
23 + android:layout_width="0dp"
24 + android:layout_height="wrap_content"
25 + android:layout_weight="1.0"
26 + android:background="@drawable/p7725_sdk_guide_selector" />
27 +
28 + <TextView
29 + android:id="@+id/tv_fans_left"
30 + android:layout_width="0dp"
31 + android:layout_height="wrap_content"
32 + android:layout_weight="1.0"
33 + android:background="@drawable/p7725_sdk_fans_selector" />
34 +
35 + <TextView
36 + android:id="@+id/tv_personal_left"
37 + android:layout_width="0dp"
38 + android:layout_height="wrap_content"
39 + android:layout_weight="1.0"
40 + android:background="@drawable/p7725_sdk_account_selector" />
41 +
42 +</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:tools="http://schemas.android.com/tools"
3 + android:layout_width="wrap_content"
4 + android:layout_height="wrap_content"
5 + android:background="@drawable/p7725_sdk_box_bg" >
6 +
7 + <!-- 标题 -->
8 + <ImageView
9 + android:id="@+id/iv_login_title"
10 + android:layout_width="wrap_content"
11 + android:layout_height="wrap_content"
12 + android:background="@drawable/p7725_sdk_botton_loginlogo"
13 + android:contentDescription="@string/com_7725_app_name" />
14 +
15 + <!-- 帐号,密码 -->
16 +
17 + <TextView
18 + android:id="@+id/tv_login_input_username"
19 + android:layout_width="wrap_content"
20 + android:layout_height="wrap_content"
21 + android:gravity="left"
22 + android:hint="@string/p7725_sdk_hint_login_input_username"
23 + android:text="@string/p7725_sdk_tv_login_input_username"
24 + android:textColor="#fff"
25 + android:textSize="38.74px"
26 + android:textStyle="bold" />
27 +
28 + <EditText
29 + android:id="@+id/et_login_input_username"
30 + style="@style/Input"
31 + android:layout_width="wrap_content"
32 + android:layout_height="wrap_content"
33 + android:hint="@string/p7725_sdk_hint_login_input_username"
34 + android:inputType="text"
35 + android:paddingRight="30dp" />
36 +
37 + <Button
38 + android:id="@+id/btn_login_showList"
39 + android:layout_width="wrap_content"
40 + android:layout_height="wrap_content"
41 + android:background="@drawable/p7725_sdk_btn_login_showlist" />
42 +
43 + <TextView
44 + android:id="@+id/tv_login_input_pass"
45 + android:layout_width="wrap_content"
46 + android:layout_height="wrap_content"
47 + android:gravity="left"
48 + android:hint="@string/p7725_sdk_hint_login_input_username"
49 + android:text="@string/p7725_sdk_tv_login_input_pass"
50 + android:textColor="#fff"
51 + android:textSize="38.74px"
52 + android:textStyle="bold" />
53 +
54 + <EditText
55 + android:id="@+id/et_login_input_pass"
56 + style="@style/Input"
57 + android:layout_width="wrap_content"
58 + android:layout_height="wrap_content"
59 + android:hint="@string/p7725_sdk_hint_login_input_pass"
60 + android:inputType="textPassword" />
61 +
62 + <!-- 客服 ,找回,修改 -->
63 +
64 + <TextView
65 + android:id="@+id/tv_to_customer"
66 + android:layout_width="wrap_content"
67 + android:layout_height="wrap_content"
68 + android:gravity="left"
69 + android:text="@string/p7725_sdk_tv_customer"
70 + android:textColor="#000"
71 + android:textSize="20px" />
72 +
73 + <TextView
74 + android:id="@+id/tv_to_findpass"
75 + android:layout_width="wrap_content"
76 + android:layout_height="wrap_content"
77 + android:gravity="left"
78 + android:text="@string/p7725_sdk_tv_findpass"
79 + android:textColor="#000"
80 + android:textSize="20px" />
81 +
82 + <TextView
83 + android:id="@+id/tv_to_changepass"
84 + android:layout_width="wrap_content"
85 + android:layout_height="wrap_content"
86 + android:gravity="left"
87 + android:text="@string/p7725_sdk_tv_changepass"
88 + android:textColor="#000"
89 + android:textColorLink="#fff"
90 + android:textSize="20px" />
91 + <!-- 登入,注册 -->
92 +
93 + <Button
94 + android:id="@+id/btn_login"
95 + style="@style/Button"
96 + android:layout_width="wrap_content"
97 + android:layout_height="wrap_content"
98 + android:text="@string/p7725_sdk_tv_login" />
99 +
100 + <Button
101 + android:id="@+id/btn_to_register"
102 + style="@style/Button"
103 + android:layout_width="wrap_content"
104 + android:layout_height="wrap_content"
105 + android:text="@string/p7725_sdk_btn_register" />
106 +
107 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:tools="http://schemas.android.com/tools"
3 + android:layout_width="match_parent"
4 + android:layout_height="match_parent"
5 + android:background="@drawable/p7725_sdk_box_bg"
6 + android:orientation="vertical" >
7 +
8 + <TextView
9 + android:id="@+id/tv_register_title"
10 + style="@style/Title"
11 + android:layout_width="wrap_content"
12 + android:layout_height="wrap_content"
13 + android:text="@string/p7725_sdk_tv_register_title" />
14 +
15 + <EditText
16 + android:id="@+id/et_register_input_username"
17 + style="@style/Input"
18 + android:layout_width="wrap_content"
19 + android:layout_height="wrap_content"
20 + android:hint="@string/p7725_sdk_hint_register_input_username"
21 + android:inputType="text" />
22 +
23 + <EditText
24 + android:id="@+id/et_register_input_pass"
25 + style="@style/Input"
26 + android:layout_width="wrap_content"
27 + android:layout_height="wrap_content"
28 + android:hint="@string/p7725_sdk_hint_register_input_pass"
29 + android:inputType="textPassword" />
30 +
31 + <EditText
32 + android:id="@+id/et_register_input_passok"
33 + style="@style/Input"
34 + android:layout_width="wrap_content"
35 + android:layout_height="wrap_content"
36 + android:hint="@string/p7725_sdk_hint_register_input_passok"
37 + android:inputType="textPassword" />
38 +
39 + <EditText
40 + android:id="@+id/et_register_input_email"
41 + style="@style/Input"
42 + android:layout_width="wrap_content"
43 + android:layout_height="wrap_content"
44 + android:hint="@string/p7725_sdk_hint_register_input_email"
45 + android:inputType="textEmailAddress" />
46 +
47 + <Button
48 + android:id="@+id/btn_register"
49 + style="@style/Button"
50 + android:layout_width="wrap_content"
51 + android:layout_height="wrap_content"
52 + android:text="@string/p7725_sdk_btn_register" />
53 +
54 + <Button
55 + android:id="@+id/btn_register_back"
56 + style="@style/Button"
57 + android:layout_width="wrap_content"
58 + android:layout_height="wrap_content"
59 + android:text="@string/p7725_sdk_btn_back" />
60 +
61 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:tools="http://schemas.android.com/tools"
3 + android:layout_width="match_parent"
4 + android:layout_height="@dimen/p7725_title_height"
5 + android:background="@drawable/p7725_sdk_bar"
6 + android:paddingRight="@dimen/p7725_distance"
7 + android:baselineAligned="false" >
8 +
9 + <Button
10 + android:id="@+id/title_previous"
11 + android:layout_width="wrap_content"
12 + android:layout_height="wrap_content"
13 + android:background="@drawable/p7725_sdk_btn_previous"
14 + android:layout_centerVertical="true"
15 + android:visibility="gone"
16 + android:textColor="@android:color/black" />
17 +
18 + <TextView
19 + android:id="@+id/title_text"
20 + android:layout_width="wrap_content"
21 + android:layout_height="wrap_content"
22 + android:layout_centerHorizontal="true"
23 + android:layout_centerVertical="true"
24 + android:gravity="center"
25 + android:textColor="@android:color/white"
26 + android:textSize="@dimen/p7725_font_title_size" />
27 +
28 + <Button
29 + android:id="@+id/title_back"
30 + android:layout_width="wrap_content"
31 + android:layout_height="wrap_content"
32 + android:layout_alignParentRight="true"
33 + android:layout_centerVertical="true"
34 + android:background="@drawable/p7725_sdk_btn_back"
35 + android:textColor="@android:color/black" />
36 +
37 +</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 + android:id="@+id/layout_line_share"
4 + android:layout_width="match_parent"
5 + android:layout_height="match_parent"
6 + android:orientation="vertical" >
7 +
8 +<WebView
9 + android:id="@+id/webview_line"
10 + android:layout_width="match_parent"
11 + android:layout_height="match_parent"
12 + />
13 +
14 +</LinearLayout>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 + android:layout_width="match_parent"
4 + android:layout_height="match_parent"
5 + android:orientation="vertical" >
6 +
7 + <com.platform7725.gamesdk.view.TitleView
8 + android:id="@+id/binding_title"
9 + android:layout_width="match_parent"
10 + android:layout_height="wrap_content" />
11 +
12 + <ScrollView
13 + android:layout_width="match_parent"
14 + android:layout_height="match_parent"
15 + android:background="@color/p7725_sdk_background" >
16 +
17 + <LinearLayout
18 + android:layout_width="match_parent"
19 + android:layout_height="wrap_content"
20 + android:orientation="vertical"
21 + android:padding="@dimen/p7725_distance" >
22 +
23 + <!-- 账号 -->
24 +
25 + <TextView
26 + style="@style/p7725_sdk_change_password_textview"
27 + android:text="@string/p7725_sdk_tv_login_input_username" />
28 +
29 + <EditText
30 + android:id="@+id/binding_username"
31 + style="@style/p7725_sdk_change_password_edittext"
32 + android:hint="@string/p7725_sdk_hint_register_input_username" />
33 +
34 + <!-- 密码 -->
35 +
36 + <TextView
37 + style="@style/p7725_sdk_change_password_textview"
38 + android:text="@string/p7725_sdk_tv_login_input_pass" />
39 +
40 + <EditText
41 + android:id="@+id/binding_password"
42 + style="@style/p7725_sdk_change_password_edittext"
43 + android:inputType="textPassword"
44 + android:hint="@string/p7725_sdk_hint_register_input_pass" />
45 +
46 + <!-- 确认密码 -->
47 +
48 + <TextView
49 + style="@style/p7725_sdk_change_password_textview"
50 + android:text="@string/p7725_sdk_binding_password_again" />
51 +
52 + <EditText
53 + android:id="@+id/binding_password_again"
54 + style="@style/p7725_sdk_change_password_edittext"
55 + android:inputType="textPassword"
56 + android:hint="@string/p7725_sdk_hint_register_input_passok" />
57 +
58 + <!-- 邮箱 -->
59 +
60 + <TextView
61 + style="@style/p7725_sdk_change_password_textview"
62 + android:text="@string/p7725_sdk_binding_email" />
63 +
64 + <EditText
65 + android:id="@+id/binding_email"
66 + style="@style/p7725_sdk_change_password_edittext"
67 + android:hint="@string/p7725_sdk_hint_register_input_email" />
68 +
69 + <LinearLayout
70 + android:layout_width="match_parent"
71 + android:layout_height="wrap_content"
72 + android:layout_marginTop="@dimen/p7725_font_name_size"
73 + android:background="@color/p7725_sdk_background"
74 + android:orientation="horizontal" >
75 +
76 + <Button
77 + android:id="@+id/binding_ok"
78 + style="@style/p7725_sdk_change_password_button"
79 + android:layout_marginRight="@dimen/p7725_font_name_size"
80 + android:text="@string/p7725_sdk_tv_binding_title" />
81 +
82 + <Button
83 + android:id="@+id/binding_back"
84 + style="@style/p7725_sdk_change_password_button"
85 + android:text="@string/p7725_sdk_btn_back" />
86 + </LinearLayout>
87 + </LinearLayout>
88 + </ScrollView>
89 +
90 +</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 + android:layout_width="match_parent"
4 + android:layout_height="match_parent"
5 + android:orientation="vertical" >
6 +
7 + <com.platform7725.gamesdk.view.TitleView
8 + android:id="@+id/change_password_title"
9 + android:layout_width="match_parent"
10 + android:layout_height="wrap_content" />
11 +
12 + <ScrollView
13 + android:layout_width="match_parent"
14 + android:layout_height="match_parent"
15 + android:background="@color/p7725_sdk_background"
16 + >
17 + <LinearLayout
18 + android:layout_width="match_parent"
19 + android:layout_height="wrap_content"
20 + android:orientation="vertical"
21 + android:padding="@dimen/p7725_distance" >
22 +
23 + <!-- 账号 -->
24 +
25 + <TextView
26 + style="@style/p7725_sdk_change_password_textview"
27 + android:text="@string/p7725_sdk_tv_login_input_username" />
28 +
29 + <TextView
30 + android:id="@+id/change_password_username"
31 + style="@style/p7725_sdk_change_password_edittext"
32 + android:textColor="@color/p7725_sdk_black_light"
33 + android:gravity="center_vertical"
34 + />
35 +
36 + <!-- 旧密码 -->
37 +
38 + <TextView
39 + style="@style/p7725_sdk_change_password_textview"
40 + android:text="@string/p7725_sdk_changepass_input_passold" />
41 +
42 + <EditText
43 + android:id="@+id/change_password_password_old"
44 + style="@style/p7725_sdk_change_password_edittext"
45 + android:inputType="textPassword"
46 + android:hint="@string/p7725_sdk_hint_changepass_input_pass" />
47 +
48 + <!-- 新密码 -->
49 +
50 + <TextView
51 + style="@style/p7725_sdk_change_password_textview"
52 + android:text="@string/p7725_sdk_changepass_input_passnew" />
53 +
54 + <EditText
55 + android:id="@+id/change_password_password_new"
56 + style="@style/p7725_sdk_change_password_edittext"
57 + android:inputType="textPassword"
58 + android:hint="@string/p7725_sdk_hint_changepass_input_passnew" />
59 +
60 +
61 + <LinearLayout
62 + android:layout_width="match_parent"
63 + android:layout_height="wrap_content"
64 + android:background="@color/p7725_sdk_background"
65 + android:orientation="horizontal"
66 + android:layout_marginTop="@dimen/p7725_font_name_size"
67 + >
68 +
69 + <Button
70 + android:id="@+id/change_password_ok"
71 + style="@style/p7725_sdk_change_password_button"
72 + android:text="@string/p7725_sdk_btn_ok"
73 + android:layout_marginRight="@dimen/p7725_font_name_size"
74 + />
75 +
76 + <Button
77 + android:id="@+id/change_password_back"
78 + style="@style/p7725_sdk_change_password_button"
79 + android:text="@string/p7725_sdk_btn_back"
80 + />
81 + </LinearLayout>
82 + </LinearLayout>
83 +</ScrollView>
84 +</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 + android:layout_width="match_parent"
4 + android:layout_height="match_parent"
5 + android:orientation="vertical" >
6 +
7 + <com.platform7725.gamesdk.view.TitleView
8 + android:id="@+id/deposits_record_title"
9 + android:layout_width="match_parent"
10 + android:layout_height="wrap_content" />
11 +
12 + <LinearLayout
13 + android:layout_width="match_parent"
14 + android:layout_height="fill_parent"
15 + android:background="@color/p7725_sdk_background"
16 + android:gravity="center"
17 + android:orientation="vertical" >
18 +
19 + <ListView
20 + android:id="@+id/deposits_record_list"
21 + style="@style/style_listview" />
22 +
23 + <TextView
24 + android:layout_width="wrap_content"
25 + android:layout_height="wrap_content"
26 + android:text="@string/p7725_sdk_deposits_no_record" />
27 + </LinearLayout>
28 +
29 +</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 + android:layout_width="match_parent"
4 + android:layout_height="match_parent"
5 + android:orientation="vertical" >
6 +
7 + <com.platform7725.gamesdk.view.TitleView
8 + android:id="@+id/game_detail_title"
9 + android:layout_width="fill_parent"
10 + android:layout_height="wrap_content"
11 + android:orientation="vertical" />
12 +
13 + <ScrollView
14 + android:id="@+id/sl_game_info_02"
15 + android:layout_width="fill_parent"
16 + android:layout_height="fill_parent"
17 + android:padding="@dimen/p7725_distance"
18 + android:background="@color/p7725_sdk_background"
19 + android:gravity="center_vertical" >
20 +
21 + <LinearLayout
22 + android:id="@+id/ll_game_info_02"
23 + android:layout_width="fill_parent"
24 + android:layout_height="wrap_content"
25 + android:gravity="center_vertical"
26 + android:orientation="vertical"
27 + >
28 +
29 + <include layout="@layout/p7725_sdk_item_game_list"/>
30 +
31 + <TextView
32 + android:id="@+id/game_list_detail_text"
33 + android:layout_width="fill_parent"
34 + android:layout_height="wrap_content"
35 + android:layout_marginTop="@dimen/p7725_distance"
36 + android:textColor="@color/p7725_sdk_gray_deep"
37 + android:padding="@dimen/p7725_distance"
38 + android:lineSpacingMultiplier="1.2"
39 + android:background="@android:color/white"
40 + android:textSize="@dimen/p7725_font_detail_size" />
41 +
42 + <HorizontalScrollView
43 + android:id="@+id/game_detail_show_picture"
44 + android:layout_marginTop="@dimen/p7725_distance"
45 + android:layout_width="fill_parent"
46 + android:layout_height="wrap_content" >
47 +
48 + <LinearLayout
49 + android:id="@+id/game_detail_pictures"
50 + android:layout_width="wrap_content"
51 + android:layout_height="250dp"
52 + android:orientation="horizontal" >
53 +
54 + </LinearLayout>
55 + </HorizontalScrollView>
56 + </LinearLayout>
57 + </ScrollView>
58 +
59 +</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 + android:layout_width="match_parent"
3 + android:layout_height="match_parent"
4 + android:background="@android:color/black"
5 + android:orientation="vertical" >
6 +
7 + <com.platform7725.gamesdk.view.TitleView
8 + android:id="@+id/webview_title"
9 + android:layout_width="fill_parent"
10 + android:layout_height="wrap_content"
11 + android:orientation="vertical" />
12 +
13 + <RelativeLayout
14 + android:layout_width="match_parent"
15 + android:layout_height="match_parent"
16 + android:background="@android:color/white"
17 + android:orientation="vertical" >
18 +
19 + <WebView
20 + android:id="@+id/webview_content"
21 + android:layout_width="match_parent"
22 + android:layout_height="match_parent" />
23 +
24 + <LinearLayout
25 + android:id="@+id/loading_root"
26 + android:layout_width="wrap_content"
27 + android:layout_height="wrap_content"
28 + android:layout_centerInParent="true"
29 + android:gravity="center_vertical"
30 + android:orientation="horizontal" >
31 +
32 + <ProgressBar
33 + android:layout_width="15dp"
34 + android:layout_height="15dp" />
35 +
36 + <TextView
37 + android:layout_width="wrap_content"
38 + android:layout_height="wrap_content"
39 + android:text="@string/com_7725_loading"
40 + android:textColor="@color/p7725_sdk_black_light"
41 + android:layout_marginLeft="@dimen/p7725_distance_half"
42 + android:textSize="@dimen/p7725_font_name_size" />
43 + </LinearLayout>
44 + </RelativeLayout>
45 +
46 +</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright (C) 2008 The Android Open Source Project
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<menu xmlns:android="http://schemas.android.com/apk/res/android" >
19 +
20 + <item
21 + android:id="@+id/download_menu_sort_by_size"
22 + android:icon="@android:drawable/ic_menu_sort_by_size"
23 + android:title="@string/download_menu_sort_by_size"/>
24 + <item
25 + android:id="@+id/download_menu_sort_by_date"
26 + android:icon="@drawable/ic_menu_desk_clock"
27 + android:title="@string/download_menu_sort_by_date"/>
28 +
29 +</menu>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<resources>
3 + <string-array name="overriderUrl">
4 + <item>https://account.live.com/ResetPassword.aspx</item>
5 + <item>https://accounts.google.com/SignUp</item>
6 +
7 + <item>https://accounts.google.com/RecoverAccount</item>
8 + <item>http://www.google.com/intl/zh-CN/privacy/</item>
9 + <item>http://www.google.com/support/accounts?hl=zh-CN</item>
10 + <item>http://go.microsoft.com/fwlink/?LinkID=254486</item>
11 + <item>https://signup.live.com/signup.aspx</item>
12 + <item>https://www.google.com/accounts/recovery</item>
13 + <item>market://details?id=com.facebook.katana</item>
14 + <item>mailto:xunlecorp@qq.com</item>
15 + </string-array>
16 +
17 + <string-array name="yahooOverriderUrl">
18 + <item>https://edit.yahoo.com/config/eval_forgot_pw</item>
19 + <item>https://legalredirect.yahoo.com/copyright?intl=us</item>
20 + <item>https://legalredirect.yahoo.com/utos?intl=us</item>
21 + <item>http://security.yahoo.com/</item>
22 + <item>https://legalredirect.yahoo.com/privacy?intl=us</item>
23 + <item>http://help.yahoo.com/kb/index?local</item>
24 + <item>https://open.login.yahoo.com/openid/op/html/us/atos.php</item>
25 + <item>http://help.yahoo.com/l/en-us/yahoo/edit/</item>
26 + <item>https://login.yahoo.com/config/login?.src=ymbr</item>
27 + </string-array>
28 +
29 +</resources>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<resources>
19 + <declare-styleable name="com_facebook_picker_fragment">
20 + <attr name="show_pictures" format="boolean"/>
21 + <attr name="extra_fields" format="string"/>
22 + <attr name="show_title_bar" format="boolean" />
23 + <attr name="title_text" format="string" />
24 + <attr name="done_button_text" format="string" />
25 + <attr name="title_bar_background" format="reference" />
26 + <attr name="done_button_background" format="reference" />
27 + </declare-styleable>
28 + <declare-styleable name="com_facebook_friend_picker_fragment">
29 + <attr name="multi_select" format="boolean"/>
30 + </declare-styleable>
31 + <declare-styleable name="com_facebook_place_picker_fragment">
32 + <attr name="radius_in_meters" format="integer"/>
33 + <attr name="results_limit" format="integer"/>
34 + <attr name="search_text" format="string"/>
35 + <attr name="show_search_box" format="boolean" />
36 + </declare-styleable>
37 + <declare-styleable name="com_facebook_login_view">
38 + <attr name="confirm_logout" format="boolean"/>
39 + <attr name="fetch_user_info" format="boolean"/>
40 + <attr name="login_text" format="string"/>
41 + <attr name="logout_text" format="string"/>
42 + </declare-styleable>
43 + <declare-styleable name="com_facebook_profile_picture_view">
44 + <attr name="preset_size">
45 + <!-- Keep in sync with constants in ProfilePictureView -->
46 + <enum name="small" value="-2" />
47 + <enum name="normal" value="-3" />
48 + <enum name="large" value="-4" />
49 + </attr>
50 + <attr name="is_cropped" format="boolean" />
51 + </declare-styleable>
52 + <declare-styleable name="com_facebook_like_view">
53 + <attr name="foreground_color" format="color" />
54 + <attr name="object_id" format="string" />
55 + <attr name="style">
56 + <!-- Keep in sync with Enums in LikeView -->
57 + <enum name="standard" value="0" />
58 + <enum name="button" value="1" />
59 + <enum name="box_count" value="2" />
60 + </attr>
61 + <attr name="auxiliary_view_position">
62 + <!-- Keep in sync with Enums in LikeView -->
63 + <enum name="bottom" value="0" />
64 + <enum name="inline" value="1" />
65 + <enum name="top" value="2" />
66 + </attr>
67 + <attr name="horizontal_alignment">
68 + <!-- Keep in sync with Enums in LikeView -->
69 + <enum name="center" value="0" />
70 + <enum name="left" value="1" />
71 + <enum name="right" value="2" />
72 + </attr>
73 + </declare-styleable>
74 +</resources>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<resources>
3 + <dimen name="com_facebook_picker_place_image_size">64dp</dimen>
4 + <color name="com_facebook_picker_search_bar_background">#f5f5f7</color>
5 + <color name="com_facebook_picker_search_bar_text">#bcbdc2</color>
6 +</resources>
...\ No newline at end of file ...\ No newline at end of file
1 +<resources>
2 +
3 + <!-- Default screen margins, per the Android Design guidelines. -->
4 + <dimen name="com_7725_activity_horizontal_margin">16dp</dimen>
5 + <dimen name="com_7725_activity_vertical_margin">16dp</dimen>
6 + <dimen name="com_facebook_picker_divider_width">1px</dimen>
7 +
8 + <dimen name="p7725_distance">10dp</dimen>
9 + <dimen name="p7725_distance_half">5dp</dimen>
10 + <dimen name="p7725_font_name_size">16sp</dimen>
11 + <dimen name="p7725_font_detail_size">12sp</dimen>
12 + <dimen name="p7725_font_title_size">20sp</dimen>
13 +
14 + <dimen name="p7725_icon_middle_size">80dp</dimen>
15 + <dimen name="p7725_title_height">50dp</dimen>
16 +</resources>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<resources>
3 + <drawable name="com_facebook_picker_default_separator_color">#33464c59</drawable>
4 +</resources>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<resources>
19 + <string name="com_facebook_dialogloginactivity_ok_button">OK</string>
20 + <string name="com_facebook_like_button_not_liked">Like</string>
21 + <string name="com_facebook_like_button_liked">Liked</string>
22 + <string name="com_facebook_loginview_log_out_button">Log out</string>
23 + <string name="com_facebook_loginview_log_in_button">Log in with Facebook</string>
24 + <string name="com_facebook_loginview_logged_in_as">Logged in as: %1$s</string>
25 + <string name="com_facebook_loginview_logged_in_using_facebook">Logged in using Facebook</string>
26 + <string name="com_facebook_loginview_log_out_action">Log out</string>
27 + <string name="com_facebook_loginview_cancel_action">Cancel</string>
28 + <string name="com_facebook_logo_content_description">Facebook Logo</string>
29 + <string name="com_facebook_usersettingsfragment_log_in_button">Log in&#8230;</string>
30 + <string name="com_facebook_usersettingsfragment_logged_in">Logged in</string>
31 + <string name="com_facebook_usersettingsfragment_not_logged_in">Not logged in</string>
32 + <string name="com_facebook_placepicker_subtitle_format">%1$s • %2$,d were here</string>
33 + <string name="com_facebook_placepicker_subtitle_catetory_only_format">%1$s</string>
34 + <string name="com_facebook_placepicker_subtitle_were_here_only_format">%1$,d were here</string>
35 + <string name="com_facebook_picker_done_button_text">Done</string>
36 + <string name="com_facebook_choose_friends">Choose Friends</string>
37 + <string name="com_facebook_nearby">Nearby</string>
38 + <string name="com_facebook_loading">Loading...</string>
39 + <string name="com_facebook_internet_permission_error_title">AndroidManifest Error</string>
40 + <string name="com_facebook_internet_permission_error_message">WebView login requires INTERNET permission</string>
41 + <string name="com_facebook_requesterror_web_login">Your Facebook account is locked. Please log into www.facebook.com to continue.</string>
42 + <string name="com_facebook_requesterror_relogin">Please log into this app again to reconnect your Facebook account.</string>
43 + <string name="com_facebook_requesterror_password_changed">Your Facebook password has changed. Please log into this app again to reconnect your Facebook account.</string>
44 + <string name="com_facebook_requesterror_reconnect">Please log into this app again to reconnect your Facebook account.</string>
45 + <string name="com_facebook_requesterror_permissions">This app doesn’t have permission to do this. To change permissions, try logging into the app again.</string>
46 + <string name="com_facebook_tooltip_default">New! You\'re in control - choose what info you want to share with apps.</string>
47 + <string name="com_facebook_image_download_unknown_error">Unexpected error while downloading an image.</string>
48 +</resources>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 + Copyright 2010-present Facebook.
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<resources xmlns:android="http://schemas.android.com/apk/res/android">
19 + <color name="com_facebook_blue">#3B5998</color>
20 +
21 + <color name="com_facebook_usersettingsfragment_connected_text_color">#FFFFFF</color>
22 + <color name="com_facebook_usersettingsfragment_connected_shadow_color">#000000</color>
23 + <color name="com_facebook_usersettingsfragment_not_connected_text_color">#A6AED7</color>
24 + <dimen name="com_facebook_usersettingsfragment_profile_picture_width">64dp</dimen>
25 + <dimen name="com_facebook_usersettingsfragment_profile_picture_height">64dp</dimen>
26 +
27 + <dimen name="com_facebook_loginview_padding_left">12dip</dimen>
28 + <dimen name="com_facebook_loginview_padding_right">16dp</dimen>
29 + <dimen name="com_facebook_loginview_padding_top">12dp</dimen>
30 + <dimen name="com_facebook_loginview_padding_bottom">12dp</dimen>
31 + <dimen name="com_facebook_loginview_compound_drawable_padding">12dp</dimen>
32 + <color name="com_facebook_loginview_text_color">#FFFFFF</color>
33 + <dimen name="com_facebook_loginview_text_size">16.0sp</dimen>
34 +
35 + <dimen name="com_facebook_likeview_text_size">11.0sp</dimen>
36 + <color name="com_facebook_likeview_text_color">#6a7180</color>
37 + <dimen name="com_facebook_likeview_edge_padding">2dp</dimen>
38 + <dimen name="com_facebook_likeview_internal_padding">6dp</dimen>
39 +
40 + <dimen name="com_facebook_likebutton_padding_left">8dp</dimen>
41 + <dimen name="com_facebook_likebutton_padding_right">8dp</dimen>
42 + <dimen name="com_facebook_likebutton_padding_top">0dp</dimen>
43 + <dimen name="com_facebook_likebutton_padding_bottom">0dp</dimen>
44 + <dimen name="com_facebook_likebutton_compound_drawable_padding">8dp</dimen>
45 + <color name="com_facebook_likebutton_text_color">#FFFFFF</color>
46 + <dimen name="com_facebook_likebutton_text_size">13.0sp</dimen>
47 +
48 + <dimen name="com_facebook_likeboxcountview_caret_width">6dp</dimen>
49 + <dimen name="com_facebook_likeboxcountview_caret_height">3dp</dimen>
50 + <dimen name="com_facebook_likeboxcountview_border_radius">3dp</dimen>
51 + <dimen name="com_facebook_likeboxcountview_border_width">1dp</dimen>
52 + <color name="com_facebook_likeboxcountview_border_color">#6a7180</color>
53 + <color name="com_facebook_likeboxcountview_text_color">#6a7180</color>
54 + <dimen name="com_facebook_likeboxcountview_text_size">11.0sp</dimen>
55 + <dimen name="com_facebook_likeboxcountview_text_padding">6dp</dimen>
56 +
57 + <dimen name="com_facebook_profilepictureview_preset_size_small">50dp</dimen>
58 + <dimen name="com_facebook_profilepictureview_preset_size_normal">100dp</dimen>
59 + <dimen name="com_facebook_profilepictureview_preset_size_large">180dp</dimen>
60 +
61 + <dimen name="com_facebook_tooltip_horizontal_padding">10dp</dimen>
62 +
63 + <style name="com_facebook_loginview_default_style" parent="@android:style/Widget.Button">
64 + <item name="android:layout_width">wrap_content</item>
65 + <item name="android:layout_height">wrap_content</item>
66 + <item name="android:background">@drawable/com_facebook_button_blue</item>
67 + <item name="android:textColor">@color/com_facebook_loginview_text_color</item>
68 + <item name="android:textSize">@dimen/com_facebook_loginview_text_size</item>
69 + <item name="android:textStyle">bold</item>
70 + <item name="android:paddingLeft">@dimen/com_facebook_loginview_padding_left</item>
71 + <item name="android:gravity">center</item>
72 + </style>
73 +
74 + <style name="com_facebook_loginview_silver_style" parent="@android:style/Widget.Button">
75 + <item name="android:width">205dp</item>
76 + <item name="android:height">44dp</item>
77 + <item name="android:background">@drawable/com_facebook_loginbutton_silver</item>
78 + <item name="android:textSize">18sp</item>
79 + <item name="android:textStyle">bold</item>
80 + <item name="android:textColor">#4B5164</item>
81 + <item name="android:gravity">center</item>
82 + </style>
83 +
84 + <style name="tooltip_bubble_text">
85 + <item name="android:textColor">@android:color/white</item>
86 + <item name="android:gravity">left</item>
87 + <item name="android:textSize">12sp</item>
88 + <item name="android:shadowDy">-1</item>
89 + <item name="android:shadowRadius">0.25</item>
90 + <item name="android:shadowColor">#40000000</item>
91 + </style>
92 +</resources>
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<!--
3 + Copyright (C) 2007 The Android Open Source Project
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
19 +
20 + <string name="permlab_downloadManager" msgid="7779544811202855500">"访问下载管理器。"</string>
21 + <string name="permdesc_downloadManager" msgid="4240298564918160337">"允许应用程序访问下载管理器以及用它下载文件。恶意应用程序可借此干扰下载,以及访问隐私信息。"</string>
22 + <string name="permlab_downloadManagerAdvanced" msgid="7103642833308809655">"高级下载管理器功能。"</string>
23 + <string name="permdesc_downloadManagerAdvanced" msgid="6985743912436565114">"允许应用程序使用下载管理器的高级功能。恶意应用程序可能会借此中断下载以及访问私密信息。"</string>
24 + <string name="permlab_downloadCompletedIntent" msgid="945913803765675685">"发送下载通知。"</string>
25 + <string name="permdesc_downloadCompletedIntent" msgid="8672701687104399228">"允许应用程序发送关于已完成下载的通知。恶意应用程序可借此干扰下载文件的其他应用程序。"</string>
26 + <string name="permlab_downloadCacheNonPurgeable" msgid="3069534308882047412">"保留下载缓存中的空间"</string>
27 + <string name="permdesc_downloadCacheNonPurgeable" msgid="1089583021652571424">"允许应用程序将文件下载到下载缓存(系统不会因为下载管理器需要更多空间而自动删除下载缓存)。"</string>
28 + <string name="permlab_accessAllDownloads" msgid="2436240495424393717">"访问所有系统下载内容"</string>
29 + <string name="permdesc_accessAllDownloads" msgid="4575801130424505112">"允许该应用程序查看和修改由系统中的任意程序所发起的所有下载。"</string>
30 + <string name="download_unknown_title" msgid="7015124071247271585">"&lt;未命名&gt;"</string>
31 + <string name="notification_filename_separator" msgid="7147189522857807618">", "</string>
32 + <string name="notification_filename_extras" msgid="5549729917695688191">" 还有 <xliff:g id="NUMBER">%d</xliff:g> 项"</string>
33 + <string name="notification_download_complete" msgid="840713937779273632">"下载完成"</string>
34 + <string name="notification_download" msgid="840713937779273632">"下载"</string>
35 + <string name="notification_download_failed" msgid="5343637375905111462">"下载失败"</string>
36 + <string name="notification_need_wifi_for_size" msgid="5973127997598540499">"此大小的文件需要通过 Wi-Fi 下载"</string>
37 + <string name="wifi_required_title" msgid="1995971416871498179">您必须使用 Wi-Fi 才能完成此 <xliff:g id="SIZE">%s </xliff:g> 文件的下载。"\n\n"点击<xliff:g id="QUEUE_TEXT">%s </xliff:g>可在下次连接到 Wi-Fi 网络时开始此下载。"</string>
38 + <string name="wifi_recommended_title" msgid="7441589306734687400">"稍后再加入下载队列吗?"</string>
39 + <string name="wifi_recommended_body" msgid="7574517147645381271">"立即开始此 <xliff:g id="SIZE">%s </xliff:g> 文件的下载可能会缩短电池的使用时间并/或导致超额使用移动数据连接(这会导致移动运营商依照流量套餐中的超额规定向您收费)。"\n\n"点击下面的<xliff:g id="QUEUE_TEXT">%s</xliff:g>可在下次连接到 Wi-Fi 网络时开始此下载。"</string>
40 + <string name="button_queue_for_wifi" msgid="422576726189179221">"排队"</string>
41 + <string name="button_cancel_download" msgid="2430166148737975604">"取消下载"</string>
42 + <string name="button_start_now" msgid="792123674007840864">"立即开始"</string>
43 + <string name="common_pause">暂停</string>
44 + <string name="common_cancel">取消</string>
45 + <string name="common_loading_now">正在下载</string>
46 +
47 +</resources>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!-- Copyright (C) 2010 The Android Open Source Project
3 +
4 + Licensed under the Apache License, Version 2.0 (the "License");
5 + you may not use this file except in compliance with the License.
6 + You may obtain a copy of the License at
7 +
8 + http://www.apache.org/licenses/LICENSE-2.0
9 +
10 + Unless required by applicable law or agreed to in writing, software
11 + distributed under the License is distributed on an "AS IS" BASIS,
12 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 + See the License for the specific language governing permissions and
14 + limitations under the License.
15 +-->
16 +
17 +<resources>
18 + <style name="Theme.Translucent" parent="android:style/Theme.Translucent">
19 + <item name="android:windowNoTitle">true</item>
20 + </style>
21 +</resources>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!-- Copyright (C) 2010 The Android Open Source Project
3 +
4 + Licensed under the Apache License, Version 2.0 (the "License");
5 + you may not use this file except in compliance with the License.
6 + You may obtain a copy of the License at
7 +
8 + http://www.apache.org/licenses/LICENSE-2.0
9 +
10 + Unless required by applicable law or agreed to in writing, software
11 + distributed under the License is distributed on an "AS IS" BASIS,
12 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 + See the License for the specific language governing permissions and
14 + limitations under the License.
15 +-->
16 +
17 +<resources>
18 + <dimen name="checkmark_area">40dip</dimen>
19 + <dimen name="fullscreen_close_btn_size">30dip</dimen>
20 +</resources>
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<!--
3 + Copyright (C) 2010 The Android Open Source Project
4 +
5 + Licensed under the Apache License, Version 2.0 (the "License");
6 + you may not use this file except in compliance with the License.
7 + You may obtain a copy of the License at
8 +
9 + http://www.apache.org/licenses/LICENSE-2.0
10 +
11 + Unless required by applicable law or agreed to in writing, software
12 + distributed under the License is distributed on an "AS IS" BASIS,
13 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + See the License for the specific language governing permissions and
15 + limitations under the License.
16 +-->
17 +
18 +<resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
19 +
20 + <string name="download_title" msgid="2470985874255839247">"下载内容"</string>
21 + <string name="no_downloads" msgid="1029667411186146836">"无下载内容。"</string>
22 + <string name="missing_title" msgid="830115697868833773">"&lt;未知>"</string>
23 + <string name="download_menu_sort_by_size" msgid="2276438658769422878">"按大小排序"</string>
24 + <string name="download_menu_sort_by_date" msgid="4300882048968609945">"按时间排序"</string>
25 + <string name="download_queued" msgid="104973307780629904">"已加入队列"</string>
26 + <string name="download_running" msgid="4656462962155580641">"正在下载"</string>
27 + <string name="download_paused">暂停</string>
28 + <string name="download_success" msgid="7006048006543495236">"已经完成,点击安装"</string>
29 + <string name="download_error" msgid="3107369653921738690">"下载失败"</string>
30 + <string name="dialog_title_not_available" msgid="4479021195995400471">"下载失败"</string>
31 + <string name="dialog_failed_body" msgid="587545111677064427">"您想要稍后重新尝试下载该文件,还是将其从队列中删除?"</string>
32 + <string name="dialog_running_body">您想要暂停下载文件,还是取消下载?</string>
33 + <string name="dialog_paused_body">您想要继续下载该文件,还是将其从队列中删除?</string>
34 + <string name="dialog_title_queued_body" msgid="3062862079904954824">"文件尚不可用"</string>
35 + <string name="dialog_queued_body" msgid="2506935748423351902">"该文件已加入队列,供以后下载。"</string>
36 + <string name="dialog_file_missing_body" msgid="2783781332668129395">"未找到已下载的文件。"</string>
37 + <string name="dialog_insufficient_space_on_external" msgid="7534108515812329821">"无法完成下载,外部存储器的空间不足。"</string>
38 + <string name="dialog_insufficient_space_on_cache" msgid="8387210487235302129">"无法完成下载,内部下载存储器的空间不足。"</string>
39 + <string name="dialog_cannot_resume" msgid="7704082031608361756">"下载中断,无法继续进行。"</string>
40 + <string name="dialog_file_already_exists" msgid="2663737850617642888">"无法下载,目标文件已存在。"</string>
41 + <string name="dialog_media_not_found" msgid="5308602145105720991">"无法下载,未安装外部媒体。"</string>
42 + <string name="download_no_application_title" msgid="3501359021635168387">"无法打开文件"</string>
43 + <string name="remove_download" msgid="6372920256257247857">"清除"</string>
44 + <string name="delete_download" msgid="76629022653866471">"删除"</string>
45 + <string name="pause_download">暂停</string>
46 + <string name="resume_download">继续</string>
47 + <string name="keep_queued_download" msgid="5144882786014818569">"保留"</string>
48 + <string name="cancel_running_download" msgid="5232704030969221112">取消下载</string>
49 + <string name="retry_download" msgid="7617100787922717912">"重试"</string>
50 + <string name="deselect_all" msgid="5638030443515705047">"取消选中项"</string>
51 +
52 + <string name="text_no_appplay" >请先安装GOOGPLE PLAY或其他APP商店</string>
53 +
54 +</resources>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<resources>
3 +
4 + <color name="p7725_sdk_all_background">#E6E6E6</color>
5 + <color name="p7725_sdk_white">#fff</color>
6 + <color name="p7725_sdk_black">#000</color>
7 + <color name="p7725_sdk_gray_deep">#777777</color>
8 + <color name="p7725_sdk_background">#EEEEEE</color>
9 + <color name="p7725_sdk_black_light">#333333</color>
10 + <color name="p7725_sdk_orange_light">#F97523</color>
11 + <color name="p7725_sdk_clause">#F97523</color>
12 + <color name="p7725_sdk_transparent">#00FFFFFF</color>
13 +
14 +</resources>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<resources>
3 +
4 + <!-- ******************LoginPro****************** -->
5 + <string name="p7725_sdk_tv_login_7725">7725登入</string>
6 + <string name="p7725_sdk_tv_login_fb">FB登入</string>
7 + <!-- ******************Login****************** -->
8 + <string name="p7725_sdk_btn_back">返回</string>
9 + <string name="p7725_sdk_btn_ok">确定</string>
10 + <!-- 登入 -->
11 + <string name="p7725_sdk_tv_login">登入</string>
12 + <string name="p7725_sdk_tv_login_input_username">账号</string>
13 + <string name="p7725_sdk_tv_login_input_pass">密码</string>
14 + <string name="p7725_sdk_hint_login_input_username">请输入7725账号</string>
15 + <string name="p7725_sdk_hint_login_input_pass">请输入7725密码</string>
16 + <string name="p7725_sdk_hint_login_fail">登录失败,请稍后再试</string>
17 + <string name="p7725_sdk_chck_clause">同意</string>
18 + <string name="p7725_sdk_txt_agree_clause">游戏规范</string>
19 + <string name="p7725_sdk_txt_agree_and"></string>
20 + <string name="p7725_sdk_txt_agree_privacy">隐私政策</string>
21 + <string name="p7725_sdk_dlg_agree_clause">请阅读并同意《隐私政策》及《游戏规范》</string>
22 + <string name="p7725_sdk_clause_title">游戏规范</string>
23 + <string name="p7725_sdk_privacy_title">隐私政策</string>
24 + <string name="p7725_sdk_browser_title">正在浏览</string>
25 + <string name="p7725_sdk_not_show_today">今天不要再显示&#160;&#160;</string>
26 + <!-- 注册 -->
27 + <string name="p7725_sdk_tv_register_title">注册7725账号</string>
28 + <string name="p7725_sdk_btn_register">注册</string>
29 + <string name="p7725_sdk_hint_register_input_username">请输入账号</string>
30 + <string name="p7725_sdk_hint_register_input_pass">请输入密码</string>
31 + <string name="p7725_sdk_hint_register_input_passok">请确认密码</string>
32 + <string name="p7725_sdk_hint_register_input_email">请输入信箱</string>
33 + <!-- 联系客服 -->
34 + <string name="p7725_sdk_tv_customer">联系客服</string>
35 + <!-- 找回密码 -->
36 + <string name="p7725_sdk_tv_findpass">找回密码</string>
37 + <string name="p7725_sdk_tv_findpass2">找回密码</string>
38 + <string name="p7725_sdk_hint_findpass_input_username">请输入您的7725账号</string>
39 + <string name="p7725_sdk_hint_findpass_input_email">请输入您的注册信箱</string>
40 + <!-- 修改密码 -->
41 + <string name="p7725_sdk_tv_changepass">修改密码</string>
42 + <string name="p7725_sdk_tv_changepass2">修改密码</string>
43 + <string name="p7725_sdk_hint_changepass_input_username">请输入您的7725账号</string>
44 + <string name="p7725_sdk_hint_changepass_input_pass">请输入原始密码</string>
45 + <string name="p7725_sdk_hint_changepass_input_passnew">请输入新的密码</string>
46 +
47 + <string name="p7725_sdk_changepass_input_passold">原始密码</string>
48 + <string name="p7725_sdk_changepass_input_passnew">新的密码</string>
49 +
50 + <!-- 绑定提示框 -->
51 + <string name="p7725_sdk_to_binding">绑定</string>
52 +
53 + <!-- 退出 -->
54 + <string name="p7725_sdk_btn_exit">确认注销</string>
55 + <!-- DIALOG -->
56 + <string name="p7725_sdk_text_ok">我知道了</string>
57 + <string name="p7725_sdk_text_changepass_ok">您已经成功修改了密码!</string>
58 + <string name="p7725_sdk_text_findpass_ok">找回密码的信息已经寄送到您的信箱,请注意查收!</string>
59 + <!-- 储值 -->
60 + <string name="p7725_sdk_text_back">返回</string>
61 + <string name="p7725_sdk_text_store">储值</string>
62 + <string name="p7725_sdk_text_loading">拼命加载中&#8230;</string>
63 + <string name="p7725_sdk_text_loading2">数据处理中,请稍后&#8230;</string>
64 + <string name="p7725_sdk_deposits_no_record">无储值内容。</string>
65 + <!-- 其它 -->
66 + <string name="p7725_sdk_text_no_net">网络不可用,请检查!</string>
67 + <string name="p7725_sdk_text_sure">确定</string>
68 + <string name="p7725_sdk_text_cancel">取消</string>
69 + <string name="p7725_sdk_text_no_serverid">没有设定服务器,客服功能不可用!</string>
70 + <string name="p7725_sdk_text_no_roleid">没有设定角色ID,储值功能不可用!</string>
71 + <string name="p7725_sdk_text_no_role">没有设定角色名,储值功能不可用!</string>
72 + <string name="p7725_sdk_text_pay_failure">支付失败,请检查google play账号和密码是否正确!</string>
73 + <string name="p7725_sdk_text_choose_username">请选择账号</string>
74 + <string name="p7725_sdk_text_no_username">账号不能为空!</string>
75 + <string name="p7725_sdk_text_no_password">密码不能为空!</string>
76 + <string name="p7725_sdk_text_no_email">信箱不能为空!</string>
77 + <string name="p7725_sdk_text_no_password_sure">确认密码不能为空!</string>
78 + <string name="p7725_sdk_text_no_password_new">新密码不能为空!</string>
79 + <string name="p7725_sdk_text_no_password2">两次输入的密码不一致!</string>
80 + <string name="p7725_sdk_text_input_error">输入数据有误!</string>
81 + <string name="p7725_sdk_text_timeout">请求超时,请稍后再试!</string>
82 +
83 + <!-- 绑定界面 -->
84 + <string name="p7725_sdk_tv_binding_title">绑定7725账号</string>
85 + <string name="p7725_sdk_tv_binding_to">绑定7725</string>
86 + <string name="p7725_sdk_tv_binding_do_not">不了,下次吧</string>
87 + <string name="p7725_sdk_tv_binding_success">绑定成功</string>
88 + <string name="p7725_sdk_binding_password_again">确认密码</string>
89 + <string name="p7725_sdk_binding_email">注册信箱</string>
90 + <string name="p7725_sdk_binding_hint_must_bind">为保护您的数据安全,请先绑定7725账户</string>
91 + <string name="p7725_sdk_binding_hint_not_bind">您已注册7725账户,无须绑定</string>
92 + <string name="p7725_sdk_binding_hint_already_bind">您已经绑定了7725账户</string>
93 +
94 +
95 + <!-- ******************Google Billing相關****************** -->
96 + <string name="com_7725_setup_isSuccess_BILLING_UNAVAILABLE">您的设备未激活GOOGLE PLAY付费服务。</string>
97 + <string name="com_7725_setup_isSuccess_ITEM_UNAVAILABLE">没有找到相关产品。</string>
98 + <string name="com_7725_setup_isSuccess_DEVELOPER_ERROR">您的设备未激活GOOGLE PLAY付费服务。</string>
99 + <string name="com_7725_setup_isSuccess_ERROR">您的设备未激活GOOGLE PLAY付费服务。</string>
100 + <string name="com_7725_query_inventory">查询购买过的产品失败:</string>
101 + <string name="com_7725_purchase_failure">购买未完成!</string>
102 + <string name="com_7725_purchase_failure_verify">购买失败,验证不通过!</string>
103 + <string name="com_7725_consume_failure">异常信息:</string>
104 + <string name="com_7725_submit_SUCCESS">购买金币成功,正在处理数据,请等待服务器发送元宝。</string>
105 + <string name="com_7725_submit_FAIL_4001">很抱歉,ACTION错误,请稍后再试!</string>
106 + <string name="com_7725_submit_FAIL_4002">很抱歉,订单有误,请稍后再试!</string>
107 + <string name="com_7725_submit_FAIL_4003">很抱歉,运营商订单错误,请稍后再试!</string>
108 + <string name="com_7725_submit_FAIL_4004">很抱歉,金额格式错误,请稍后再试!</string>
109 + <string name="com_7725_submit_FAIL_4005">很抱歉,游戏参数错误,请稍后再试</string>
110 + <string name="com_7725_submit_FAIL_4006">很抱歉,游戏金币兑换比例错误,请稍后再试</string>
111 + <string name="com_7725_submit_FAIL__1">很抱歉,服务器响应异常,请稍后再试</string>
112 +
113 + <string name="com_7725_pvc">3</string>
114 +
115 + <string name="com_7725_loading">加载中...</string>
116 + <string name="com_7725_change_pass_error_net_hint">网络异常,请稍后再试</string>
117 + <string name="com_7725_common_result">结果</string>
118 + <string name="com_7725_common_share_success">分享成功</string>
119 + <string name="com_7725_ok">确定</string>
120 +
121 + <string name="p7725_sdk_hint_quick_login_has_binding">您已经绑定了7725,请使用7725账号登入</string>
122 +
123 + <string name="com_7725_exception_hint">内部发生错误</string>
124 +
125 + <string name="p7725_tab_game_center">游戏中心</string>
126 + <string name="p7725_tab_strategy">攻略</string>
127 + <string name="p7725_tab_funs">粉丝团</string>
128 + <string name="p7725_tab_user_center">账户</string>
129 +
130 + <string name="p7725_install">安装</string>
131 + <string name="p7725_invite_by_fb">邀请FB好友</string>
132 + <string name="p7725_invite">邀请</string>
133 + <string name="p7725_invite_success">邀请成功</string>
134 + <string name="p7725_invite_no_select_friend">您还未勾选好友,请重新选择</string>
135 +
136 + <string name="p7725_change_password">修改密码</string>
137 + <string name="p7725_binding_username">绑定7725账号</string>
138 + <string name="p7725_download_manager">下载管理</string>
139 + <string name="p7725_deposits_record">储值记录</string>
140 + <string name="p7725_customer_service">联系客服</string>
141 + <string name="p7725_log_out">注销</string>
142 +
143 + <string name="p7725_sdk_type">类型:%1$s</string>
144 + <string name="p7725_sdk_size">大小:%1$s</string>
145 +
146 + <string name="p7725_sdk_more_game">点击查看更多</string>
147 +
148 +
149 + <!-- 遊戲 -->
150 + <string name="p7725_sdk_recommend_game">热门游戏推荐</string>
151 + <string name="p7725_sdk_recommend_game_detail">游戏介绍\n\n%1$s</string>
152 +
153 + <!-- 我的帳戶 -->
154 + <string name="p7725_sdk_user_center">我的账户</string>
155 + <string name="p7725_sdk_user_id">玩家ID:%1$s</string>
156 +
157 +
158 + <!-- 资源缺失时的默认属性 -->
159 + <string name="p7725_sdk_error_default">未定义!!!</string>
160 + <string name="p7725_sdk_exception_hint">内部发生错误</string>
161 +
162 + <string name="permname_downloadManager">com.library.permission.ACCESS_DOWNLOAD_MANAGER</string>
163 + <string name="permname_downloadManagerAdvanced">com.library.permission.ACCESS_DOWNLOAD_MANAGER_ADVANCED</string>
164 + <string name="permname_downloadCompletedIntent">com.library.permission.SEND_DOWNLOAD_COMPLETED_INTENTS</string>
165 +
166 +
167 +</resources>
...\ No newline at end of file ...\ No newline at end of file
1 +<resources xmlns:android="http://schemas.android.com/apk/res/android">
2 +
3 + <!--
4 + Base application theme, dependent on API level. This theme is replaced
5 + by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
6 + -->
7 + <style name="AppBaseTheme" parent="android:Theme.Light">
8 + <!--
9 + Theme customizations available in newer API levels can go in
10 + res/values-vXX/styles.xml, while customizations related to
11 + backward-compatibility can go here.
12 + -->
13 + </style>
14 +
15 + <!-- Application theme. -->
16 + <style name="AppTheme" parent="AppBaseTheme">
17 + <!-- All customizations that are NOT specific to a particular API-level can go here. -->
18 + </style>
19 +
20 + <!-- 淡入淡出动画 -->
21 + <style name="FadeAnimation">
22 + <item name="android:windowEnterAnimation">@anim/p7725_sdk_fade_in</item>
23 + <item name="android:windowExitAnimation">@anim/p7725_sdk_fade_out</item>
24 + </style>
25 +
26 + <style name="FadeAnimation2">
27 + <item name="android:windowExitAnimation">@anim/p7725_sdk_fade_out</item>
28 + </style>
29 +
30 + <style name="LoginPro" parent="@style/p7725_full_screen">
31 + <item name="android:windowAnimationStyle">@style/FadeAnimation</item>
32 + </style>
33 +
34 + <style name="Login" parent="@style/p7725_full_screen">
35 + <item name="android:windowAnimationStyle">@style/FadeAnimation</item>
36 + </style>
37 +
38 + <style name="p7725_full_screen">
39 + <item name="android:windowBackground">@android:color/transparent</item>
40 + <item name="android:windowIsTranslucent">true</item>
41 + <item name="android:windowNoTitle">true</item>
42 + <item name="android:windowFullscreen">true</item>
43 + <item name="android:windowContentOverlay">@null</item>
44 + </style>
45 +
46 + <style name="MyDialog">
47 + <item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item>
48 + <item name="android:windowBackground">@android:color/transparent</item>
49 + <item name="android:windowIsFloating">true</item>
50 + <item name="android:windowContentOverlay">@null</item>
51 + <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
52 + </style>
53 +
54 + <style name="UserList" parent="@android:style/Theme.Dialog">
55 + <item name="android:windowNoTitle">true</item>
56 + <item name="android:windowBackground">@android:color/transparent</item>
57 + </style>
58 +
59 + <style name="Title">
60 + <item name="android:textColor">#000</item>
61 + <item name="android:textStyle">bold</item>
62 + <item name="android:textSize">30.0px</item>
63 + <item name="android:gravity">center</item>
64 + </style>
65 +
66 + <style name="Input">
67 + <item name="android:background">@drawable/p7725_sdk_input_bg</item>
68 + <item name="android:paddingLeft">10dp</item>
69 + <item name="android:paddingRight">10dp</item>
70 + <item name="android:singleLine">true</item>
71 + <item name="android:textColor">#fff</item>
72 + <item name="android:textColorHint">#fff</item>
73 + <item name="android:textSize">22.96px</item>
74 + </style>
75 +
76 + <style name="Button">
77 + <item name="android:background">@drawable/p7725_sdk_btn_ok</item>
78 + <item name="android:gravity">center</item>
79 + <item name="android:textColor">#fff</item>
80 + <item name="android:textStyle">bold</item>
81 + <item name="android:textSize">22.76px</item>
82 + </style>
83 +
84 + <style name="style_listview">
85 + <item name="android:layout_width">fill_parent</item>
86 + <item name="android:layout_height">fill_parent</item>
87 + <item name="android:cacheColorHint">@android:color/transparent</item>
88 + <item name="android:divider">@android:color/transparent</item>
89 + <item name="android:listSelector">@android:color/transparent</item>
90 + </style>
91 +
92 + <style name="game_detail_ratingBar" parent="@android:style/Widget.RatingBar">
93 + <item name="android:progressDrawable">@drawable/p7725_sdk_game_detail_ratingbar</item>
94 + <item name="android:minHeight">15dip</item>
95 + <item name="android:maxHeight">15dip</item>
96 + </style>
97 +
98 + <style name="p7725_sdk_change_password_textview">
99 + <item name="android:layout_width">fill_parent</item>
100 + <item name="android:layout_height">wrap_content</item>
101 + <item name="android:textColor">@color/p7725_sdk_black_light</item>
102 + <item name="android:textSize">@dimen/p7725_font_name_size</item>
103 + <item name="android:layout_marginBottom">@dimen/p7725_distance_half</item>
104 + </style>
105 +
106 + <style name="p7725_sdk_change_password_edittext">
107 + <item name="android:layout_width">fill_parent</item>
108 + <item name="android:layout_height">wrap_content</item>
109 + <item name="android:background">@drawable/p7725_sdk_banding_account_input_box</item>
110 + <item name="android:textSize">@dimen/p7725_font_detail_size</item>
111 + <item name="android:layout_marginBottom">@dimen/p7725_distance</item>
112 + <item name="android:singleLine">true</item>
113 + </style>
114 +
115 + <style name="p7725_sdk_change_password_button">
116 + <item name="android:layout_width">0dp</item>
117 + <item name="android:layout_height">wrap_content</item>
118 + <item name="android:layout_weight">1</item>
119 + <item name="android:background">@drawable/p7725_sdk_btn_grey_orange</item>
120 + <item name="android:textSize">@dimen/p7725_font_name_size</item>
121 + <item name="android:textColor">@android:color/white</item>
122 + </style>
123 +
124 + <style name="p7725_sdk_user_center_button">
125 + <item name="android:layout_width">fill_parent</item>
126 + <item name="android:layout_height">62dp</item>
127 + <item name="android:gravity">left|center_vertical</item>
128 + <item name="android:background">@drawable/p7725_sdk_select_button_background</item>
129 + <item name="android:drawablePadding">@dimen/p7725_distance_half</item>
130 + <item name="android:textColor">@color/p7725_sdk_black_light</item>
131 + <item name="android:padding">10dp</item>
132 + <item name="android:drawableRight">@drawable/p7725_sdk_select_button_arrow</item>
133 + </style>
134 +
135 + <style name="p7725_dialogBuilder" parent="@android:Theme.Dialog">
136 +
137 + <!-- 去除标题 -->
138 + <item name="android:windowNoTitle">true</item>
139 + <!-- 去除背景 -->
140 + <item name="android:windowBackground">@android:color/transparent</item>
141 + <!--
142 + <item name="android:backgroundDimEnabled">false</item>
143 + <item name="android:windowIsFloating">false</item>
144 + <item name="android:windowIsTranslucent">true</item>
145 +
146 + -->
147 +
148 + </style>
149 +
150 + <style name="p7725_sdk_checkbox" parent="@android:style/Widget.CompoundButton.CheckBox">
151 + <item name="android:button">@drawable/p7725_sdk_chck_clause</item>
152 + </style>
153 +</resources>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<resources>
3 + <integer name="google_play_services_version">5077000</integer>
4 +</resources>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<resources>
3 +
4 + <!-- app name. eg.: 風雲天下 OL -->
5 +
6 + <!-- <string name="com_7725_app_name">塔防無雙</string> -->
7 +
8 + <string name="com_7725_app_name">EasyGameDemo</string>
9 +
10 +
11 + <!-- 程序入口的类名和包名,请游戏商填写 (推送) -->
12 + <string name="com_7725_game_main_activity"> </string>
13 +
14 + <!-- 7725 sdk protocol token & game alias -->
15 + <!--
16 + <string name="com_7725_sdkProtocolToken">3f36dc69b4330ed1ed6f50c412018d50</string>
17 + <string name="com_7725_sdkProtocolGame">tfws</string>
18 +-->
19 + <string name="com_7725_sdkProtocolToken">f8ea4b100a5f2c774160434e038f044a</string>
20 + <string name="com_7725_sdkProtocolGame">demo</string>
21 +
22 +
23 +
24 + <!-- facebook manifest -->
25 +<!--
26 + <string name="com_7725_facebookSdkApplicationId">114726065640556</string>
27 + -->
28 + <string name="com_7725_facebookSdkApplicationId">687193478101420</string>
29 +
30 +
31 + <!-- 英特 -->
32 + <string name="com_7725_enable_mobile_payment_tracker">false</string>
33 + <string name="com_7725_mobile_payment_tracker_id">15530</string>
34 + <string name="com_7725_mobile_payment_tracker_key">87a5d0f9221d0e066ab4dc60fd1a0247</string>
35 +
36 + <!-- Airpush manifest -->
37 + <string name="com_7725_enable_mobile_airpush_advertisement_tracker">false</string>
38 +
39 + <!-- BearMedia manifest -->
40 + <string name="com_7725_bearMedia_appid">rcPQXy3sxjJDfmd7xA8EBH</string>
41 + <string name="com_7725_enable_mobile_bearMedia_advertisement_tracker">false</string>
42 +
43 + <!-- InMobi manifest -->
44 + <string name="com_7725_enable_mobile_inmobi_advertisement_tracker">true</string>
45 + <string name="com_7725_inmobi_appid">8ce54673ed0346a7b84c299f688bd043</string>
46 +
47 + <!-- KuADCPA manifest -->
48 + <string name="com_7725_enable_mobile_kuadcpa_advertisement_tracker">true</string>
49 + <string name="com_7725_kuadcpa_appid">2015020400002</string>
50 + <string name="com_7725_kuadcpa_appkey">a424a879a8994e4fd136c9d05efbb1b6</string>
51 +
52 + <!-- Advertiser manifest -->
53 + <string name="com_7725_enable_mobile_advertiser_advertisement_tracker">true</string>
54 + <string name="com_7725_advertiser_appid">fy_ctzj2_hk_tw</string>
55 +
56 +
57 + <!-- MdotM manifest -->
58 + <string name="com_7725_enable_mobile_MdotM_advertisement_tracker">true</string>
59 +
60 + <!-- MillennialMedia manifest -->
61 + <string name="com_7725_enable_mobile_millennialMedia_advertisement_tracker">true</string>
62 + <string name="com_7725_millennialMedia_appid">46050</string>
63 +
64 + <!-- google analytics manifest -->
65 + <!-- Replace placeholder ID with your tracking ID -->
66 + <string name="ga_trackingId">UA-42392414-18</string>
67 + <!-- Enable automatic activity tracking -->
68 + <bool name="ga_autoActivityTracking">true</bool>
69 + <!-- Enable automatic exception tracking -->
70 + <bool name="ga_reportUncaughtExceptions">true</bool>
71 +
72 +</resources>
...\ No newline at end of file ...\ No newline at end of file