Commit 0065ebed authored by mengcuiguang2's avatar mengcuiguang2

Merge branch 'branche_zsf' into dev_ad

parents 9d7e276e d47cffd9
......@@ -42,21 +42,21 @@ class MainActivity : BaseActivity<ActivityMainBinding, MainViewModel>() {
binding.mainBottom.init {
when (it) {
R.id.menu_home -> binding.mainViewpager.setCurrentItem(0, false)
// R.id.menu_square -> binding.mainViewpager.setCurrentItem(1, false)
R.id.menu_square -> binding.mainViewpager.setCurrentItem(1, false)
R.id.menu_my -> {
binding.mainViewpager.setCurrentItem(2, false)
// stopAnim()
// stopAnim()
}
}
}
//加载本地GIF动图
// ImageLoader.ImageBuilder.with(this)
// .setDrawable(R.mipmap.ic_earth_map)
// .setTargetView(binding.ivTakephoto).start()
ImageLoader.ImageBuilder.with(this)
.setDrawable(R.mipmap.ic_earth_map)
.setTargetView(binding.ivTakephoto).start()
binding.mainBottom.interceptLongClick(
R.id.menu_home,
// R.id.menu_square,
R.id.menu_square,
R.id.menu_my
)
......@@ -134,10 +134,10 @@ private fun ViewPager2.initMain(activity: FragmentActivity): ViewPager2 {
//首页
HomeFragment()
}
// 1 -> {
// //广场
// VRFragment()
// }
1 -> {
//广场
VRFragment()
}
2 -> {
//个人中心
MyFragment()
......
......@@ -70,7 +70,7 @@ class MyFragment : BaseFragment<FragmentMyBinding, MyViewModel>(), OnRefreshList
super.initData()
srl_my.setOnRefreshListener(this)
//隐藏立即领取
bt_try.visibility = View.GONE
// bt_try.visibility = View.GONE
initView()
initListener()
}
......
......@@ -11,6 +11,7 @@ import com.mints.street.R
import com.mints.street.common.Constant
import com.mints.street.databinding.ActivityPermissionsBinding
import com.mints.street.main.MainActivity
import com.mints.street.webview.MintsWebViewActivity
import com.tbruyelle.rxpermissions2.RxPermissions
import com.tencent.mmkv.MMKV
import kotlinx.android.synthetic.main.activity_permissions.*
......@@ -34,6 +35,8 @@ class PermissionsActivity : BaseActivity<ActivityPermissionsBinding, Permission
private fun initListener() {
btnPermissionsDont.setOnClickListener(this)
btnPermissionsNext.setOnClickListener(this)
tv_private.setOnClickListener(this)
tv_regist.setOnClickListener(this)
}
private fun initView() {
......@@ -86,6 +89,12 @@ class PermissionsActivity : BaseActivity<ActivityPermissionsBinding, Permission
MMKV.mmkvWithID(Constant.FIRST_OPEN_PERMISSIONS).encode(Constant.FIRST_OPEN_PERMISSIONS, true)
}
R.id.tv_regist->{
MintsWebViewActivity.startWebView(name = "用户协议",url = "http://test.mints-id.com/map-api/map/register.html")
}
R.id.tv_private->{
MintsWebViewActivity.startWebView(name = "隐私协议",url = "http://test.mints-id.com/map-api/map/privacy.html")
}
}
}
}
\ No newline at end of file
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:duration="300"
android:fromYDelta="100%p"
android:toYDelta="0" />
<alpha
android:duration="500"
android:fromAlpha="0.0"
android:toAlpha="1.0" />
</set>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:duration="750"
android:fromYDelta="0"
android:toYDelta="100%p" />
<alpha
android:duration="300"
android:fromAlpha="1.0"
android:toAlpha="0.0" />
</set>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com]
~
~ Licensed under the Apache License, Version 2.0 (the "License”);
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<alpha
xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="300"
android:fromAlpha="0.0"
android:toAlpha="1.0" />
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com]
~
~ Licensed under the Apache License, Version 2.0 (the "License”);
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<alpha
xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="300"
android:fromAlpha="1.0"
android:toAlpha="0.0" />
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!--
author:Remex Huang
website:feelyou.info
-->
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="300"
android:fromXDelta="-100%p"
android:fromYDelta="0"
android:toXDelta="0"
android:toYDelta="0" >
</translate>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!--
author:Remex Huang
website:feelyou.info
-->
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="300"
android:fromXDelta="100%p"
android:fromYDelta="0"
android:toXDelta="0"
android:toYDelta="0" >
</translate>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?><!--
~ Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com]
~
~ Licensed under the Apache License, Version 2.0 (the "License”);
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="300"
android:fromXDelta="-100%p"
android:interpolator="@android:anim/accelerate_decelerate_interpolator"
android:toXDelta="0" />
<?xml version="1.0" encoding="utf-8"?><!--
~ Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com]
~
~ Licensed under the Apache License, Version 2.0 (the "License”);
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="300"
android:fromXDelta="0"
android:interpolator="@android:anim/accelerate_decelerate_interpolator"
android:toXDelta="100%p" />
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!--
author:Remex Huang
website:feelyou.info
-->
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="300"
android:fromXDelta="0"
android:fromYDelta="0"
android:toXDelta="-100%p"
android:toYDelta="0" >
</translate>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!--
author:Remex Huang
website:feelyou.info
-->
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="300"
android:fromXDelta="0"
android:fromYDelta="0"
android:toXDelta="100%p"
android:toYDelta="0" >
</translate>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:duration="800"
android:fromYDelta="0"
android:toYDelta="50%p" />
<alpha
android:duration="1000"
android:fromAlpha="1.0"
android:toAlpha="0.0" />
</set>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:duration="800"
android:fromYDelta="100%p"
android:toYDelta="0" />
<alpha
android:duration="500"
android:fromAlpha="0.0"
android:toAlpha="1.0" />
</set>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:duration="200"
android:fromYDelta="100%p"
android:toYDelta="0" />
<alpha
android:duration="200"
android:fromAlpha="0.0"
android:toAlpha="1.0" />
</set>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:duration="200"
android:fromYDelta="0"
android:toYDelta="50%p" />
<alpha
android:duration="200"
android:fromAlpha="1.0"
android:toAlpha="0.0" />
</set>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com]
~
~ Licensed under the Apache License, Version 2.0 (the "License”);
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<translate
xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="300"
android:interpolator="@android:anim/accelerate_decelerate_interpolator"
android:fromXDelta="100%p"
android:toXDelta="0"/>
<?xml version="1.0" encoding="utf-8"?><!--
~ Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com]
~
~ Licensed under the Apache License, Version 2.0 (the "License”);
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="300"
android:fromXDelta="0"
android:interpolator="@android:anim/accelerate_decelerate_interpolator"
android:toXDelta="-100%p" />
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?><!--
~ Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com]
~
~ Licensed under the Apache License, Version 2.0 (the "License”);
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<scale xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="300"
android:fillAfter="false"
android:fromXScale="0.0"
android:fromYScale="0.0"
android:interpolator="@android:anim/accelerate_decelerate_interpolator"
android:pivotX="50%"
android:pivotY="50%"
android:toXScale="1"
android:toYScale="1" />
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?><!--
~ Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com]
~
~ Licensed under the Apache License, Version 2.0 (the "License”);
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="300"
android:fromAlpha="1.0"
android:toAlpha="0" />
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com]
~
~ Licensed under the Apache License, Version 2.0 (the "License”);
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<translate
xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="300"
android:fromYDelta="-100%p"
android:toYDelta="0"/>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com]
~
~ Licensed under the Apache License, Version 2.0 (the "License”);
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<translate
xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="300"
android:fromYDelta="0"
android:toYDelta="-100%p"/>
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<!--折叠状态下的阴影-->
<item app:state_collapsed="true">
<objectAnimator
android:propertyName="elevation"
android:valueTo="1.5dp"
android:valueType="floatType" />
</item>
<!--展开状态下的阴影-->
<item app:state_collapsed="false">
<objectAnimator
android:propertyName="elevation"
android:valueTo="1.5dp"
android:valueType="floatType" />
</item>
</selector>
\ No newline at end of file
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="108dp"
android:height="108dp"
android:viewportHeight="108"
android:viewportWidth="108">
<path android:pathData="M31,63.928c0,0 6.4,-11 12.1,-13.1c7.2,-2.6 26,-1.4 26,-1.4l38.1,38.1L107,108.928l-32,-1L31,63.928z">
<aapt:attr name="android:fillColor">
<gradient
android:endX="85.84757"
android:endY="92.4963"
android:startX="42.9492"
android:startY="49.59793"
android:type="linear">
<item
android:color="#44000000"
android:offset="0.0" />
<item
android:color="#00000000"
android:offset="1.0" />
</gradient>
</aapt:attr>
</path>
<path
android:fillColor="#FFFFFF"
android:fillType="nonZero"
android:pathData="M65.3,45.828l3.8,-6.6c0.2,-0.4 0.1,-0.9 -0.3,-1.1c-0.4,-0.2 -0.9,-0.1 -1.1,0.3l-3.9,6.7c-6.3,-2.8 -13.4,-2.8 -19.7,0l-3.9,-6.7c-0.2,-0.4 -0.7,-0.5 -1.1,-0.3C38.8,38.328 38.7,38.828 38.9,39.228l3.8,6.6C36.2,49.428 31.7,56.028 31,63.928h46C76.3,56.028 71.8,49.428 65.3,45.828zM43.4,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2c-0.3,-0.7 -0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C45.3,56.528 44.5,57.328 43.4,57.328L43.4,57.328zM64.6,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2s-0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C66.5,56.528 65.6,57.328 64.6,57.328L64.6,57.328z"
android:strokeColor="#00000000"
android:strokeWidth="1" />
</vector>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/shape_btn_friends_enabled" android:state_enabled="true" />
<item android:drawable="@drawable/shape_btn_friends_unenabled" android:state_enabled="false" />
</selector>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:color="@color/color_E72C2B" android:state_enabled="true" />
<item android:color="@android:color/white" android:state_enabled="false" />
</selector>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/shape_bg_payment" android:state_enabled="true"/>
<item android:drawable="@drawable/shape_bg_payment_down" android:state_enabled="false"/>
</selector>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportHeight="108"
android:viewportWidth="108">
<path
android:fillColor="#3DDC84"
android:pathData="M0,0h108v108h-108z" />
<path
android:fillColor="#00000000"
android:pathData="M9,0L9,108"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M19,0L19,108"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M29,0L29,108"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M39,0L39,108"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M49,0L49,108"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M59,0L59,108"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M69,0L69,108"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M79,0L79,108"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M89,0L89,108"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M99,0L99,108"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,9L108,9"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,19L108,19"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,29L108,29"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,39L108,39"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,49L108,49"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,59L108,59"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,69L108,69"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,79L108,79"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,89L108,89"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,99L108,99"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M19,29L89,29"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M19,39L89,39"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M19,49L89,49"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M19,59L89,59"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M19,69L89,69"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M19,79L89,79"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M29,19L29,89"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M39,19L39,89"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M49,19L49,89"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M59,19L59,89"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M69,19L69,89"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M79,19L79,89"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
</vector>
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/shape_gold_card" android:state_checked="true"/>
<item android:drawable="@drawable/shape_gold" android:state_checked="false"/>
</selector>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="false" android:drawable="@color/blue" />
<item android:state_checked="true" android:drawable="@color/black" />
</selector>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/color_FFC7C7" />
<corners android:radius="100dp" />
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?><!-- 中心背景 -->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<!-- 实心 -->
<solid android:color="#ffffff" />
<corners
android:topLeftRadius="20dp"
android:topRightRadius="20dp" />
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="false">
<!-- <item android:duration="100">-->
<!-- <clip-->
<!-- android:clipOrientation="horizontal"-->
<!-- android:drawable="@mipmap/loading_u0"-->
<!-- android:gravity="left" />-->
<!-- </item>-->
<item android:duration="100">
<clip
android:clipOrientation="horizontal"
android:drawable="@mipmap/loading_u1"
android:gravity="left" />
</item>
<item android:duration="100">
<clip
android:clipOrientation="horizontal"
android:drawable="@mipmap/loading_u2"
android:gravity="left" />
</item>
<item android:duration="100">
<clip
android:clipOrientation="horizontal"
android:drawable="@mipmap/loading_u3"
android:gravity="left" />
</item>
<item android:duration="100">
<clip
android:clipOrientation="horizontal"
android:drawable="@mipmap/loading_u4"
android:gravity="left" />
</item>
<item android:duration="100">
<clip
android:clipOrientation="horizontal"
android:drawable="@mipmap/loading_u5"
android:gravity="left" />
</item>
<item android:duration="100">
<clip
android:clipOrientation="horizontal"
android:drawable="@mipmap/loading_u6"
android:gravity="left" />
</item>
</animation-list>
\ No newline at end of file
......@@ -36,11 +36,9 @@
</FrameLayout>
<FrameLayout
android:visibility="gone"
android:id="@+id/flTakephoto"
android:layout_width="68dp"
android:layout_height="68dp"
android:layout_marginBottom="20dp"
android:background="@mipmap/bg_tab_takephone"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
......
......@@ -232,6 +232,7 @@
android:textSize="12sp" />
<TextView
android:id="@+id/tv_regist"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="《注册协议》"
......@@ -239,6 +240,7 @@
android:textSize="12sp" />
<TextView
android:id="@+id/tv_private"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="《隐私协议》"
......
<?xml version="1.0" encoding="utf-8"?>
<androidx.appcompat.widget.AppCompatTextView
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="15sp"
android:singleLine="true"
android:gravity="center_horizontal"
android:textColor="@color/main_color">
</androidx.appcompat.widget.AppCompatTextView>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/include_header"
android:layout_width="match_parent"
android:layout_height="70dp"
android:paddingTop="25dp">
......@@ -17,7 +16,6 @@
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/tv_left_subtitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:lines="1"
......@@ -46,7 +44,6 @@
app:layout_constraintTop_toTopOf="parent" />
<ImageView
android:id="@+id/iv_right_icon2"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_marginEnd="10dp"
......@@ -66,7 +63,6 @@
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/tv_right_subtitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="10dp"
......
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/iv_empty"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:src="@mipmap/ic_record_empty" />
</FrameLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<androidx.recyclerview.widget.RecyclerView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/recy_friends"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:overScrollMode="never"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="50dp"
android:gravity="center_vertical"
android:orientation="horizontal"
android:padding="10dp">
<ImageView
android:id="@+id/item_invite_iv_ranking"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_marginTop="3dp"
android:visibility="gone" />
<TextView
android:id="@+id/item_invited_tv_num"
android:layout_width="30dp"
android:layout_height="30dp"
android:gravity="center"
android:textColor="@color/color_333"
android:textSize="16dp"
android:visibility="gone" />
<ImageView
android:id="@+id/item_invited_iv_avatar"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_marginStart="10dp" />
<TextView
android:id="@+id/item_invited_tv_name"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:layout_weight="1"
android:textColor="@color/color_333"
android:textSize="16sp" />
<TextView
android:id="@+id/item_invited_tv_coin"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/color_FB560C"
android:textSize="22sp" />
<TextView
android:id="@+id/item_invited_tv_str"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="2dp"
android:textColor="@color/color_FB560C"
android:textSize="14sp" />
</LinearLayout>
\ No newline at end of file
......@@ -46,7 +46,6 @@
tools:ignore="MissingConstraints" />
<TextView
android:id="@+id/textView6"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
......
......@@ -4,70 +4,18 @@
<color name="colorPrimaryDark">#ffffffff</color>
<color name="colorAccent">#FF4081</color>
<color name="color_FF9837">#FF9837</color>
<color name="color_50FF9837">#50FF9837</color>
<color name="white">#FFFFFF</color>
<color name="black">#000000</color>
<color name="gray">#808080</color>
<color name="color_3D5AFE">#3D5AFE</color>
<color name="color_cb4a39">#cb4a39</color>
<color name="color_0000FF">#0000FF</color>
<color name="color_668BFF">#668BFF</color>
<color name="color_ccc">#cccccc</color>
<color name="color_AAA">#AAAAAA</color>
<color name="color_0000">#00000000</color>
<color name="color_20000000">#20000000</color>
<color name="color_60000000">#60000000</color>
<color name="color_50000000">#50000000</color>
<color name="color_2B3238">#2B3238</color>
<color name="color_002444">#002444</color>
<color name="color_600c224b">#600c224b</color>
<color name="color_fcf16e">#fcf16e</color>
<color name="color_F18542">#F18542</color>
<color name="color_FEEBC8">#FEEBC8</color>
<color name="color_63A0B9">#63A0B9</color>
<color name="color_7EE2FF">#7EE2FF</color>
<color name="color_255186">#255186</color>
<color name="color_A7BCFE">#A7BCFE</color>
<color name="color_666">#666666</color>
<color name="color_454A69">#454A69</color>
<color name="color_333">#333333</color>
<color name="color_4BB93F">#4BB93F</color>
<color name="color_FEB63D">#FEB63D</color>
<color name="color_FF5E5E">#FF5E5E</color>
<color name="color_172B54">#172B54</color>
<color name="color_707A8D">#707A8D</color>
<color name="color_121B32">#121B32</color>
<color name="color_F9F9F9">#F9F9F9</color>
<color name="color_63677E">#63677E</color>
<color name="color_BEC2CC">#BEC2CC</color>
<color name="color_50E8E8E8">#50E8E8E8</color>
<color name="color_FF2326">#FF2326</color>
<color name="color_93B7D9">#93B7D9</color>
<color name="color_E6E6E6">#E6E6E6</color>
<color name="color_F9FAFB">#F9FAFB</color>
<color name="color_F8F8F8">#F8F8F8</color>
<color name="color_343C4F">#343C4F</color>
<color name="color_FB560C">#FB560C</color>
<color name="color_EBB20D">#EBB20D</color>
<color name="color_999">#999999</color>
<color name="color_555">#555555</color>
<color name="color_F5F">#F5F5F5</color>
<color name="color_F8F">#F8F8F8</color>
<color name="color_D81B60">#D81B60</color>
<color name="color_00895B">#00895B</color>
<color name="color_8F6D21">#8F6D21</color>
<color name="color_FFDD0C">#FFDD0C</color>
<color name="color_CF7E7E">#CF7E7E</color>
<color name="color_FF4A4A">#FF4A4A</color>
<color name="color_AF6F36">#AF6F36</color>
<color name="color_912C36">#912C36</color>
<color name="color_E72C2B">#E72C2B</color>
<color name="color_FFC7C7">#FFC7C7</color>
<color name="color_FF7C00">#FF7C00</color>
<color name="color_FAF6E8">#FAF6E8</color>
<color name="color_F3E7C5">#F3E7C5</color>
<color name="color_E1B867">#E1B867</color>
<color name="color_FCCCAC">#FCCCAC</color>
<color name="color_994B23">#994B23</color>
<color name="color_F28335">#F28335</color>
</resources>
\ No newline at end of file
......@@ -39,112 +39,12 @@
</style>
<style name="dialog" parent="@android:style/Theme.Dialog">
<item name="android:windowBackground">@color/color_0000</item>
<item name="android:windowFrame">@null</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsFloating">true</item>
<item name="android:windowIsTranslucent">false</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:background">@null</item>
<item name="android:backgroundDimEnabled">true</item>
<item name="android:gravity">bottom</item>
</style>
<style name="dialog_two" parent="@android:style/Theme.Dialog">
<item name="android:windowBackground">@color/color_0000</item>
<item name="android:windowFrame">@null</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsFloating">true</item>
<item name="android:windowIsTranslucent">false</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:background">@null</item>
<item name="android:backgroundDimEnabled">true</item>
</style>
<style name="loading_small" parent="@android:style/Widget.ProgressBar.Small">
<item name="android:indeterminateDrawable">@drawable/ufo_loading</item>
<item name="android:layout_width">25dip</item>
<item name="android:layout_height">25dip</item>
<item name="android:layout_gravity">center</item>
</style>
<!-- activity 切换 anim -->
<style name="FeelyouWindowAnimTheme" parent="@android:style/Animation.Activity">
<item name="android:activityOpenEnterAnimation">@anim/in_from_right</item>
<item name="android:activityOpenExitAnimation">@anim/out_from_left</item>
<item name="android:activityCloseEnterAnimation">@anim/in_from_left</item>
<item name="android:activityCloseExitAnimation">@anim/out_from_right</item>
</style>
<style name="notice_dialog" parent="android:style/Theme.Dialog">
<item name="android:background">#00000000</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsFloating">true</item>
<item name="android:layout_gravity">center</item>
<item name="android:gravity">center</item>
</style>
<style name="NotificationTitle">
<item name="android:textColor">?android:attr/textColorPrimary</item>
<item name="android:textStyle">bold</item>
</style>
<style name="Theme.Light" parent="Theme.AppCompat.Light">
<item name="android:windowBackground">@color/white</item>
</style>
<style name="NotificationText">
<item name="android:textColor">?android:attr/textColorPrimary</item>
</style>
<style name="erect_2">
<item name="android:layout_width">0.8dip</item>
<item name="android:layout_height">match_parent</item>
<item name="android:background">#EEEEEE</item>
</style>
<style name="DialogAnimBottom" parent="@android:style/Animation">
<item name="android:windowEnterAnimation">@anim/dialog_bottom_in</item>
<item name="android:windowExitAnimation">@anim/dialog_bottom_out</item>
</style>
<style name="AppTheme.BottomSheet" parent="android:Theme.Dialog">
<item name="android:windowNoTitle">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowAnimationStyle">@null
</item><!-- 为了避免在有 NavigationBar 的手机上 Dialog 从 NavigationBar 底部上来。去掉 Dialog 的动画,使用 View 的动画。-->
<item name="android:layout_width">match_parent</item>
</style>
<style name="MyTitleStyle" parent="@android:style/Widget.TextView">
<item name="android:textSize">24sp</item>
<item name="android:textColor">#cb4a39</item>
<item name="android:fontFamily">sans-serif-condensed</item>
</style>
<!--设置Tablayout字体加粗-->
<style name="TabLayoutTextStyle">
<item name="android:textStyle">bold</item>
</style>
<style name="line_1">
<item name="android:layout_width">match_parent</item>
<item name="android:layout_height">1px</item>
<item name="android:background">#d3d3d3</item>
</style>
<style name="ipopwindow_anim_style">
<item name="android:windowEnterAnimation">@anim/popshow_anim</item>
<!-- 指定显示的动画xml -->
<item name="android:windowExitAnimation">@anim/pophidden</item>
<!-- 指定消失的动画xml -->
</style>
<style name="MyCheckBox" parent="Theme.AppCompat.Light">
<item name="colorControlNormal">@color/black</item>
<item name="colorControlActivated">@color/black</item>
......
<?xml version="1.0" encoding="utf-8"?>
<resources>
<paths>
<root-path
name="root"
path="" />
<files-path
name="files"
path="" />
<external-path
name="sdcard"
path="" />
<cache-path
name="cache"
path="" />
<external-files-path
name="exFiles"
path="" />
<external-cache-path
name="exCache"
path="" />
</paths>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<!--为了适配所有路径可以设置 path = "." -->
<external-path name="download" path="." />
<external-files-path name="external_file" path="." />
<external-cache-path name="external_cache" path="." />
<files-path name="files" path="." />
<cache-path name="cache" path="。" />
</paths>
<?xml version="1.0" encoding="utf-8"?>
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="300"
android:fromYDelta="100%p"
android:toYDelta="0%p">
</translate>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!--移动到底部退出动画-->
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="300"
android:fromYDelta="0%p"
android:toYDelta="100%p">
</translate>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:duration="400"
android:fromYDelta="0%p"
android:toYDelta="0%p" />
</set>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?><!--
/*
** Copyright 2009, The Android Open Source Project
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
**
** http://www.apache.org/licenses/LICENSE-2.0
**
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*/
-->
<!-- Special window zoom animation: this is the element that enters the screen,
it starts at 200% and scales down. Goes with zoom_exit.xml. -->
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/decelerate_interpolator">
<translate
android:fromXDelta="0%p"
android:fromYDelta="100%p"
android:toXDelta="0%p"
android:toYDelta="0%p" />
</set>
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:duration="200"
android:fromYDelta="0"
android:toYDelta="50%p" />
</set>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?><!--
/*
** Copyright 2009, The Android Open Source Project
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
**
** http://www.apache.org/licenses/LICENSE-2.0
**
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*/
-->
<!-- Special window zoom animation: this is the element that enters the screen,
it starts at 200% and scales down. Goes with zoom_exit.xml. -->
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/decelerate_interpolator">
<translate
android:fromXDelta="0%p"
android:fromYDelta="0%p"
android:toXDelta="0%p"
android:toYDelta="100%p" />
</set>
<?xml version="1.0" encoding="utf-8"?>
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="300"
android:fromXDelta="100%p"
android:toXDelta="0%p">
</translate>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="300"
android:fromXDelta="0%p"
android:toXDelta="100%p">
</translate>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:duration="250"
android:fromXDelta="-100%p"
android:toXDelta="0.0%p" />
</set>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:duration="250"
android:fromXDelta="0.0%p"
android:toXDelta="-100%p" />
</set>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!--
/*
** Copyright 2009, The Android Open Source Project
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
**
** http://www.apache.org/licenses/LICENSE-2.0
**
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*/
-->
<!-- Special window zoom animation: this is the element that enters the screen,
it starts at 200% and scales down. Goes with zoom_exit.xml. -->
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/decelerate_interpolator">
<scale android:fromXScale="2.0" android:toXScale="1.0"
android:fromYScale="2.0" android:toYScale="1.0"
android:pivotX="50%p" android:pivotY="50%p"
android:duration="@android:integer/config_mediumAnimTime" />
</set>
<?xml version="1.0" encoding="utf-8"?>
<!--
/*
** Copyright 2009, The Android Open Source Project
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
**
** http://www.apache.org/licenses/LICENSE-2.0
**
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*/
-->
<!-- Special window zoom animation: this is the element that exits the
screen, it is forced above the entering element and starts at its
normal size (filling the screen) and scales down while fading out.
This goes with zoom_enter.xml. -->
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/decelerate_interpolator"
android:zAdjustment="top">
<scale android:fromXScale="1.0" android:toXScale=".5"
android:fromYScale="1.0" android:toYScale=".5"
android:pivotX="50%p" android:pivotY="50%p"
android:duration="@android:integer/config_mediumAnimTime" />
<alpha android:fromAlpha="1.0" android:toAlpha="0"
android:duration="@android:integer/config_mediumAnimTime"/>
</set>
<?xml version="1.0" encoding="utf-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:drawable="@drawable/progress"
android:pivotX="50%"
android:pivotY="50%"
android:fromDegrees="0"
android:toDegrees="360" />
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:drawable="@drawable/ddg_progress"
android:pivotX="50%"
android:pivotY="50%"
android:fromDegrees="0"
android:toDegrees="360" />
\ No newline at end of file
<vector android:height="24dp" android:viewportHeight="2100"
android:viewportWidth="2100" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#e0dfdd"
android:pathData="M1937,1043c-4,-3 -7,-28 -7,-54 0,-67 -25,-178 -60,-266 -87,-216 -278,-407 -494,-493 -178,-72 -362,-80 -586,-28 -13,3 -63,-129 -56,-147 2,-6 47,-21 99,-33 245,-56 533,-9 758,125 192,114 360,311 435,510 38,102 74,261 74,331l0,62 -78,0c-43,0 -82,-3 -85,-7z" android:strokeColor="#00000000"/>
<path android:fillColor="@color/main_color"
android:pathData="M805,2071c-137,-36 -200,-61 -296,-118 -192,-114 -360,-311 -435,-510 -99,-264 -99,-522 0,-786 75,-199 243,-396 435,-510 73,-43 208,-104 215,-96 2,2 15,38 28,80l26,76 -67,28c-151,61 -311,197 -405,342 -92,143 -137,297 -137,473 0,241 91,458 263,627 173,169 379,254 618,254 241,0 458,-91 627,-263 149,-153 234,-333 252,-538l6,-75 83,-3 82,-3 0,63c0,70 -36,229 -74,331 -75,200 -243,396 -437,511 -232,138 -529,183 -784,117z" android:strokeColor="#00000000"/>
</vector>
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@mipmap/ic_tab_task_enable" android:state_selected="true" />
<item android:drawable="@mipmap/ic_tab_task_none" />
</selector>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape android:shape="rectangle"
xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#ffffffff" />
<corners android:radius="6dp" />
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="40dp">
<TextView
android:id="@+id/tv_no_more_data"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:text="-仓主,没有更多了-"
android:textSize="12sp" />
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">
<ImageView
android:id="@+id/iv_loading"
android:layout_width="wrap_content"
android:layout_height="50dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"/>
<TextView
android:id="@+id/tv_loading_tip"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="5dp"
android:paddingBottom="5dp"
tools:text="加载"
android:textColor="@color/textColor"
android:textSize="12sp"
app:layout_constraintTop_toBottomOf="@id/iv_loading"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"/>
</LinearLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ProgressBar
android:id="@+id/default_footer_progressbar"
android:layout_width="40dp"
android:layout_height="40dp"
android:padding="10dp"
android:layout_centerInParent="true"
android:visibility="invisible" />
<TextView
android:id="@+id/default_footer_title"
android:gravity="center"
android:padding="10dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:textColor="#777777"
android:text="加载更多" />
</RelativeLayout>
\ No newline at end of file
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="bottom">
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="70dp">
<LinearLayout
android:id="@+id/default_header_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:gravity="center"
android:orientation="vertical">
<TextView
android:id="@+id/default_header_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="下拉刷新"
android:textColor="#777777" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="3dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="上次更新时间:"
android:textColor="#777777"
android:textSize="12sp" />
<TextView
android:id="@+id/default_header_time"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="刚刚"
android:textColor="#777777"
android:textSize="12sp" />
</LinearLayout>
</LinearLayout>
<ImageView
android:id="@+id/default_header_arrow"
android:layout_width="20dp"
android:layout_height="40dp"
android:layout_alignLeft="@id/default_header_text"
android:layout_centerVertical="true"
android:layout_marginLeft="-35dp" />
<ProgressBar
android:id="@+id/default_header_progressbar"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_alignLeft="@id/default_header_text"
android:layout_centerVertical="true"
android:layout_marginLeft="-40dp"
android:visibility="invisible"
tools:visibility="visible" />
</RelativeLayout>
</LinearLayout>
\ No newline at end of file
......@@ -7,10 +7,10 @@
android:icon="@drawable/menu_main"
android:title="@string/bottom_name_home" />
<!-- <item-->
<!-- android:id="@+id/menu_square"-->
<!-- android:icon="@drawable/menu_square"-->
<!-- tools:ignore="MenuTitle" />-->
<item
android:id="@+id/menu_square"
android:icon="@drawable/menu_square"
tools:ignore="MenuTitle" />
<item
......
......@@ -12,77 +12,16 @@
<color name="appBackColor">#F8F8F8</color>
<color name="viewLineColor">#EEEEEE</color>
<color name="black">#000000</color>
<color name="translucent">#00000000</color>
<color name="transparent">#00000000</color>
<color name="trans20">#20000000</color>
<color name="trans30">#30000000</color>
<color name="trans40">#40000000</color>
<color name="color_E6E6E6">#E6E6E6</color>
<color name="color_E6E2E2">#E6E2E2</color>
<color name="color_E1E1E1">#E1E1E1</color>
<color name="color_121B32">#121B32</color>
<color name="color_FF9837">#FF9837</color>
<color name="color_50FF9837">#50FF9837</color>
<color name="color_3D5AFE">#3D5AFE</color>
<color name="color_cb4a39">#cb4a39</color>
<color name="color_0000FF">#0000FF</color>
<color name="color_ccc">#cccccc</color>
<color name="color_AAA">#AAAAAA</color>
<color name="color_0000">#00000000</color>
<color name="color_20000000">#20000000</color>
<color name="color_60000000">#60000000</color>
<color name="color_50000000">#50000000</color>
<color name="color_2B3238">#2B3238</color>
<color name="color_002444">#002444</color>
<color name="color_600c224b">#600c224b</color>
<color name="color_fcf16e">#fcf16e</color>
<color name="color_F18542">#F18542</color>
<color name="color_FEEBC8">#FEEBC8</color>
<color name="color_63A0B9">#63A0B9</color>
<color name="color_7EE2FF">#7EE2FF</color>
<color name="color_255186">#255186</color>
<color name="color_A7BCFE">#A7BCFE</color>
<color name="color_666">#666666</color>
<color name="color_454A69">#454A69</color>
<color name="color_333">#333333</color>
<color name="color_4BB93F">#4BB93F</color>
<color name="color_556A97">#556A97</color>
<color name="color_FEB63D">#FEB63D</color>
<color name="color_FF5E5E">#FF5E5E</color>
<color name="color_172B54">#172B54</color>
<color name="color_707A8D">#707A8D</color>
<color name="color_F9F9F9">#F9F9F9</color>
<color name="color_63677E">#63677E</color>
<color name="color_BEC2CC">#BEC2CC</color>
<color name="color_50E8E8E8">#50E8E8E8</color>
<color name="color_FF2326">#FF2326</color>
<color name="color_93B7D9">#93B7D9</color>
<color name="color_F9FAFB">#F9FAFB</color>
<color name="color_F8F8F8">#F8F8F8</color>
<color name="color_343C4F">#343C4F</color>
<color name="color_FB560C">#FB560C</color>
<color name="color_EBB20D">#EBB20D</color>
<color name="color_999">#999999</color>
<color name="color_555">#555555</color>
<color name="color_F5F">#F5F5F5</color>
<color name="color_F8F">#F8F8F8</color>
<color name="color_D81B60">#D81B60</color>
<color name="color_00895B">#00895B</color>
<color name="color_8F6D21">#8F6D21</color>
<color name="color_FFDD0C">#FFDD0C</color>
<color name="color_CF7E7E">#CF7E7E</color>
<color name="color_FF4A4A">#FF4A4A</color>
<color name="color_AF6F36">#AF6F36</color>
<color name="color_912C36">#912C36</color>
<color name="color_E72C2B">#E72C2B</color>
<color name="color_FFC7C7">#FFC7C7</color>
<color name="color_FF7C00">#FF7C00</color>
<color name="color_FAF6E8">#FAF6E8</color>
<color name="color_F3E7C5">#F3E7C5</color>
<color name="color_E1B867">#E1B867</color>
<color name="color_FCCCAC">#FCCCAC</color>
<color name="color_994B23">#994B23</color>
<color name="color_F28335">#F28335</color>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="app_margin">15dp</dimen>
<dimen name="card_view_corner_radius">5dp</dimen>
<dimen name="common_title_height">44dp</dimen>
<dimen name="common_setting_item_height">50dp</dimen>
<dimen name="line_height">0.5dp</dimen>
......
<resources>
<string name="app_name">资源</string>
<string name="rmb_tag">¥</string>
<string name="rmb_tag_normal_format">¥%s</string>
<string name="ask">\?</string>
<string name="bottom_name_home">首页</string>
<string name="bottom_name_square">广场</string>
<string name="bottom_name_takephoto">拍照</string>
<string name="bottom_name_task">任务中心</string>
<string name="bottom_name_my">个人中心</string>
<string name="app_sign">61117d7a</string>
<string name="dot">--</string>
<string name="str_logout">退出登录</string>
<string name="str_hot_style">热门特效</string>
<string name="str_agree_register">注册协议</string>
<string name="str_agree_privacy">隐私协议</string>
<string name="str_copyright">Copyright © 2021 Inc..</string>
<string name="str_wx_login">微信登录</string>
<string name="str_other_login">其他登录方式</string>
<string name="str_immediately_login">立即登录</string>
<string name="str_bind_mobile">绑定手机号</string>
<string name="str_sms_code_1">验证码:</string>
<string name="str_phone_num_1">手机号:</string>
<string name="str_input_phone">请输入手机号</string>
<string name="str_input_sms">请输入验证码</string>
<string name="str_send_sms">发送验证码</string>
<string name="str_login_tint">你需要先用微信登录,在【个人中心】-【设置】中绑定手机号码,才能使用手机号登录</string>
<string name="str_invite_friend_get_bonus">邀请好友 奖励现金</string>
<string name="str_invite_friend">邀请亲友</string>
<string name="str_detail_1"><![CDATA[详情 >]]></string>
<string name="str_withdrawal">提现</string>
<string name="str_coin_detail">明细</string>
<string name="str_platform_bonus">平台分红</string>
<string name="str_no_login">未登录</string>
<string name="str_feedback">请留下您的批评、表扬或者建议,我们会虚心听取, 认真改正。(请保持在5-150字内)</string>
<string name="str_submit">提交</string>
<string name="str_immediately_use">立即体验</string>
<string name="str_wechat">微信</string>
<string name="str_jd_loan">京东金融</string>
<string name="str_style_contrast">效果对比</string>
<string name="str_plat_earning">分红收益</string>
<string name="register_name">用户注册协议</string>
<string name="privacy_name">用户隐私协议</string>
<string name="strategy_name">平台攻略</string>
<string name="str_cancel">取消</string>
</resources>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="BaseDialog" parent="@android:style/Theme.Dialog">
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowTitleStyle">@null</item>
<item name="android:colorBackgroundCacheHint">@null</item>
<item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item>
<item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
<item name="android:gravity">center</item>
</style>
<declare-styleable name="RoundAngleImageView">
<attr name="raiv_roundWidth" format="dimension" />
......@@ -27,40 +17,7 @@
</style>-->
<!-- 定义弹框Activity的进入、关闭动画 -->
<style name="AnimInput" parent="@android:style/Animation.Activity">
<item name="android:activityOpenEnterAnimation">@anim/push_bottom_in</item>
<item name="android:activityCloseExitAnimation">@anim/push_top_out</item>
</style>
<style name="BottomDialogAnim">
<item name="android:windowEnterAnimation">@anim/dialog_enter_bottom_2_top</item>
<item name="android:windowExitAnimation">@anim/dialog_exit_top_2_bottom</item>
</style>
<style name="Dialog" parent="@android:style/Theme.Dialog">
<item name="android:windowFrame">@null</item>
<!--边框-->
<item name="android:windowIsFloating">true</item>
<!--是否浮现在activity之上-->
<item name="android:windowIsTranslucent">false</item>
<!--半透明-->
<item name="android:windowNoTitle">true</item>
<!--无标题-->
<item name="android:windowBackground">@android:color/transparent</item>
<!--背景透明-->
<item name="android:backgroundDimEnabled">true</item>
<!--模糊-->
</style>
<style name="PickerAnim" parent="@android:style/Animation">
<item name="android:windowEnterAnimation">@anim/push_bottom_in</item>
<item name="android:windowExitAnimation">@anim/push_bottom_out</item>
</style>
<style name="TabLayoutTextStyle">
<item name="android:textSize">15sp</item>
<item name="android:textStyle">bold</item>
</style>
<style name="TabLayoutFavoriteTextStyle">
<item name="android:textSize">15sp</item>
</style>
<style name="NormalSplash" parent="Theme.AppCompat.NoActionBar">
<item name="android:windowBackground">@drawable/splash_bg</item>
<item name="android:windowNoTitle">true</item>
......@@ -70,13 +27,7 @@
<item name="android:windowIsTranslucent">false</item>
<item name="android:windowAnimationStyle">@null</item>
</style>
<style name="CustomerTransparentTheme" parent="AppTheme.Base">
<!-- 为窗体的Enter和Exit设置动画 -->
<item name="android:windowAnimationStyle">@null</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowBackground">@color/transparent</item>
</style>
<style name="AppTheme.Base" parent="Theme.AppCompat.Light.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
......
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<!--主题色全部填充-->
<corners android:radius="10dp" />
<solid android:color="@color/white"/>
</shape>
\ No newline at end of file
......@@ -3,14 +3,5 @@
<color name="white">#FFFFFF</color>
<color name="black">#000000</color>
<color name="gray">#808080</color>
<color name="yellow">#FFFF00</color>
<color name="green">#008000</color>
<color name="blue">#0000FF</color>
<color name="orange">#FFA500</color>
<array name="in_colors_light">
<item>#4B03A9F4</item>
<item>#3303A9F4</item>
<item>#1903A9F4</item>
</array>
</resources>
......@@ -4,5 +4,4 @@
<item type="id" name="view_status_container" />
<item type="id" name="expandable_text"/>
<item type="id" name="expand_collapse"/>
<item type="id" name="csi_item"/>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:state_pressed="true" android:drawable="@drawable/ssdk_oks_classic_platfrom_cell_back_sel"/>
<item android:drawable="@drawable/ssdk_oks_classic_platfrom_cell_back_nor"/>
</selector>
<?xml version="1.0" encoding="utf-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:fromDegrees="0"
android:pivotX="50%"
android:pivotY="50%"
android:toDegrees="360" >
<shape
android:innerRadiusRatio="3"
android:shape="ring"
android:thicknessRatio="8"
android:useLevel="false" >
<gradient
android:centerColor="#12ff0e"
android:centerX="0.50"
android:centerY="0.50"
android:endColor="#09bb07"
android:startColor="#ffffff"
android:type="sweep"
android:useLevel="false" />
</shape>
</rotate>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array name="smssdk_country_group_a">
<item>Afghanistan,93,46,41220|41230|41240|41250|41201</item>
<item>Albania,355,110,27601|27602|27603|27604</item>
<item>Algeria,213,52,60303|60302|60301</item>
<item>Andorra,376,121,21303</item>
<item>Angola,244,79,63102|63104</item>
<item>Anguilla,1264,199,365840</item>
<item>Antigua and Barbuda,1268,200,338050|344030|344920</item>
<item>Argentina,54,27,722070|72207|72236|722020|72201|72234|72202|722320|722310|722010|722340|722330|722341</item>
<item>Armenia,374,119,28301|28310|28305|28304</item>
<item>Aruba,297,102,36301|36302</item>
<item>Australia,61,33,50507|50506|50519|50590|50572|50571|50530|50501|50512|50511|50503|50502|505060|50538|50516|505061|50526</item>
<item>Austria,43,16,23207|23209|23210|23211|23201|23212|23202|23214|23203|23204|23215|23205|23206</item>
<item>Azerbaijan,994,193,40002|40001|40004</item>
</string-array>
<string-array name="smssdk_country_group_b">
<item>Bahamas,1242,197,364390|36439</item>
<item>Bahrain,973,186,42604|42605|42601|42602</item>
<item>Bangladesh,880,172,47007|47005|47006|47003|47004|47001|47002</item>
<item>Barbados,1246,198,342600</item>
<item>Belarus,375,120,25704|25701|25702</item>
<item>Belgium,32,9,20610|20620|20640|20606|20605|20601</item>
<item>Belize,501,134,70267</item>
<item>Benin,229,64,61605|61601|61602|61603|61604</item>
<item>Bermuda,1441,204,350000</item>
<item>Bhutan,975,188,40211|40277</item>
<item>Bolivia,591,144,73603|73602|73601</item>
<item>Bosnia and Herzegovina,387,129,21890|21805|21803</item>
<item>Botswana,267,99,65202|65201|65204</item>
<item>Brazil,55,28,72416|72405|72439|72406|72403|72415|72437|72404|72434|72423|72402|72432|72410|72433|72400|72411|72430|72431|72407</item>
<item>Brunei,673,154,52811|52802</item>
<item>Bulgaria,359,114,28401|28405|28403</item>
<item>Burkina Faso,226,61,61301|61302|61303</item>
<item>Burundi,257,90,64201|64203|64202|64207|64282</item>
</string-array>
<string-array name="smssdk_country_group_c">
<item>Cambodia,855,170,45602|45601|45608|45618|45609|45604|45603|45606|45605|23455-KH</item>
<item>Cameroon,237,72,62401|62402|62404</item>
<item>Canada,1,1,302657|302656|302710|302655|302500|302610|302720|302702|302270|302490|302880|302220|302680|302360|302690|302510|302653|302861|302222|302640|302651|302530|302221|302320</item>
<item>Cape Verde,238,73,62501|62502</item>
<item>Cayman Islands,1345,203,346140</item>
<item>Central African Republic,236,71,62301|62302|62303|62304</item>
<item>Chad,235,70,62201|62203</item>
<item>Chile,56,29,73008|73006|73004|73002|73013|73003|73014|73011|73012|73001</item>
<item>China,86,42,46006|46007|46005|46002|46003|46000|46001</item>
<item>Colombia,57,30,732130|732020|732154|732111|732123|732101</item>
<item>Comoros,269,101,65401</item>
<item>Cook Islands,682,161,54801</item>
<item>Costa Rica,506,139,71204|71203|71201</item>
<item>Croatia,385,127,21902|21901|21912|21910</item>
<item>Cuba,53,26,36801</item>
<item>Cyprus,357,112,28022|28001|28020|28010</item>
<item>Czech Republic,420,131,23001|23002|23003|23004|23005|23008</item>
</string-array>
<string-array name="smssdk_country_group_d">
<item>Democratic Republic of the Congo,243,78,63086|63001|63089|63002|63005</item>
<item>Denmark,45,19,23801|23812|23802|23813|23803|23806|23828|23807|23808|23830|23820|23810|23866|23877</item>
<item>Djibouti,253,86,63801</item>
<item>Dominica,1767,210,366110</item>
<item>Dominican Republic,1809,213,37001|37002|37003|37004</item>
</string-array>
<string-array name="smssdk_country_group_e">
<item>East Timor,670,153,51401|51402</item>
<item>Ecuador,593,146,74002|74001|74000</item>
<item>Egypt,20,5,60203|60202|60201</item>
<item>El Salvador,503,136,70602|70601|70604|70603|70605</item>
<item>Equatorial Guinea,240,75,62701|62703</item>
<item>Estonia,372,117,24803|24802|24801</item>
<item>Ethiopia,251,84,63601</item>
</string-array>
<string-array name="smssdk_country_group_f">
<item>Faroe Islands,298,103,28801|28802|28803</item>
<item>Fiji,679,159,54202|54201</item>
<item>Finland,358,113,24409|24432|24410|24421|24412|24411|24414|24403|24413|24405|24426|24404|24491</item>
<item>France,33,10,20816|20804|20826|20815|20825|20813|20802|20823|20801|20811|20822|20888|20810|20821|20831|20820|20809|20808|20817</item>
<item>French Guiana,594,147,74201|74220</item>
<item>French Polynesia,689,165,54720</item>
</string-array>
<string-array name="smssdk_country_group_g">
<item>Gabon,241,76,62804|62801|62802|62803</item>
<item>Gambia,220,55,60702|60701|60704|60703</item>
<item>Georgia,995,194,28202|28201|28204|28205</item>
<item>Germany,49,23,26203|26202|26205|26216|26204|26207|26217|26206|26209|26208|26243|26276|26220|26242|26212|26201|26211|26277</item>
<item>Ghana,233,68,62001|62002|62003|62004|62006|62007</item>
<item>Gibraltar,350,105,26606|26609|26601</item>
<item>Greece,30,7,20203|20202|20201|20210|20209|20207|20205</item>
<item>Greenland,299,104,29001</item>
<item>Grenada,1473,205,352110</item>
<item>Guadeloupe,590,143,34008|34003|34002|34001|34020</item>
<item>Guam,1671,208,310400|310140|310470|310110</item>
<item>Guatemala,502,135,70402|70401|70403</item>
<item>Guinea,224,59,61105|61104|61103|61102|61101</item>
<item>Guinea-Bissau,245,80,63202|63203</item>
<item>Guyana,592,145,73802|73801</item>
</string-array>
<string-array name="smssdk_country_group_h">
<item>Haiti,509,142,37201|37202</item>
<item>Honduras,504,137,70830|70840|70802|70801</item>
<item>Hong Kong,852,168,45413|45412|45401|45404|45403|45414|45400|45411|45409|45406|45405|45416|45408|45419|45429|45407</item>
<item>Hungary,36,12,21630|21670|21601</item>
</string-array>
<string-array name="smssdk_country_group_i">
<item>Iceland,354,109,27409|27411|27404|27401|27402|27407</item>
<item>India,91,44,405893|405892|405895|405894|405897|405896|405899|405898|40501|40506|40505|405891|405890|40503|405889|405882|405881|405883|405886|405885|405888|405887|405880|405879|405878|405871|405750|405870|405873|405752|405872|405751|405875|405754|405874|405753|405877|405756|405876|405755|405868|405867|405869|405860|405862|405861|405864|405863|405866|405865|405856|405859|405858|40494|40493|40492|40491|40498|40497|40496|40495|40490|40483|40482|40481|40480|40487|40486|40485|405799|40484|40489|40488|40472|40471|40470|40476|40475|40474|40473|40479|40478|40477|40460|405930|405811|40462|405810|405931|40469|40468|40467|40466|405809|405802|405923|405801|405922|405804|405925|405803|405924|405806|405927|405805|405926|405808|405929|405807|405928|40450|40570|40454|40453|40452|405800|405921|40451|405920|40458|40457|40456|40455|40459|405919|405912|405914|405913|405916|405915|405918|405917|40443|40442|40441|40567|40446|40566|40449|405901|405900|405903|405902|405905|405904|405907|405906|40553|40552|40431|40551|40430|40436|40556|40435|40555|40434|40554|40433|40438|40437|405851|405850|40421|405853|40420|405852|405855|405854|40425|40424|40422|40429|40428|40427|40419|405846|405845|405848|405847|405849|405046|405045|405840|405047|40410|405842|405841|405843|40413|40412|405040|40411|40418|405042|40417|405041|40416|405044|40415|405043|40409|405835|405834|405837|405836|405839|405838|405035|405034|405037|405036|40520|405039|405831|405038|405830|405833|405832|40524|40403|40402|40523|40522|40401|40521|40400|40407|405031|40406|405030|40405|405033|40404|405032|40519|40518|405824|405823|405825|405828|405827|405829|405026|405025|405820|405027|405822|405029|405821|40513|40512|40511|40510|40517|40515|40514|40509|40508|40507|405813|405812|405815|405814|405817|405816|405819|405818</item>
<item>Indonesia,62,34,51010|51021|51089|51001|51011|51027|51007|51028|51009|51008</item>
<item>Iran,98,49,43235|43214|43220|43200|43211|43219</item>
<item>Iraq,964,178,41805|41840|41820|41830|41845</item>
<item>Ireland,353,108,27201|27213|27202|27211|27205|27203|27209</item>
<item>Israel,972,185,42577|42516|42505|42506|42507|RESTRICTED-IL|42519|42508|42501|42512|42523|42502|42503|42514|42515</item>
<item>Italy,39,13,22206|22207|22208|22210|22243|22288|22244|22299|22233|22201|22235|22204|22248|22205|22230</item>
<item>Ivory Coast,225,60,61205|61204|61203|61202</item>
</string-array>
<string-array name="smssdk_country_group_j">
<item>Jamaica,1876,216,338180|338020|338110</item>
<item>Japan,81,39,44027|44026|44029|44028|44023|44144|44022|44143|44025|44024|44145|44140|44021|44142|44141|44020|44016|44015|44018|44017|44012|44011|44099|44014|44013|44019|44090|44096|44095|44010|44098|44097|44092|44091|44094|44093|44004|44007|44006|44001|44089|44000|44088|44003|44002|44009|44008|44087|44199|44078|44198|44077|44079|44074|44194|44073|44076|44075|44191|44070|44190|44193|44072|44192|44071|44067|44066|44069|44068|44063|44062|44065|44064|44061|44060|44056|44055|44058|44052|44051|44054|44053|44050|44170|44049|44048|44045|44044|44165|44047|44046|44041|44162|44040|44161|44043|44164|44042|44163|44038|44037|44039|44034|44033|44036|44035|44030|44032|44031</item>
<item>Jersey,44,17,</item>
<item>Jordan,962,176,41601|41677|41603</item>
</string-array>
<string-array name="smssdk_country_group_k">
<item>Kazakhstan,7,4,40102|40101|40177|40108|40107</item>
<item>Kenya,254,87,63905|63907|63903|63902</item>
<item>Kiribati,686,163,54509</item>
<item>Kuwait,965,179,41904|41903|41902</item>
<item>Kyrgyzstan,996,195,43705|43701</item>
</string-array>
<string-array name="smssdk_country_group_l">
<item>Laos,856,171,45701|45708|45703|45702</item>
<item>Latvia,371,116,24703|24706|24705|24708|24707|24709|24702|24701</item>
<item>Lebanon,961,175,41503|41501</item>
<item>Lesotho,266,98,65101|65102</item>
<item>Liberia,231,66,61804|61807|61801|61802</item>
<item>Libya,218,54,60603|60601|60600</item>
<item>Liechtenstein,423,133,29501|29577|29505|29502</item>
<item>Lithuania,370,115,24601|24603|24602</item>
<item>Luxembourg,352,107,27099|27077|27001</item>
</string-array>
<string-array name="smssdk_country_group_m">
<item>Macau,853,169,45501|45500|45503|45502|45505|45504</item>
<item>Macedonia,389,130,29402|29401|29403</item>
<item>Madagascar,261,93,64601|64602|64604</item>
<item>Malawi,265,97,65010|65001</item>
<item>Malaysia,60,32,50220|50211|50213|502150|50212|502151|502152|50217|50216|50219|50218</item>
<item>Maldives,960,174,47201|47202</item>
<item>Mali,223,58,61002|61001</item>
<item>Malta,356,111,27821|27877|27801</item>
<item>Martinique,596,149,34003|34002|34001|34020</item>
<item>Mauritania,222,57,60910|60902</item>
<item>Mauritius,230,65,61710|61701|61702</item>
<item>Mexico,52,25,33402|33403|33401|33450|33406|334090|33404|33405</item>
<item>Micronesia,691,166,55001</item>
<item>Moldova,373,118,25903|25902|25904|25901</item>
<item>Monaco,377,122,21201</item>
<item>Mongolia,976,189,42898|42888|42899|42801</item>
<item>Montenegro,382,126,29703|29702|29701</item>
<item>Montserrat,1664,207,354860</item>
<item>Morocco,212,51,60405|60402|60401|60400</item>
<item>Mozambique,258,91,64301|64304|64303</item>
<item>Myanmar,95,48,41401|41406|41405</item>
</string-array>
<string-array name="smssdk_country_group_n">
<item>Namibia,264,96,64902|64901|64903</item>
<item>Nepal,977,190,42901|42902</item>
<item>Netherlands,31,8,20423|20412|20410|20465|20420|20462|20409|20408|20407|20418|20406|20417|20428|20416|20405|20415|20404|20414|20469|20403|20468|20424|20402</item>
<item>Netherlands Antilles,599,152,36269|36202|36201|36251|36294|36282|36281</item>
<item>New Caledonia,687,164,54601</item>
<item>New Zealand,64,36,53001|53004|53005|53024|53002|53006</item>
<item>Nicaragua,505,138,71021|71030</item>
<item>Niger,227,62,61401|61402|61403|61404</item>
<item>Nigeria,234,69,62150|62140|62130|62120|62125|23455-NG|62160</item>
<item>North Korea,850,167,46703</item>
<item>Norway,47,21,24208|24209|24220|24221|24222|24201|24223|24202|24224|24204|24205|24206</item>
</string-array>
<string-array name="smssdk_country_group_o">
<item>Oman,968,182,42202|42203</item>
</string-array>
<string-array name="smssdk_country_group_p">
<item>Pakistan,92,45,</item>
<item>Palau,680,160,55201|55280</item>
<item>Palestinian Territory,970,183,42506-PS|42505-PS</item>
<item>Panama,507,140,71404|71402|71403|71401</item>
<item>Papua New Guinea,675,155,53701|53702|53703</item>
<item>Paraguay,595,148,74404|74403|74402|74401</item>
<item>Peru,51,24,71610|71606|71617|71607|71615</item>
<item>Philippines,63,35,51518|51502|51501|51503|51505</item>
<item>Poland,48,22,26016|26038|26004|26018|26017|26006|26009|26019|26008|26010|26032|26001|26034|26012|26011|26003|26036|26014|26002|26013|26035</item>
<item>Portugal,351,106,26804|26806|26801|26803</item>
<item>Puerto Rico,1787,212,310970</item>
</string-array>
<string-array name="smssdk_country_group_q">
<item>Qatar,974,187,42701|42702</item>
</string-array>
<string-array name="smssdk_country_group_r">
<item>Republic Of The Congo,242,77,62907|62910|62901</item>
<item>Réunion Island,262,94,64710|64702</item>
<item>Romania,40,14,22603|22604|22605|22610|22601</item>
<item>Russia,7,3,25020|25099|25035|25002|25012|25001|25003|25039|25005|25007</item>
<item>Rwanda,250,83,63510|63512|63513|63514</item>
</string-array>
<string-array name="smssdk_country_group_s">
<item>Saint Kitts and Nevis,1869,215,356110|356070</item>
<item>Saint Lucia,1758,209,358110</item>
<item>Saint Pierre and Miquelon,508,141,30801</item>
<item>Saint Vincent and The Grenadines,1784,211,360110</item>
<item>Samoa,685,162,54900</item>
<item>San Marino,378,123,29201</item>
<item>Sao Tome and Principe,239,74,62601</item>
<item>Saudi Arabia,966,180,42003|42004|42001|42006</item>
<item>Senegal,221,56,60801|60803|60802</item>
<item>Serbia,381,125,29341|22001|22003|22005</item>
<item>Seychelles,248,81,63310|63301|63302</item>
<item>Sierra Leone,232,67,61902|61903|61904|61905|61906|61909|61901</item>
<item>Singapore,65,37,52502|52503|52512|52501|52505</item>
<item>Slovakia,421,132,23199|23101|23102|23106</item>
<item>Slovenia,386,128,29364|29341|29340|29370</item>
<item>Solomon Islands,677,157,54010</item>
<item>Somalia,252,85,63782|63760|63730|63701|63725|63704</item>
<item>South Africa,27,6,65510|65512|65501|65502|65507|65519</item>
<item>South Korea,82,40,45006|45005|45008|45002|45004</item>
<item>South Sudan,211,50,65995</item>
<item>Spain,34,11,21402|21401|21423|21411|21422|21410|21421|21432|21420|21409|21408|21419|21407|21418|21417|21406|21405|21427|21416|21404|21415|21425|21403</item>
<item>Sri Lanka,94,47,41301|41305|41302|41308</item>
<item>Sudan,249,82,63401|63402|63407</item>
<item>Suriname,597,150,74604|74603|74602</item>
<item>Swaziland,268,100,65310|65301</item>
<item>Sweden,46,20,24035|24013|24036|24014|24037|24015|24038|24016|24039|24017|24018|24019|24030|24031|24010|24032|24033|24012|24034|24002|24003|24026|24027|24028|24006|24029|24007|24008|24040|24020|24043|24022|24000|24044|24023|24001|24045</item>
<item>Switzerland,41,15,22812|22801|22802|22803|22805|22809|22851|22853|22854</item>
<item>Syria,963,177,41701|41702</item>
</string-array>
<string-array name="smssdk_country_group_t">
<item>Taiwan,886,173,46602|46668|46603|46688|46699|46601|46689|46656|46697|46610|46609|46606|46607|46605|46693|46692</item>
<item>Tajikistan,992,191,43605|43601|43602|43603|43604</item>
<item>Tanzania,255,88,64011|64003|64002|64005|64004|64007|64006|64009|64008</item>
<item>Thailand,66,38,52000|52099|52020|52003|52004|52015|52001|52023|52002|52018|52005</item>
<item>Togo,228,63,61501|61503</item>
<item>Tonga,676,156,53901</item>
<item>Trinidad and Tobago,1868,214,374130|37412</item>
<item>Tunisia,216,53,60503|60502|60501</item>
<item>Turkey,90,43,28602|28603|28601|28604</item>
<item>Turkmenistan,993,192,43801|43802</item>
<item>Turks and Caicos Islands,1649,206,376352|376350</item>
</string-array>
<string-array name="smssdk_country_group_u">
<item>Uganda,256,89,64111|64133|64166|64122|64110|64101|64114</item>
<item>Ukraine,380,124,25507|25506|25521|25501|25503|25502|25505|25504</item>
<item>United Arab Emirates,971,184,42402|42403</item>
<item>United Kingdom,44,18,23427|23428|23407|23409|23420|23400|23401|23423|23500|23424|23402|23403|23425|23426|23416|23417|23418|23419|23430|23431|23476|23410|23433|23455|23411|23478|23434|23458|23414|23415|23450|23451</item>
<item>United States,1,2,311090|310080|311050|311370|310160|31150|311010|310680|310120|310560|311650|310880|310760|31190|310320|310630|310710|310090|310290|316993|310170|310050|31060|311580|310690|311020|311340|310570|311660|310450|310011|310770|316995|310012|316994|311730|310004|311610|310840|310005|310600|31100|311190|310180|31050|310060|316883|311150|310380|311030|310260|311230|310020|310340|311991|311430|316885|310660|310100|316884|310540|310023|310980|311740|310410|31016|310610|310016|31130|31011|31611|310190|311040|316011|310150|310790|310990|310870|310420|310300|310740|311710</item>
<item>Uruguay,598,151,74803|74802|74801|74800|74810|74807</item>
<item>Uzbekistan,998,196,43401|43402|43407|43403|43404|43405|43406</item>
</string-array>
<string-array name="smssdk_country_group_v">
<item>Vanuatu,678,158,54101|54105</item>
<item>Venezuela,58,31,73406|73404|73401</item>
<item>Vietnam,84,41,45204|45205|45202|45201|45207</item>
<item>Virgin Islands, British,1340,202,348570|348170</item>
<item>Virgin Islands, US,1284,201,311470</item>
</string-array>
<string-array name="smssdk_country_group_w">
</string-array>
<string-array name="smssdk_country_group_x">
</string-array>
<string-array name="smssdk_country_group_y">
<item>Yemen,967,181,42101|42102|42103</item>
</string-array>
<string-array name="smssdk_country_group_z">
<item>Zambia,260,92,64502|64501|64503</item>
<item>Zimbabwe,263,95,64801|64803|64804</item>
</string-array>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="ssdk_oks_share">Share</string>
<string name="ssdk_oks_sharing">Sharing operation is working in the background…</string>
<string name="ssdk_oks_share_failed">Operation failed</string>
<string name="ssdk_oks_share_completed">Operation succeeded</string>
<string name="ssdk_oks_share_canceled">Operation canceled</string>
<string name="ssdk_oks_cancel">Cancel</string>
<string name="ssdk_oks_multi_share">Photo Sharing</string>
<string name="ssdk_oks_confirm">Confirm</string>
<string name="ssdk_oks_contacts">Contacts</string>
<string name="ssdk_oks_pull_to_refresh">Pull down to refresh</string>
<string name="ssdk_oks_release_to_refresh">Release to refresh</string>
<string name="ssdk_oks_refreshing">Refreshing…</string>
</resources>
<resources></resources>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="ssdk_weibo_oauth_regiseter">Authorization</string>
<string name="ssdk_website">http://www.mob.com</string>
<string name="ssdk_weibo_upload_content">分享图片</string>
<string name="ssdk_wechat_client_inavailable">Wechat client not exists or the version is too low</string>
<string name="ssdk_google_plus_client_inavailable">Google+ client not exists or the version is too low</string>
<string name="ssdk_qq_client_inavailable">Mobile QQ client not exists or the version is too low</string>
<string name="ssdk_pinterest_client_inavailable">Pinterest client not exists or the version is too low</string>
<string name="ssdk_instagram_client_inavailable">Instagram client not exists or the version is too low</string>
<string name="ssdk_yixin_client_inavailable">Yixin client not exists or the version is too low</string>
<string name="ssdk_line_client_inavailable">Line client not exists or the version is too low</string>
<string name="ssdk_kakaotalk_client_inavailable">KakaoTalk client not exists or the version is too low</string>
<string name="ssdk_kakaostory_client_inavailable">KakaoStory client not exists or the version is too low</string>
<string name="ssdk_whatsapp_client_inavailable">WhatsApp client not exists or the version is too low</string>
<string name="ssdk_laiwang_client_inavailable">Laiwangs client not exists or the version is too low</string>
<string name="ssdk_alipay_client_inavailable">Alipay client not exists or the version is too low</string>
<string name="ssdk_facebookmessenger_client_inavailable">Facebookmessenger client not exists or the version is too low</string>
<string name="ssdk_telegram_client_inavailable">Telegram client not exists or the version is too low</string>
<string name="ssdk_sinaweibo">Sina Weibo</string>
<string name="ssdk_tencentweibo">Tencent Weibo</string>
<string name="ssdk_qzone">QZone</string>
<string name="ssdk_wechat">WeChat</string>
<string name="ssdk_wechatmoments">WeChat Moments</string>
<string name="ssdk_wechatfavorite">WeChat Favorites</string>
<string name="ssdk_facebook">Facebook</string>
<string name="ssdk_twitter">Twitter</string>
<string name="ssdk_renren">Renren</string>
<string name="ssdk_kaixin">Kaixin</string>
<string name="ssdk_email">Email</string>
<string name="ssdk_shortmessage">Short Message</string>
<string name="ssdk_sohumicroblog">Sohu Microblog</string>
<string name="ssdk_neteasemicroblog">Netease Microblog</string>
<string name="ssdk_douban">Douban</string>
<string name="ssdk_youdao">Youdao</string>
<string name="ssdk_evernote">Evernote</string>
<string name="ssdk_linkedin">Linked in</string>
<string name="ssdk_googleplus">Google+</string>
<string name="ssdk_foursquare">FourSquare</string>
<string name="ssdk_qq">QQ</string>
<string name="ssdk_sohusuishenkan">Sohu Suishenkan</string>
<string name="ssdk_pinterest">Pinterest</string>
<string name="ssdk_flickr">Flickr</string>
<string name="ssdk_tumblr">Tumblr</string>
<string name="ssdk_dropbox">Dropbox</string>
<string name="ssdk_vkontakte">VK</string>
<string name="ssdk_instagram">Instagram</string>
<string name="ssdk_yixin">Yixin</string>
<string name="ssdk_yixinmoments">Yixin Moments</string>
<string name="ssdk_mingdao">Mingdao</string>
<string name="ssdk_kakaotalk">KakaoTalk</string>
<string name="ssdk_kakaostory">KakaoStory</string>
<string name="ssdk_line">Line</string>
<string name="ssdk_bluetooth">Bluetooth</string>
<string name="ssdk_whatsapp">WhatsApp</string>
<string name="ssdk_pocket">Pocket</string>
<string name="ssdk_instapaper">Instapaper</string>
<string name="ssdk_instapaper_email">Email</string>
<string name="ssdk_instapaper_pwd">Password</string>
<string name="ssdk_instapaper_login">Sign In</string>
<string name="ssdk_instapaper_logining">Sign In…</string>
<string name="ssdk_instapager_email_or_password_incorrect">Email or Password incorrect</string>
<string name="ssdk_facebookmessenger">Facebook Messenger</string>
<string name="ssdk_laiwang">Laiwang</string>
<string name="ssdk_laiwangmoments">Laiwang Moments</string>
<string name="ssdk_alipay">Alipay</string>
<string name="ssdk_alipaymoments">Alipay Moments</string>
<string name="ssdk_plurk">Plurk</string>
<string name="ssdk_dingding">Dingding</string>
<string name="ssdk_meipai">Meipai</string>
<string name="ssdk_youtube">Youtube</string>
<string name="ssdk_telegram">Telegram</string>
<string name="ssdk_share_to_qzone">Share To QZone</string>
<string name="ssdk_share_to_qq">Share To QQ</string>
<string name="ssdk_share_to_googleplus">Share To Google+</string>
<string name="ssdk_share_to_facebook">Share To Facebook</string>
<string name="ssdk_mingdao_share_content">Share webpage</string>
<string name="ssdk_share_to_mingdao">Share To Mingdao</string>
<string name="ssdk_share_to_qzone_default">Shared from %s</string>
<string name="ssdk_share_to_youtube">Share To Youtube</string>
<string name="ssdk_use_login_button">use login button instead</string>
<string name="ssdk_dont_keep_activitys_client">Please turn off settings developers options don t keeps Activitys</string>
<!--sina web -->
<string name="ssdk_gender_male">Male</string>
<string name="ssdk_gender_female">Female</string>
<string name="ssdk_symbol_ellipsis">...</string>
<!--sms login-->
<!--sina web -->
<string name="ssdk_sina_web_close">Close</string>
<string name="ssdk_sina_web_net_error">A network error occurs, please tap the button to reload</string>
<string name="ssdk_sina_web_refresh">channel_data_error</string>
<string name="ssdk_sina_web_title">Weibo Share</string>
<string name="ssdk_sina_web_login_title">Weibo Login</string>
<!--sms login-->
<string name="ssdk_sms_login">Message Login</string>
<string name="ssdk_sms_top_text">Please input your phone number</string>
<string name="ssdk_sms_top_identify_text">Please input the verification code</string>
<string name="ssdk_sms_btn_next">Next</string>
<string name="ssdk_sms_btn_submit">Submit</string>
<string name="ssdk_sms_btn_sende_voice">Send voice code</string>
<string name="ssdk_sms_zone">Country</string>
<string name="ssdk_sms_china">China</string>
<string name="ssdk_sms_phone">Phone NO.</string>
<string name="ssdk_sms_code">Code</string>
<string name="ssdk_sms_send_again">Send again</string>
<string name="ssdk_sms_input_phone_hint">Input phone number</string>
<string name="ssdk_sms_input_code_hint">Input Verification Code</string>
<string name="ssdk_sms_input_voice_code"><Data>Can not be received? Please try the&lt;font color=#2ba245>voice verification code&lt;/font></Data></string>
<string name="ssdk_sms_dialog_btn_cancel">Cancel</string>
<string name="ssdk_sms_dialog_btn_ok">OK</string>
<string name="ssdk_sms_dialog_btn_wait">Wait</string>
<string name="ssdk_sms_dialog_btn_back">Back</string>
<string name="ssdk_sms_dialog_btn_sure">I konw</string>
<string name="ssdk_sms_dialog_btn_login">Confirm landing</string>
<string name="ssdk_sms_dialog_confirm_title">Confirm phone number</string>
<string name="ssdk_sms_dialog_confirm_des">We will send verification code to this phone number:\n</string>
<string name="ssdk_sms_dialog_error_title">Phone number error</string>
<string name="ssdk_sms_dialog_error_des">Is an invalid phone number</string>
<string name="ssdk_sms_dialog_close_identify_page">Verification code may be slightly delayed,confirm return\nand start over?</string>
<string name="ssdk_sms_dialog_error_code">Verification code Incorrect,Please re-enter</string>
<string name="ssdk_sms_dialog_voice_text">We will inform you of the verification code by telephone,\nPlease attention to answer</string>
<string name="ssdk_sms_dialog_send_success">Send success</string>
<string name="ssdk_sms_dialog_login_success">Login success</string>
<string name="ssdk_sms_dialog_smart_title">Congratulations!The phone number has been checked by cloud detection</string>
<string name="ssdk_sms_dialog_smart_dec">Your equipment is a safety device,The number has passed the intelligent\ncloud detection,sms authentication is not required\n(This verification process does not have any security risks)</string>
<string name="ssdk_sms_choose_country">Choose country</string>
<string name="ssdk_sms_country_search">Search</string>
<string name="ssdk_sms_dialog_net_error">Network error, please try later</string>
<string name="ssdk_sms_dialog_system_error">There is a minor problem with the system,Please try again later</string>
<string name="ssdk_sms_dialog_error_desc_100">Server error</string>
<string name="ssdk_sms_dialog_error_desc_101">No permission request</string>
<string name="ssdk_sms_dialog_error_desc_102">Failed to decrypt data</string>
<string name="ssdk_sms_dialog_error_desc_103">The requested argument list is missing the necessary data</string>
<string name="ssdk_sms_dialog_error_desc_104">Request data illegal</string>
<string name="ssdk_sms_dialog_error_desc_105">Verification code error</string>
<string name="ssdk_sms_dialog_error_desc_106">Failed to request the send authentication code</string>
<string name="ssdk_sms_dialog_error_desc_107">Sending text message to the phone number \nalready hit its limit, Please try again tomorrow</string>
<string name="ssdk_sms_dialog_error_desc_108">Sending text message to the device \nalready hit its limit, Please try again tomorrow</string>
<string name="ssdk_sms_dialog_error_desc_109">Sending validation code too frequently</string>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array name="smssdk_country_group_a">
<item>阿尔巴尼亚,355,110,27601|27602|27603|27604</item>
<item>阿尔及利亚,213,52,60303|60302|60301</item>
<item>阿富汗,93,46,41220|41230|41240|41250|41201</item>
<item>阿根廷,54,27,722070|72207|72236|722020|72201|72234|72202|722320|722310|722010|722340|722330|722341</item>
<item>阿拉伯联合酋长国,971,184,42402|42403</item>
<item>阿鲁巴岛,297,102,36301|36302</item>
<item>阿曼,968,182,42202|42203</item>
<item>阿塞拜疆,994,193,40002|40001|40004</item>
<item>埃及,20,5,60203|60202|60201</item>
<item>埃塞俄比亚,251,84,63601</item>
<item>爱尔兰,353,108,27201|27213|27202|27211|27205|27203|27209</item>
<item>爱沙尼亚,372,117,24803|24802|24801</item>
<item>安道尔,376,121,21303</item>
<item>安哥拉,244,79,63102|63104</item>
<item>安圭拉岛,1264,199,365840</item>
<item>安提瓜和巴布达,1268,200,338050|344030|344920</item>
<item>奥地利,43,16,23207|23209|23210|23211|23201|23212|23202|23214|23203|23204|23215|23205|23206</item>
<item>澳大利亚,61,33,50507|50506|50519|50590|50572|50571|50530|50501|50512|50511|50503|50502|505060|50538|50516|505061|50526</item>
<item>澳门,853,169,45501|45500|45503|45502|45505|45504</item>
</string-array>
<string-array name="smssdk_country_group_b">
<item>巴巴多斯,1246,198,342600</item>
<item>巴布亚新几内亚,675,155,53701|53702|53703</item>
<item>巴哈马群岛,1242,197,364390|36439</item>
<item>巴基斯坦,92,45,</item>
<item>巴拉圭,595,148,74404|74403|74402|74401</item>
<item>巴勒斯坦领土,970,183,42506-PS|42505-PS</item>
<item>巴林,973,186,42604|42605|42601|42602</item>
<item>巴拿马,507,140,71404|71402|71403|71401</item>
<item>巴西,55,28,72416|72405|72439|72406|72403|72415|72437|72404|72434|72423|72402|72432|72410|72433|72400|72411|72430|72431|72407</item>
<item>白俄罗斯,375,120,25704|25701|25702</item>
<item>百慕大群岛,1441,204,350000</item>
<item>保加利亚,359,114,28401|28405|28403</item>
<item>贝宁,229,64,61605|61601|61602|61603|61604</item>
<item>比利时,32,9,20610|20620|20640|20606|20605|20601</item>
<item>冰岛,354,109,27409|27411|27404|27401|27402|27407</item>
<item>波多黎各,1787,212,310970</item>
<item>波兰,48,22,26016|26038|26004|26018|26017|26006|26009|26019|26008|26010|26032|26001|26034|26012|26011|26003|26036|26014|26002|26013|26035</item>
<item>波利尼西亚(法属),689,165,54720</item>
<item>波斯尼亚和黑塞哥维那,387,129,21890|21805|21803</item>
<item>玻利维亚,591,144,73603|73602|73601</item>
<item>伯利兹,501,134,70267</item>
<item>博茨瓦纳,267,99,65202|65201|65204</item>
<item>不丹,975,188,40211|40277</item>
<item>布基纳法索,226,61,61301|61302|61303</item>
<item>布隆迪,257,90,64201|64203|64202|64207|64282</item>
</string-array>
<string-array name="smssdk_country_group_c">
<item>朝鲜,850,167,46703</item>
<item>赤道几内亚,240,75,62701|62703</item>
</string-array>
<string-array name="smssdk_country_group_d">
<item>丹麦,45,19,23801|23812|23802|23813|23803|23806|23828|23807|23808|23830|23820|23810|23866|23877</item>
<item>德国,49,23,26203|26202|26205|26216|26204|26207|26217|26206|26209|26208|26243|26276|26220|26242|26212|26201|26211|26277</item>
<item>东帝汶,670,153,51401|51402</item>
<item>多哥,228,63,61501|61503</item>
<item>多米尼加共和国,1809,213,37001|37002|37003|37004</item>
<item>多米尼克,1767,210,366110</item>
</string-array>
<string-array name="smssdk_country_group_e">
<item>俄罗斯,7,3,25020|25099|25035|25002|25012|25001|25003|25039|25005|25007</item>
<item>厄瓜多尔,593,146,74002|74001|74000</item>
</string-array>
<string-array name="smssdk_country_group_f">
<item>法国,33,10,20816|20804|20826|20815|20825|20813|20802|20823|20801|20811|20822|20888|20810|20821|20831|20820|20809|20808|20817</item>
<item>法罗群岛,298,103,28801|28802|28803</item>
<item>菲律宾,63,35,51518|51502|51501|51503|51505</item>
<item>斐济,679,159,54202|54201</item>
<item>芬兰,358,113,24409|24432|24410|24421|24412|24411|24414|24403|24413|24405|24426|24404|24491</item>
<item>佛得角,238,73,62501|62502</item>
</string-array>
<string-array name="smssdk_country_group_g">
<item>冈比亚,220,55,60702|60701|60704|60703</item>
<item>刚果共和国,242,77,62907|62910|62901</item>
<item>刚果民主共和国,243,78,63086|63001|63089|63002|63005</item>
<item>哥伦比亚,57,30,732130|732020|732154|732111|732123|732101</item>
<item>哥斯达黎加,506,139,71204|71203|71201</item>
<item>格林纳达,1473,205,352110</item>
<item>格陵兰岛,299,104,29001</item>
<item>格鲁吉亚,995,194,28202|28201|28204|28205</item>
<item>古巴,53,26,36801</item>
<item>瓜德罗普岛,590,143,34008|34003|34002|34001|34020</item>
<item>关岛,1671,208,310400|310140|310470|310110</item>
<item>圭亚那,592,145,73802|73801</item>
<item>圭亚那(法属),594,147,74201|74220</item>
</string-array>
<string-array name="smssdk_country_group_h">
<item>哈萨克斯坦,7,4,40102|40101|40177|40108|40107</item>
<item>海地,509,142,37201|37202</item>
<item>韩国,82,40,45006|45005|45008|45002|45004</item>
<item>荷兰,31,8,20423|20412|20410|20465|20420|20462|20409|20408|20407|20418|20406|20417|20428|20416|20405|20415|20404|20414|20469|20403|20468|20424|20402</item>
<item>荷属安的列斯群岛,599,152,36269|36202|36201|36251|36294|36282|36281</item>
<item>黑山共和国,382,126,29703|29702|29701</item>
<item>洪都拉斯,504,137,70830|70840|70802|70801</item>
</string-array>
<string-array name="smssdk_country_group_i">
</string-array>
<string-array name="smssdk_country_group_j">
<item>基里巴斯,686,163,54509</item>
<item>吉布提,253,86,63801</item>
<item>吉尔吉斯斯坦,996,195,43705|43701</item>
<item>几内亚,224,59,61105|61104|61103|61102|61101</item>
<item>几内亚比绍,245,80,63202|63203</item>
<item>加拿大,1,1,302657|302656|302710|302655|302500|302610|302720|302702|302270|302490|302880|302220|302680|302360|302690|302510|302653|302861|302222|302640|302651|302530|302221|302320</item>
<item>加纳,233,68,62001|62002|62003|62004|62006|62007</item>
<item>加蓬,241,76,62804|62801|62802|62803</item>
<item>柬埔寨,855,170,45602|45601|45608|45618|45609|45604|45603|45606|45605|23455-KH</item>
<item>捷克共和国,420,131,23001|23002|23003|23004|23005|23008</item>
<item>津巴布韦,263,95,64801|64803|64804</item>
</string-array>
<string-array name="smssdk_country_group_k">
<item>喀麦隆,237,72,62401|62402|62404</item>
<item>卡塔尔,974,187,42701|42702</item>
<item>开曼群岛,1345,203,346140</item>
<item>科摩罗,269,101,65401</item>
<item>科特迪瓦,225,60,61205|61204|61203|61202</item>
<item>科威特,965,179,41904|41903|41902</item>
<item>克罗地亚,385,127,21902|21901|21912|21910</item>
<item>肯尼亚,254,87,63905|63907|63903|63902</item>
<item>库克群岛,682,161,54801</item>
</string-array>
<string-array name="smssdk_country_group_l">
<item>拉脱维亚,371,116,24703|24706|24705|24708|24707|24709|24702|24701</item>
<item>莱索托,266,98,65101|65102</item>
<item>老挝,856,171,45701|45708|45703|45702</item>
<item>黎巴嫩,961,175,41503|41501</item>
<item>立陶宛,370,115,24601|24603|24602</item>
<item>利比里亚,231,66,61804|61807|61801|61802</item>
<item>利比亚,218,54,60603|60601|60600</item>
<item>列支敦士登,423,133,29501|29577|29505|29502</item>
<item>法属留尼汪岛,262,94,64710|64702</item>
<item>卢森堡,352,107,27099|27077|27001</item>
<item>卢旺达,250,83,63510|63512|63513|63514</item>
<item>罗马尼亚,40,14,22603|22604|22605|22610|22601</item>
</string-array>
<string-array name="smssdk_country_group_m">
<item>马达加斯加,261,93,64601|64602|64604</item>
<item>马尔代夫,960,174,47201|47202</item>
<item>马耳他,356,111,27821|27877|27801</item>
<item>马拉维,265,97,65010|65001</item>
<item>马来西亚,60,32,50220|50211|50213|502150|50212|502151|502152|50217|50216|50219|50218</item>
<item>马里,223,58,61002|61001</item>
<item>马其顿,389,130,29402|29401|29403</item>
<item>马提尼克,596,149,34003|34002|34001|34020</item>
<item>毛里求斯,230,65,61710|61701|61702</item>
<item>毛里塔尼亚,222,57,60910|60902</item>
<item>美国,1,2,311090|310080|311050|311370|310160|31150|311010|310680|310120|310560|311650|310880|310760|31190|310320|310630|310710|310090|310290|316993|310170|310050|31060|311580|310690|311020|311340|310570|311660|310450|310011|310770|316995|310012|316994|311730|310004|311610|310840|310005|310600|31100|311190|310180|31050|310060|316883|311150|310380|311030|310260|311230|310020|310340|311991|311430|316885|310660|310100|316884|310540|310023|310980|311740|310410|31016|310610|310016|31130|31011|31611|310190|311040|316011|310150|310790|310990|310870|310420|310300|310740|311710</item>
<item>蒙古,976,189,42898|42888|42899|42801</item>
<item>蒙特塞拉特岛,1664,207,354860</item>
<item>孟加拉国,880,172,47007|47005|47006|47003|47004|47001|47002</item>
<item>秘鲁,51,24,71610|71606|71617|71607|71615</item>
<item>密克罗尼西亚,691,166,55001</item>
<item>缅甸,95,48,41401|41406|41405</item>
<item>摩尔多瓦,373,118,25903|25902|25904|25901</item>
<item>摩洛哥,212,51,60405|60402|60401|60400</item>
<item>摩纳哥,377,122,21201</item>
<item>莫桑比克,258,91,64301|64304|64303</item>
<item>墨西哥,52,25,33402|33403|33401|33450|33406|334090|33404|33405</item>
</string-array>
<string-array name="smssdk_country_group_n">
<item>纳米比亚,264,96,64902|64901|64903</item>
<item>南非,27,6,65510|65512|65501|65502|65507|65519</item>
<item>南苏丹,211,50,65995</item>
<item>尼泊尔,977,190,42901|42902</item>
<item>尼加拉瓜,505,138,71021|71030</item>
<item>尼日尔,227,62,61401|61402|61403|61404</item>
<item>尼日利亚,234,69,62150|62140|62130|62120|62125|23455-NG|62160</item>
<item>挪威,47,21,24208|24209|24220|24221|24222|24201|24223|24202|24224|24204|24205|24206</item>
</string-array>
<string-array name="smssdk_country_group_o">
</string-array>
<string-array name="smssdk_country_group_p">
<item>帕劳,680,160,55201|55280</item>
<item>葡萄牙,351,106,26804|26806|26801|26803</item>
</string-array>
<string-array name="smssdk_country_group_q">
</string-array>
<string-array name="smssdk_country_group_r">
<item>日本,81,39,44027|44026|44029|44028|44023|44144|44022|44143|44025|44024|44145|44140|44021|44142|44141|44020|44016|44015|44018|44017|44012|44011|44099|44014|44013|44019|44090|44096|44095|44010|44098|44097|44092|44091|44094|44093|44004|44007|44006|44001|44089|44000|44088|44003|44002|44009|44008|44087|44199|44078|44198|44077|44079|44074|44194|44073|44076|44075|44191|44070|44190|44193|44072|44192|44071|44067|44066|44069|44068|44063|44062|44065|44064|44061|44060|44056|44055|44058|44052|44051|44054|44053|44050|44170|44049|44048|44045|44044|44165|44047|44046|44041|44162|44040|44161|44043|44164|44042|44163|44038|44037|44039|44034|44033|44036|44035|44030|44032|44031</item>
<item>瑞典,46,20,24035|24013|24036|24014|24037|24015|24038|24016|24039|24017|24018|24019|24030|24031|24010|24032|24033|24012|24034|24002|24003|24026|24027|24028|24006|24029|24007|24008|24040|24020|24043|24022|24000|24044|24023|24001|24045</item>
<item>瑞士,41,15,22812|22801|22802|22803|22805|22809|22851|22853|22854</item>
</string-array>
<string-array name="smssdk_country_group_s">
<item>萨尔瓦多,503,136,70602|70601|70604|70603|70605</item>
<item>萨摩亚,685,162,54900</item>
<item>塞尔维亚,381,125,29341|22001|22003|22005</item>
<item>塞拉利昂,232,67,61902|61903|61904|61905|61906|61909|61901</item>
<item>塞内加尔,221,56,60801|60803|60802</item>
<item>塞浦路斯,357,112,28022|28001|28020|28010</item>
<item>塞舌尔,248,81,63310|63301|63302</item>
<item>沙特阿拉伯,966,180,42003|42004|42001|42006</item>
<item>圣多美和普林西比,239,74,62601</item>
<item>圣基茨和尼维斯,1869,215,356110|356070</item>
<item>圣卢西亚,1758,209,358110</item>
<item>圣马力诺,378,123,29201</item>
<item>圣皮埃尔和密克隆岛,508,141,30801</item>
<item>圣文森特和格林纳丁斯,1784,211,360110</item>
<item>斯里兰卡,94,47,41301|41305|41302|41308</item>
<item>斯洛伐克,421,132,23199|23101|23102|23106</item>
<item>斯洛文尼亚,386,128,29364|29341|29340|29370</item>
<item>斯威士兰,268,100,65310|65301</item>
<item>苏丹,249,82,63401|63402|63407</item>
<item>苏里南,597,150,74604|74603|74602</item>
<item>所罗门群岛,677,157,54010</item>
<item>索马里,252,85,63782|63760|63730|63701|63725|63704</item>
</string-array>
<string-array name="smssdk_country_group_t">
<item>塔吉克斯坦,992,191,43605|43601|43602|43603|43604</item>
<item>台湾,886,173,46602|46668|46603|46688|46699|46601|46689|46656|46697|46610|46609|46606|46607|46605|46693|46692</item>
<item>泰国,66,38,52000|52099|52020|52003|52004|52015|52001|52023|52002|52018|52005</item>
<item>坦桑尼亚,255,88,64011|64003|64002|64005|64004|64007|64006|64009|64008</item>
<item>汤加,676,156,53901</item>
<item>特克斯和凯科斯群岛,1649,206,376352|376350</item>
<item>特立尼达,多巴哥,1868,214,374130|37412</item>
<item>突尼斯,216,53,60503|60502|60501</item>
<item>土耳其,90,43,28602|28603|28601|28604</item>
<item>土库曼斯坦,993,192,43801|43802</item>
</string-array>
<string-array name="smssdk_country_group_u">
</string-array>
<string-array name="smssdk_country_group_v">
</string-array>
<string-array name="smssdk_country_group_w">
<item>瓦努阿图,678,158,54101|54105</item>
<item>危地马拉,502,135,70402|70401|70403</item>
<item>维尔京群岛(美属),1284,201,311470</item>
<item>维尔京群岛(英属),1340,202,348570|348170</item>
<item>委内瑞拉,58,31,73406|73404|73401</item>
<item>文莱,673,154,52811|52802</item>
<item>乌干达,256,89,64111|64133|64166|64122|64110|64101|64114</item>
<item>乌克兰,380,124,25507|25506|25521|25501|25503|25502|25505|25504</item>
<item>乌拉圭,598,151,74803|74802|74801|74800|74810|74807</item>
<item>乌兹别克斯坦,998,196,43401|43402|43407|43403|43404|43405|43406</item>
</string-array>
<string-array name="smssdk_country_group_x">
<item>西班牙,34,11,21402|21401|21423|21411|21422|21410|21421|21432|21420|21409|21408|21419|21407|21418|21417|21406|21405|21427|21416|21404|21415|21425|21403</item>
<item>希腊,30,7,20203|20202|20201|20210|20209|20207|20205</item>
<item>香港,852,168,45413|45412|45401|45404|45403|45414|45400|45411|45409|45406|45405|45416|45408|45419|45429|45407</item>
<item>新加坡,65,37,52502|52503|52512|52501|52505</item>
<item>新喀里多尼亚,687,164,54601</item>
<item>新西兰,64,36,53001|53004|53005|53024|53002|53006</item>
<item>匈牙利,36,12,21630|21670|21601</item>
<item>叙利亚,963,177,41701|41702</item>
</string-array>
<string-array name="smssdk_country_group_y">
<item>牙买加,1876,216,338180|338020|338110</item>
<item>亚美尼亚,374,119,28301|28310|28305|28304</item>
<item>也门,967,181,42101|42102|42103</item>
<item>伊拉克,964,178,41805|41840|41820|41830|41845</item>
<item>伊朗,98,49,43235|43214|43220|43200|43211|43219</item>
<item>以色列,972,185,42577|42516|42505|42506|42507|RESTRICTED-IL|42519|42508|42501|42512|42523|42502|42503|42514|42515</item>
<item>意大利,39,13,22206|22207|22208|22210|22243|22288|22244|22299|22233|22201|22235|22204|22248|22205|22230</item>
<item>印度,91,44,405893|405892|405895|405894|405897|405896|405899|405898|40501|40506|40505|405891|405890|40503|405889|405882|405881|405883|405886|405885|405888|405887|405880|405879|405878|405871|405750|405870|405873|405752|405872|405751|405875|405754|405874|405753|405877|405756|405876|405755|405868|405867|405869|405860|405862|405861|405864|405863|405866|405865|405856|405859|405858|40494|40493|40492|40491|40498|40497|40496|40495|40490|40483|40482|40481|40480|40487|40486|40485|405799|40484|40489|40488|40472|40471|40470|40476|40475|40474|40473|40479|40478|40477|40460|405930|405811|40462|405810|405931|40469|40468|40467|40466|405809|405802|405923|405801|405922|405804|405925|405803|405924|405806|405927|405805|405926|405808|405929|405807|405928|40450|40570|40454|40453|40452|405800|405921|40451|405920|40458|40457|40456|40455|40459|405919|405912|405914|405913|405916|405915|405918|405917|40443|40442|40441|40567|40446|40566|40449|405901|405900|405903|405902|405905|405904|405907|405906|40553|40552|40431|40551|40430|40436|40556|40435|40555|40434|40554|40433|40438|40437|405851|405850|40421|405853|40420|405852|405855|405854|40425|40424|40422|40429|40428|40427|40419|405846|405845|405848|405847|405849|405046|405045|405840|405047|40410|405842|405841|405843|40413|40412|405040|40411|40418|405042|40417|405041|40416|405044|40415|405043|40409|405835|405834|405837|405836|405839|405838|405035|405034|405037|405036|40520|405039|405831|405038|405830|405833|405832|40524|40403|40402|40523|40522|40401|40521|40400|40407|405031|40406|405030|40405|405033|40404|405032|40519|40518|405824|405823|405825|405828|405827|405829|405026|405025|405820|405027|405822|405029|405821|40513|40512|40511|40510|40517|40515|40514|40509|40508|40507|405813|405812|405815|405814|405817|405816|405819|405818</item>
<item>印度尼西亚,62,34,51010|51021|51089|51001|51011|51027|51007|51028|51009|51008</item>
<item>英国,44,17,23427|23428|23407|23409|23420|23400|23401|23423|23500|23424|23402|23403|23425|23426|23416|23417|23418|23419|23430|23431|23476|23410|23433|23455|23411|23478|23434|23458|23414|23415|23450|23451</item>
<item>约旦,962,176,41601|41677|41603</item>
<item>越南,84,41,45204|45205|45202|45201|45207</item>
</string-array>
<string-array name="smssdk_country_group_z">
<item>赞比亚,260,92,64502|64501|64503</item>
<item>泽西,44,18,</item>
<item>乍得,235,70,62201|62203</item>
<item>直布罗陀,350,105,26606|26609|26601</item>
<item>智利,56,29,73008|73006|73004|73002|73013|73003|73014|73011|73012|73001</item>
<item>中非共和国,236,71,62301|62302|62303|62304</item>
<item>中国,86,42,46006|46007|46005|46002|46003|46000|46001</item>
</string-array>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="ssdk_instapager_login_html" formatted="false"><![CDATA[
<!DOCTYPE html>
<html>
<head>
<meta content=\"text/html; charset=utf-8\" http-equiv=\"Content-Type\">
<meta content=\"width=device-width,minimum-scale=1,maximum-scale=1,initial-scale=1,user-scalable=no\" id=\"viewport\" name=\"viewport\">
<meta content=\"yes\" name=\"apple-mobile-web-app-capable\">
<title>%s</title>
<style type=\"text/css\">
body{margin:0;padding:0}
.inputstyle {
-webkit-tap-highlight-color:rgba(255,255,255,0);
width:100%%;
height:44px;
color:#000;
background:0;
border:0;
font-size:16px;
outline: none;
-webkit-appearance:none
}
.btn {
width:90%%;
height:44px;
line-height:44px;
background:#A0C035;
border:0;
border-radius:4px;
color:#fff;
font-size:16px;
text-align:center;
margin-top:15px;
display:block
}
.btn:disabled {
background: #dddddd;
}
.error {
color:red;
}
</style>
</head>
<body>
<script type=\"text/javascript\">
function login(form){
var u=form[\"u\"].value,p=form[\"p\"].value;
if(!u || !p)
return false;
form[\"s\"].disabled = true;
return true;
}
</script>
<form style=\"margin-top:45px;\" action=\"%s\" metho=\"get\" onsubmit=\"return login(this);\">
%s
<div style=\"padding-left:15px;border-top:1px solid #E3E3E5;border-bottom:1px solid #E3E3E5;\">
<input type=\"hidden\" name=\"ID_SIGN\" value=\"OWELJSFPWECSFEW\"/>
<input class=\"inputstyle\" id=\"u\" name=\"u\" type=\"text\" value=\"%s\" placeholder=\"%s\" style=\"border-bottom:1px solid #E3E3E5;\"/>
<input class=\"inputstyle\" id=\"p\" name=\"p\" type=\"password\" placeholder=\"%s\"/>
</div>
<p><input style=\"margin:0 auto;\" type=\"submit\" name=\"s\" value=\" %s \" class=\"btn\"/></p>
</form>
</body>
</html>
]]></string>
</resources>
\ No newline at end of file
<resources></resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources>
<drawable name="ssdk_oks_classic_platfrom_cell_back_nor">#ffffffff</drawable>
<drawable name="ssdk_oks_classic_platfrom_cell_back_sel">#ffeeeeee</drawable>
</resources>
<resources></resources>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="ssdk_oks_share">分享</string>
<string name="ssdk_oks_sharing">分享操作正在后台进行…</string>
<string name="ssdk_oks_share_failed">分享失败</string>
<string name="ssdk_oks_share_completed">分享成功</string>
<string name="ssdk_oks_share_canceled">分享已取消</string>
<string name="ssdk_oks_cancel">取消</string>
<string name="ssdk_oks_multi_share">图文分享</string>
<string name="ssdk_oks_confirm">确定</string>
<string name="ssdk_oks_contacts">联系人</string>
<string name="ssdk_oks_pull_to_refresh">下拉刷新</string>
<string name="ssdk_oks_release_to_refresh">松开刷新</string>
<string name="ssdk_oks_refreshing">刷新中…</string>
</resources>
<resources></resources>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="ssdk_weibo_oauth_regiseter">应用授权</string>
<string name="ssdk_website">http://www.mob.com</string>
<string name="ssdk_weibo_upload_content">分享图片</string>
<string name="ssdk_wechat_client_inavailable">目前您的微信版本过低或未安装微信,需要安装微信才能使用</string>
<string name="ssdk_google_plus_client_inavailable">Google+ 版本过低或者没有安装,需要升级或安装Google+才能使用!</string>
<string name="ssdk_qq_client_inavailable">QQ 版本过低或者没有安装,需要升级或安装QQ才能使用!</string>
<string name="ssdk_pinterest_client_inavailable">Pinterest版本过低或者没有安装,需要升级或安装Pinterest才能使用!</string>
<string name="ssdk_instagram_client_inavailable">Instagram版本过低或者没有安装,需要升级或安装Instagram才能使用!</string>
<string name="ssdk_yixin_client_inavailable">目前您的易信版本过低或未安装,需要安装易信才能使用</string>
<string name="ssdk_line_client_inavailable">目前您的Line版本过低或未安装,需要安装Line才能使用</string>
<string name="ssdk_kakaotalk_client_inavailable">目前您的KakaoTalk版本过低或未安装,需要安装KakaoTalk才能使用</string>
<string name="ssdk_kakaostory_client_inavailable">目前您的KakaoStory版本过低或未安装,需要安装KakaoStory才能使用</string>
<string name="ssdk_whatsapp_client_inavailable">目前您的WhatsApp版本过低或未安装,需要安装WhatsApp才能使用</string>
<string name="ssdk_laiwang_client_inavailable">目前您的来往版本过低或未安装,需要安装来往才能使用</string>
<string name="ssdk_alipay_client_inavailable">目前您的支付宝版本过低或未安装,需要安装支付宝才能使用</string>
<string name="ssdk_facebookmessenger_client_inavailable">目前您的FacebookMessenger版本过低或未安装,需要安装才能使用</string>
<string name="ssdk_telegram_client_inavailable">目前您的Telegram版本过低或未安装,需要安装才能使用</string>
<string name="ssdk_dont_keep_activitys_client">由于您已开启 不保留活动 ,导致授权功能无法正常使用.我们建议您点击左下方 设置 按钮,在 开发者选项 中关闭 不保留活动 功能.</string>
<string name="ssdk_sinaweibo">新浪微博</string>
<string name="ssdk_tencentweibo">腾讯微博</string>
<string name="ssdk_qzone">QQ空间</string>
<string name="ssdk_wechat">微信好友</string>
<string name="ssdk_wechatmoments">微信朋友圈</string>
<string name="ssdk_wechatfavorite">微信收藏</string>
<string name="ssdk_facebook">Facebook</string>
<string name="ssdk_twitter">Twitter</string>
<string name="ssdk_renren">人人网</string>
<string name="ssdk_kaixin">开心网</string>
<string name="ssdk_email">邮件</string>
<string name="ssdk_shortmessage">信息</string>
<string name="ssdk_sohumicroblog">搜狐微博</string>
<string name="ssdk_sohusuishenkan">搜狐随身看</string>
<string name="ssdk_neteasemicroblog">网易微博</string>
<string name="ssdk_douban">豆瓣</string>
<string name="ssdk_youdao">有道云笔记</string>
<string name="ssdk_evernote">印象笔记</string>
<string name="ssdk_linkedin">领英</string>
<string name="ssdk_googleplus">Google+</string>
<string name="ssdk_foursquare">FourSquare</string>
<string name="ssdk_qq">QQ</string>
<string name="ssdk_pinterest">Pinterest</string>
<string name="ssdk_flickr">Flickr</string>
<string name="ssdk_tumblr">Tumblr</string>
<string name="ssdk_dropbox">Dropbox</string>
<string name="ssdk_vkontakte">VK</string>
<string name="ssdk_instagram">Instagram</string>
<string name="ssdk_yixin">易信</string>
<string name="ssdk_yixinmoments">易信朋友圈</string>
<string name="ssdk_mingdao">明道</string>
<string name="ssdk_kakaotalk">KakaoTalk</string>
<string name="ssdk_kakaostory">KakaoStory</string>
<string name="ssdk_line">Line</string>
<string name="ssdk_bluetooth">蓝牙</string>
<string name="ssdk_whatsapp">WhatsApp</string>
<string name="ssdk_pocket">Pocket</string>
<string name="ssdk_instapaper">Instapaper</string>
<string name="ssdk_instapaper_email">邮箱</string>
<string name="ssdk_instapaper_pwd">密码</string>
<string name="ssdk_instapaper_login">登录</string>
<string name="ssdk_instapaper_logining">登录中…</string>
<string name="ssdk_instapager_email_or_password_incorrect">Email或密码不正确</string>
<string name="ssdk_facebookmessenger">Facebook Messenger</string>
<string name="ssdk_laiwang">来往</string>
<string name="ssdk_laiwangmoments">来往动态</string>
<string name="ssdk_alipay">支付宝好友</string>
<string name="ssdk_alipaymoments">支付宝生活圈</string>
<string name="ssdk_plurk">Plurk</string>
<string name="ssdk_youtube">Youtube</string>
<string name="ssdk_dingding">钉钉</string>
<string name="ssdk_meipai">美拍</string>
<string name="ssdk_telegram">Telegram</string>
<string name="ssdk_share_to_qzone">分享到QQ空间</string>
<string name="ssdk_share_to_qq">分享到QQ</string>
<string name="ssdk_share_to_facebook">分享到Facebook</string>
<string name="ssdk_mingdao_share_content">网页分享</string>
<string name="ssdk_share_to_mingdao">分享到明道</string>
<string name="ssdk_share_to_googleplus">分享到Google+</string>
<string name="ssdk_share_to_qzone_default">来自%s的分享</string>
<string name="ssdk_use_login_button">请改用“登录”按钮</string>
<string name="ssdk_share_to_youtube">分享到Youtube</string>
<string name="ssdk_gender_male"></string>
<string name="ssdk_gender_female"></string>
<string name="ssdk_symbol_ellipsis">...</string>
<!--sina web -->
<string name="ssdk_sina_web_close">关闭</string>
<string name="ssdk_sina_web_net_error">网络出错啦,请点击按钮重新加载</string>
<string name="ssdk_sina_web_refresh">重新加载</string>
<string name="ssdk_sina_web_title">微博分享</string>
<string name="ssdk_sina_web_login_title">登录-新浪微博</string>
<!--sina web -->
<!-- sms login -->
<string name="ssdk_sms_login">短信登录</string>
<string name="ssdk_sms_top_identify_text">短信已发送,请填写验证码</string>
<string name="ssdk_sms_btn_next">下一步</string>
<string name="ssdk_sms_btn_submit">提交</string>
<string name="ssdk_sms_btn_sende_voice">发送语音验证</string>
<string name="ssdk_sms_zone">国家/地区</string>
<string name="ssdk_sms_china">中国</string>
<string name="ssdk_sms_phone">手机号</string>
<string name="ssdk_sms_top_text">请输入您的手机号</string>
<string name="ssdk_sms_code">验证码</string>
<string name="ssdk_sms_send_again">重新发送</string>
<string name="ssdk_sms_input_phone_hint">请输入手机号码</string>
<string name="ssdk_sms_input_code_hint">请输入验证码</string>
<string name="ssdk_sms_input_voice_code"><Data>短信验证码收不到?请尝试&lt;font color=#2ba245>语音验证码&lt;/font></Data></string>
<string name="ssdk_sms_dialog_btn_cancel">取消</string>
<string name="ssdk_sms_dialog_btn_ok"></string>
<string name="ssdk_sms_dialog_btn_wait">等待</string>
<string name="ssdk_sms_dialog_btn_back">返回</string>
<string name="ssdk_sms_dialog_btn_sure">我知道了</string>
<string name="ssdk_sms_dialog_btn_login">确认登录</string>
<string name="ssdk_sms_dialog_confirm_title">确认手机号码</string>
<string name="ssdk_sms_dialog_confirm_des">我们将发送验证码短信到这个手机号:\n</string>
<string name="ssdk_sms_dialog_error_title">手机号码错误</string>
<string name="ssdk_sms_dialog_error_des">您输入的是一个无效手机号码</string>
<string name="ssdk_sms_dialog_close_identify_page">验证码短信可能略有延迟,确定返回\n并重新开始?</string>
<string name="ssdk_sms_dialog_error_code">验证码不正确,请重新填写</string>
<string name="ssdk_sms_dialog_voice_text">我们将以电话的方式告知您验证码,\n请注意接听</string>
<string name="ssdk_sms_dialog_send_success">发送成功</string>
<string name="ssdk_sms_dialog_login_success">登录成功</string>
<string name="ssdk_sms_dialog_smart_title">恭喜!该号码已通过云检测</string>
<string name="ssdk_sms_dialog_smart_dec">您的设备为安全设备,该号码已通过智能\n云验证,无需短信验证\n(本验证过程不存在任何安全隐患)</string>
<string name="ssdk_sms_choose_country">选择国家和地区</string>
<string name="ssdk_sms_country_search">搜索</string>
<!-- sms login -->
<string name="ssdk_sms_dialog_net_error">网络不给力,请稍后重试</string>
<string name="ssdk_sms_dialog_system_error">系统有点小问题,请稍后重试</string>
<string name="ssdk_sms_dialog_error_desc_100">服务器错误</string>
<string name="ssdk_sms_dialog_error_desc_101">没有权限请求</string>
<string name="ssdk_sms_dialog_error_desc_102">解密数据失败</string>
<string name="ssdk_sms_dialog_error_desc_103">请求参数列表中缺少必要数据</string>
<string name="ssdk_sms_dialog_error_desc_104">请求数据非法</string>
<string name="ssdk_sms_dialog_error_desc_105">验证码错误</string>
<string name="ssdk_sms_dialog_error_desc_106">请求发送验证码失败</string>
<string name="ssdk_sms_dialog_error_desc_107">该号码超过接收验证码上\n限次数,请明日再试</string>
<string name="ssdk_sms_dialog_error_desc_108">该设备超过请求发送验证\n码上限次数,请明日再试</string>
<string name="ssdk_sms_dialog_error_desc_109">发送短信太频繁</string>
<item name="ssdk_sina_web_title_id" type="id" />
<item name="ssdk_sms_id_clCountry" type="id" />
<item name="ssdk_sms_id_ll_back" type="id" />
<item name="ssdk_sms_id_tv_title" type="id" />
<item name="ssdk_sms_id_llTitle" type="id" />
<item name="ssdk_sms_id_ivSearch" type="id" />
<item name="ssdk_sms_id_llSearch" type="id" />
<item name="ssdk_sms_id_et_put_identify" type="id" />
<item name="ssdk_sms_id_iv_clear" type="id" />
</resources>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment