UI commit
@ -40,7 +40,7 @@ android {
|
||||
jniDebuggable true
|
||||
zipAlignEnabled false
|
||||
shrinkResources false
|
||||
minifyEnabled false
|
||||
minifyEnabled true
|
||||
signingConfig signingConfigs.config
|
||||
addManifestPlaceholders([
|
||||
'app_name': 'Mireo Debug'
|
||||
|
@ -39,7 +39,7 @@ interface StatusAction {
|
||||
|
||||
|
||||
fun showEmpty() {
|
||||
showLayout(R.drawable.status_empty_ic, R.string.status_layout_no_data, null)
|
||||
// showLayout(R.drawable.status_empty_ic, R.string.status_layout_no_data, null)
|
||||
}
|
||||
|
||||
|
||||
@ -49,11 +49,11 @@ interface StatusAction {
|
||||
if (manager != null) {
|
||||
val info: NetworkInfo? = manager.activeNetworkInfo
|
||||
if (info == null || !info.isConnected) {
|
||||
showLayout(R.drawable.status_network_ic, R.string.status_layout_error_network, listener)
|
||||
// showLayout(R.drawable.status_network_ic, R.string.status_layout_error_network, listener)
|
||||
return
|
||||
}
|
||||
}
|
||||
showLayout(R.drawable.status_error_ic, R.string.status_layout_error_request, listener)
|
||||
// showLayout(R.drawable.status_error_ic, R.string.status_layout_error_request, listener)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -73,7 +73,6 @@ open class VideoPlayActivity : AppActivity(), VideoPlayAdapter.PlayerDetailColle
|
||||
private val exampleEmpty: ViewGroup? by lazy { findViewById(R.id.example_empty) }
|
||||
private val exampleTvEmpty: TextView? by lazy { exampleEmpty?.findViewById(R.id.example_tv_empty) }
|
||||
|
||||
// private val avi: LoadingAnimationView? by lazy { findViewById(R.id.avi) }
|
||||
private var shortVideoId: Int? = null
|
||||
private var activityId: Int? = null
|
||||
private var shortVideo: VideoDetailsApi.Bean.ShortPlayInfo? = null
|
||||
|
@ -71,7 +71,6 @@ class ExploreFragment : TitleBarFragment<HomeActivity>(),
|
||||
private val exampleEmpty: ViewGroup? by lazy { findViewById(R.id.example_empty) }
|
||||
private val exampleTvEmpty: TextView? by lazy { exampleEmpty?.findViewById(R.id.example_tv_empty) }
|
||||
|
||||
// private val avi: LoadingAnimationView? by lazy { findViewById(R.id.avi) }
|
||||
|
||||
override fun getLayoutId(): Int {
|
||||
return R.layout.find_fragment
|
||||
|
@ -35,11 +35,6 @@ class ExampleSeriesDataAdapter :
|
||||
holder.setVisible(R.id.example_tv_num_data, true)
|
||||
holder.setVisible(R.id.example_iv_num_data, false)
|
||||
}
|
||||
// if (item?.is_lock == true && !ExampleMMKVUtils.isVip()) {
|
||||
// holder.setVisible(R.id.iv_example_lock, true)
|
||||
// } else {
|
||||
// }
|
||||
holder.setVisible(R.id.iv_example_lock, false)
|
||||
}
|
||||
|
||||
override fun onCreateViewHolder(
|
||||
|
@ -60,18 +60,6 @@ class ExampleSeriesDialogFragment : DialogFragment() {
|
||||
startIndex = endIndex
|
||||
dataIndex += sublist.size
|
||||
}
|
||||
exampleDialogSeriesBinding.clVip.setOnClickListener {
|
||||
singleClick {
|
||||
dismiss()
|
||||
EventBus.getDefault()
|
||||
.post(MsConstants.CONSTANTS_stop_play)
|
||||
}
|
||||
}
|
||||
|
||||
exampleDialogSeriesBinding.tvVip.text = TranslatesUtils.translates()?.Membership
|
||||
exampleDialogSeriesBinding.tvVipDes.text = TranslatesUtils.translates()?.go_vip_store
|
||||
// exampleDialogSeriesBinding.clVip.visibility =
|
||||
// if (MsMMKVUtils.isVip()) View.INVISIBLE else View.VISIBLE
|
||||
val exampleSeriesNumAdapter = ExampleSeriesNumAdapter()
|
||||
val manager =
|
||||
LinearLayoutManager(requireContext(), LinearLayoutManager.HORIZONTAL, false)
|
||||
|
@ -1,60 +0,0 @@
|
||||
package com.localee.mireo.app.ui.videoPaly
|
||||
|
||||
import android.annotation.SuppressLint
|
||||
import android.content.Context
|
||||
import android.graphics.drawable.AnimationDrawable
|
||||
import android.util.AttributeSet
|
||||
import android.view.LayoutInflater
|
||||
import android.view.View
|
||||
import android.widget.ImageView
|
||||
import com.localee.mireo.app.R
|
||||
import com.scwang.smart.refresh.layout.api.RefreshLayout
|
||||
import com.scwang.smart.refresh.layout.constant.RefreshState
|
||||
import com.scwang.smart.refresh.layout.simple.SimpleComponent
|
||||
|
||||
|
||||
@SuppressLint("UseCompatLoadingForDrawables")
|
||||
class MyHeaderView(context: Context?, attrs: AttributeSet?, defStyleAttr: Int) :
|
||||
SimpleComponent(context, attrs, defStyleAttr) {
|
||||
var animDrawable: AnimationDrawable
|
||||
|
||||
constructor(context: Context?) : this(context, null)
|
||||
constructor(context: Context?, attrs: AttributeSet?) : this(context, attrs, 0)
|
||||
|
||||
init {
|
||||
val view: View = LayoutInflater.from(context).inflate(R.layout.example_refresh_head, this)
|
||||
val ref_head_img = view.findViewById<ImageView>(R.id.ref_head_img)
|
||||
animDrawable = resources.getDrawable(R.drawable.my_refresh_head) as AnimationDrawable
|
||||
ref_head_img.setImageDrawable(animDrawable)
|
||||
|
||||
}
|
||||
|
||||
override fun onFinish(layout: RefreshLayout, success: Boolean): Int {
|
||||
if (success) {
|
||||
animDrawable.stop()
|
||||
} else {
|
||||
animDrawable.stop()
|
||||
}
|
||||
super.onFinish(layout, success)
|
||||
return 500
|
||||
}
|
||||
|
||||
override fun onStateChanged(
|
||||
refreshLayout: RefreshLayout,
|
||||
oldState: RefreshState,
|
||||
newState: RefreshState
|
||||
) {
|
||||
when (newState) {
|
||||
RefreshState.PullDownToRefresh ->
|
||||
animDrawable.start()
|
||||
|
||||
RefreshState.ReleaseToRefresh -> {}
|
||||
RefreshState.Refreshing -> {}
|
||||
else -> {}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
@ -1,42 +0,0 @@
|
||||
package com.localee.mireo.app.widget
|
||||
|
||||
import android.content.Context
|
||||
import android.graphics.drawable.AnimationDrawable
|
||||
import android.util.AttributeSet
|
||||
import androidx.core.content.ContextCompat
|
||||
import com.localee.mireo.app.R
|
||||
|
||||
class LoadingAnimationView @JvmOverloads constructor(
|
||||
context: Context,
|
||||
attrs: AttributeSet? = null,
|
||||
defStyleAttr: Int = 0
|
||||
) : androidx.appcompat.widget.AppCompatImageView(context, attrs, defStyleAttr) {
|
||||
|
||||
private var animationDrawable: AnimationDrawable? = null
|
||||
|
||||
init {
|
||||
val drawable = ContextCompat.getDrawable(context, R.drawable.my_loading)
|
||||
background = drawable?.mutate()
|
||||
animationDrawable = background as? AnimationDrawable
|
||||
}
|
||||
|
||||
fun start() {
|
||||
animationDrawable?.apply {
|
||||
if (!isRunning) {
|
||||
setLayerType(LAYER_TYPE_HARDWARE, null)
|
||||
start()
|
||||
}
|
||||
}
|
||||
this.visibility = VISIBLE
|
||||
}
|
||||
|
||||
fun stop() {
|
||||
animationDrawable?.apply {
|
||||
if (isRunning) {
|
||||
stop()
|
||||
post { setLayerType(LAYER_TYPE_NONE, null) }
|
||||
}
|
||||
}
|
||||
this.visibility = GONE
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 58 KiB |
Before Width: | Height: | Size: 65 KiB |
Before Width: | Height: | Size: 67 KiB |
Before Width: | Height: | Size: 288 B |
Before Width: | Height: | Size: 474 B |
Before Width: | Height: | Size: 520 B |
Before Width: | Height: | Size: 830 B |
Before Width: | Height: | Size: 862 B |
Before Width: | Height: | Size: 896 B |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 3.8 KiB |
Before Width: | Height: | Size: 3.8 KiB |
Before Width: | Height: | Size: 3.8 KiB |
Before Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 4.0 KiB |
Before Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 784 B |
Before Width: | Height: | Size: 918 B |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 158 KiB |
Before Width: | Height: | Size: 185 KiB |
@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="@dimen/dp_24"
|
||||
android:height="@dimen/dp_24"
|
||||
android:viewportWidth="1024"
|
||||
android:viewportHeight="1024">
|
||||
|
||||
<path
|
||||
android:fillColor="@color/common_icon_color"
|
||||
android:pathData="M853.333,533.333 C865.115,533.333,874.667,523.782,874.667,512
|
||||
C874.667,500.218,865.115,490.667,853.333,490.667 L170.667,490.667
|
||||
C158.885,490.667,149.333,500.218,149.333,512
|
||||
C149.333,523.782,158.885,533.333,170.667,533.333 L853.333,533.333 Z
|
||||
M490.667,853.333 C490.667,865.115,500.218,874.667,512,874.667
|
||||
C523.782,874.667,533.333,865.115,533.333,853.333 L533.333,170.667
|
||||
C533.333,158.885,523.782,149.333,512,149.333
|
||||
C500.218,149.333,490.667,158.885,490.667,170.667 L490.667,853.333 Z" />
|
||||
</vector>
|
@ -1,16 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="@dimen/dp_24"
|
||||
android:height="@dimen/dp_24"
|
||||
android:viewportWidth="1024"
|
||||
android:viewportHeight="1024">
|
||||
|
||||
<path
|
||||
android:fillColor="@color/common_icon_color"
|
||||
android:pathData="M478.312,644.159 C502.692,671.061,542.819,670.698,566.819,643.27
|
||||
L837.388,334.048 C845.147,325.181,844.248,311.704,835.381,303.945
|
||||
C826.515,296.186,813.037,297.085,805.278,305.952 L534.71,615.173
|
||||
C527.508,623.404,517.169,623.498,509.928,615.508 L229.141,305.674
|
||||
C221.229,296.944,207.738,296.28,199.008,304.192
|
||||
C190.277,312.104,189.614,325.595,197.526,334.326 L478.312,644.159 Z" />
|
||||
</vector>
|
@ -1,16 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="@dimen/dp_24"
|
||||
android:height="@dimen/dp_24"
|
||||
android:viewportWidth="1024"
|
||||
android:viewportHeight="1024">
|
||||
|
||||
<path
|
||||
android:fillColor="@color/common_icon_color"
|
||||
android:pathData="M509.928,387.159 C517.169,379.169,527.508,379.262,534.71,387.493
|
||||
L805.278,696.715 C813.037,705.582,826.515,706.48,835.381,698.722
|
||||
C844.248,690.963,845.147,677.485,837.388,668.619 L566.819,359.397
|
||||
C542.819,331.968,502.692,331.605,478.312,358.508 L197.526,668.341
|
||||
C189.614,677.071,190.277,690.563,199.008,698.474
|
||||
C207.738,706.386,221.229,705.723,229.141,696.992 L509.928,387.159 Z" />
|
||||
</vector>
|
@ -1,64 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="@dimen/dp_200"
|
||||
android:height="@dimen/dp_200"
|
||||
android:viewportWidth="228"
|
||||
android:viewportHeight="228">
|
||||
|
||||
<path
|
||||
android:fillColor="#dddddd"
|
||||
android:pathData="M58.79,14.8 C80.3,2.97,105.65,-1.69,129.96,1.77
|
||||
C159.05,5.74,186.29,21.51,204.23,44.75 C218.39,62.73,226.42,85.11,228,107.88
|
||||
L228,119.44 C226.64,137.36,221.77,155.15,212.52,170.65
|
||||
C198.59,194.74,175.4,213.17,148.9,221.57
|
||||
C128.98,228.01,107.34,228.72,86.99,223.97
|
||||
C58.61,217.25,33.11,199.21,17.48,174.57 C7.54,159.22,1.78,141.41,0,123.26
|
||||
L0,105.07 C1.51,93.26,3.99,81.51,8.71,70.52 C10.69,66.05,12.85,61.65,15.24,57.38
|
||||
C25.57,39.62,40.71,24.61,58.79,14.8 M101.19,13.63
|
||||
C76.01,17.07,52.17,30.22,36.19,50.04 C18.04,71.61,9.71,101.03,13.76,128.91
|
||||
C16.38,148.87,25.39,167.77,38.64,182.86 C40.86,175.81,45.33,169.76,49.82,163.99
|
||||
C56.3,156.42,63.79,149.57,72.55,144.72 C78.21,140.78,85.14,139.44,91.11,136.18
|
||||
C89.18,134.25,86.78,132.92,84.62,131.29 C78.48,127.05,73.87,120.96,70.24,114.51
|
||||
C63.47,101.47,62.81,85.32,68.87,71.9 C74.48,58.96,85.92,48.74,99.36,44.5
|
||||
C112.12,40.18,126.47,41.59,138.4,47.7 C154.49,56.03,165.53,73.75,165.02,91.97
|
||||
C165.37,101.29,162.27,110.57,157.3,118.38
|
||||
C153.51,124.39,148.49,129.58,142.41,133.29
|
||||
C140.86,134.15,138.15,135.75,140.31,137.59
|
||||
C144.6,139.46,149.34,140.27,153.22,143.06
|
||||
C160.87,146.49,167.17,152.11,173.6,157.36
|
||||
C180.59,165.55,186.99,174.4,190.95,184.49
|
||||
C201.43,173.2,209.5,159.61,213.98,144.85
|
||||
C220.23,124.54,219.92,102.25,213.05,82.14
|
||||
C205.21,58.91,188.67,38.79,167.44,26.56 C147.62,14.96,123.9,10.44,101.19,13.63
|
||||
M97.65,57.47 C82.28,64.69,72.76,82.91,76.66,99.6
|
||||
C78.65,110.74,86.04,120.73,95.98,126.1 C105.6,131.46,117.5,132.52,127.89,128.84
|
||||
C141.88,124.21,152.58,110.97,154,96.31 C156.22,80.03,146.24,63.07,131.08,56.86
|
||||
C120.57,52.14,107.97,52.35,97.65,57.47 M75.16,156.17
|
||||
C62.19,164.46,52.43,177.43,47.65,192.02 C48.46,192.71,49.29,193.38,50.17,193.97
|
||||
C62.97,204.19,77.99,211.69,94.08,214.99
|
||||
C119.06,220.34,146.04,216.11,167.97,202.95
|
||||
C172.04,200.52,175.83,197.68,179.84,195.16
|
||||
C180.82,193.97,182.57,192.79,181.88,190.99
|
||||
C178.99,184.17,175.93,177.32,171.26,171.51
|
||||
C159.53,156.18,141.07,146.43,121.9,144.72 C105.64,143.1,88.79,147.1,75.16,156.17
|
||||
Z" />
|
||||
<path
|
||||
android:fillColor="#1c1b1b"
|
||||
android:fillAlpha="0.11"
|
||||
android:strokeAlpha="0.11"
|
||||
android:pathData="M109.55,63.61 C112.89,62.71,116.46,62.64,119.76,63.75
|
||||
C116.39,64.46,112.91,64.39,109.55,63.61 Z" />
|
||||
<path
|
||||
android:fillColor="#feedec"
|
||||
android:pathData="M103.93,66.96 C116.35,63.02,130.65,65.93,140.52,74.43
|
||||
C147.19,80.08,151.39,88.08,154,96.31 C152.58,110.97,141.88,124.21,127.89,128.84
|
||||
C117.5,132.52,105.6,131.46,95.98,126.1 C86.04,120.73,78.65,110.74,76.66,99.6
|
||||
C77.64,92.27,80.21,84.76,85.55,79.44 C90.45,73.76,96.64,69.03,103.93,66.96 Z" />
|
||||
<path
|
||||
android:fillColor="#feedec"
|
||||
android:pathData="M50.17,193.97 C63.29,162.68,102.01,146.14,134.04,155.98
|
||||
C147.5,159.23,159.71,166.78,169,177 C173.6,182.39,177.74,188.31,179.84,195.16
|
||||
C175.83,197.68,172.04,200.52,167.97,202.95
|
||||
C146.04,216.11,119.06,220.34,94.08,214.99
|
||||
C77.99,211.69,62.97,204.19,50.17,193.97 Z" />
|
||||
</vector>
|
@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<solid android:color="@color/settingsDrillExtraction" />
|
||||
<corners
|
||||
android:radius="17dp" />
|
||||
</shape>
|
@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<solid android:color="#C2DFF1" />
|
||||
<corners
|
||||
android:radius="17dp" />
|
||||
</shape>
|
@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<corners android:radius="26dp" />
|
||||
|
||||
<solid android:color="@color/settingsDrillExtraction"/>
|
||||
|
||||
</shape>
|
@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<corners android:radius="26dp" />
|
||||
|
||||
<stroke android:width="1dp" android:color="@color/white"/>
|
||||
</shape>
|
@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<solid android:color="#ffffffff" />
|
||||
<corners
|
||||
android:radius="20dp" />
|
||||
</shape>
|
@ -1,13 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="@dimen/dp_24"
|
||||
android:height="@dimen/dp_24"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
|
||||
<path
|
||||
android:fillColor="@color/white"
|
||||
android:pathData="M 4,4.00002L L 7,4L 9,2.00001L 15,2.00001L 17,4L 20,4.00002C 21.1045,4.00002 22,4.89545 22,6.00002L 22,18C 22,19.1046 21.1045,20 20,20L 4,20C 2.89543,20 2,19.1046 2,18L 2,6.00002C 2,4.89545 2.89543,4.00002 4,4.00002 Z M 12,7C 9.23858,7 7,9.23858 7,12C 7,14.7614 9.23858,17 12,17C 14.7614,17 17,14.7614 17,12C 17,9.23858 14.7614,7 12,7 Z M 12,9C 13.6568,9 15,10.3432 15,12C 15,13.6569 13.6568,15 12,15C 10.3431,15 9,13.6569 9,12C 9,10.3432 10.3431,9 12,9 Z"
|
||||
android:strokeWidth="0.2"
|
||||
android:strokeLineJoin="round" />
|
||||
</vector>
|
@ -1,11 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="@dimen/dp_24"
|
||||
android:height="@dimen/dp_24"
|
||||
android:viewportWidth="1024"
|
||||
android:viewportHeight="1024">
|
||||
|
||||
<path
|
||||
android:fillColor="#F56490"
|
||||
android:pathData="M512 64C262.4 64 64 262.4 64 512s198.4 448 448 448 448-198.4 448-448S761.6 64 512 64z m236.8 326.4L454.4 684.8c-12.8 12.8-32 12.8-44.8 0L275.2 544c-12.8-12.8-12.8-32 0-44.8 12.8-12.8 32-12.8 44.8 0l115.2 115.2L704 339.2c12.8-12.8 32-12.8 44.8 0 12.8 12.8 12.8 38.4 0 51.2z" />
|
||||
</vector>
|
@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="@dimen/dp_24"
|
||||
android:height="@dimen/dp_24"
|
||||
android:viewportWidth="1024"
|
||||
android:viewportHeight="1024">
|
||||
|
||||
<path
|
||||
android:fillColor="@color/common_icon_color"
|
||||
android:pathData="M176.662,817.173 C168.473,825.644,168.702,839.15,177.173,847.338
|
||||
C185.644,855.527,199.15,855.298,207.338,846.827 L826.005,206.827
|
||||
C834.194,198.356,833.965,184.85,825.494,176.662
|
||||
C817.023,168.473,803.517,168.702,795.328,177.173 L176.662,817.173 Z
|
||||
M795.328,846.827 C803.517,855.298,817.023,855.527,825.494,847.338
|
||||
C833.965,839.15,834.194,825.644,826.005,817.173 L207.338,177.173
|
||||
C199.15,168.702,185.644,168.473,177.173,176.662
|
||||
C168.702,184.85,168.473,198.356,176.662,206.827 L795.328,846.827 Z" />
|
||||
</vector>
|
@ -1,31 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="@dimen/dp_96"
|
||||
android:height="@dimen/dp_96"
|
||||
android:viewportWidth="96"
|
||||
android:viewportHeight="96">
|
||||
|
||||
<path
|
||||
android:fillColor="@color/common_icon_color"
|
||||
android:pathData="M29.41,21.45 C30.88,20.88,32.49,21.04,34.03,20.98
|
||||
C48.69,21.05,63.36,20.94,78.03,21.04 C81.59,20.96,84.45,24.51,84,27.97
|
||||
C83.97,41.66,84.05,55.35,83.96,69.05 C84.02,72.17,81.16,75.02,78.03,74.96
|
||||
C63.02,75.06,48,74.96,32.98,75.01 C30.61,75.19,28.03,74.45,26.69,72.35
|
||||
C21.84,65.5,17.06,58.6,12.29,51.7 C10.65,49.56,10.63,46.47,12.28,44.33
|
||||
C16.6,37.98,21.07,31.74,25.41,25.4 C26.5,23.89,27.56,22.13,29.41,21.45
|
||||
M30.34,24.33 C25.23,29.98,21.47,36.82,16.86,42.92
|
||||
C15.74,44.92,12.98,47.06,14.49,49.54 C19.17,56.48,24.02,63.31,28.81,70.17
|
||||
C29.64,71.63,31.29,72.18,32.9,72 C47.98,71.95,63.07,72.1,78.15,71.93
|
||||
C80.18,71.99,81.24,69.83,80.99,68.06 C80.97,54.36,81.08,40.65,80.94,26.96
|
||||
C81.06,24.94,78.94,23.74,77.14,24.01 C63.09,23.97,49.03,24.03,34.97,23.98
|
||||
C33.43,24.05,31.82,23.82,30.34,24.33 Z" />
|
||||
|
||||
<path
|
||||
android:fillColor="@color/common_icon_color"
|
||||
android:pathData="M40.91,37.03 C41.67,36.35,42.44,35.67,43.21,35 C46.73,38.7,50.4,42.25,54,45.87
|
||||
C57.65,42.24,61.28,38.58,64.94,34.95 C65.64,35.65,66.35,36.36,67.05,37.06
|
||||
C63.42,40.71,59.76,44.35,56.13,48 C59.76,51.65,63.42,55.28,67.05,58.94
|
||||
C66.35,59.64,65.64,60.35,64.94,61.06 C61.29,57.42,57.65,53.76,54,50.13
|
||||
C50.35,53.77,46.71,57.41,43.07,61.06 C42.36,60.35,41.65,59.65,40.95,58.94
|
||||
C44.58,55.28,48.24,51.65,51.87,48 C48.22,44.34,44.56,40.69,40.91,37.03 Z" />
|
||||
</vector>
|
@ -1,32 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="@dimen/dp_720"
|
||||
android:height="@dimen/dp_640"
|
||||
android:viewportWidth="720"
|
||||
android:viewportHeight="640">
|
||||
|
||||
<path
|
||||
android:fillColor="#0099cb"
|
||||
android:pathData="M0,0 L147.06,0 C108.73,83.65,70.23,167.23,31.79,250.84
|
||||
C20.97,273.58,11.28,296.91,0,319.42 L0,0 Z" />
|
||||
<path
|
||||
android:fillColor="#f34c68"
|
||||
android:pathData="M147.06,0 L411.34,0 C387.78,52.9,362.95,105.28,339,158.02
|
||||
C283.01,279.68,227.11,401.39,171.11,523.05
|
||||
C153.42,562.07,134.82,600.71,117.74,640 L0,640 L0,319.42
|
||||
C11.28,296.91,20.97,273.58,31.79,250.84 C70.23,167.23,108.73,83.65,147.06,0 Z" />
|
||||
<path
|
||||
android:fillColor="#334752"
|
||||
android:pathData="M411.34,0 L676.23,0 C578.02,213.29,479.96,426.63,381.93,640 L117.74,640
|
||||
C134.82,600.71,153.42,562.07,171.11,523.05
|
||||
C227.11,401.39,283.01,279.68,339,158.02 C362.95,105.28,387.78,52.9,411.34,0 Z" />
|
||||
<path
|
||||
android:fillColor="#0099cb"
|
||||
android:pathData="M676.23,0 L720,0 L720,480.58 C697.22,528.2,675.97,576.61,653.44,624.37
|
||||
C651.26,629.6,648.45,634.57,646.77,640 L381.93,640
|
||||
C479.96,426.63,578.02,213.29,676.23,0 Z" />
|
||||
<path
|
||||
android:fillColor="#f34c68"
|
||||
android:pathData="M653.44,624.37 C675.97,576.61,697.22,528.2,720,480.58 L720,640 L646.77,640
|
||||
C648.45,634.57,651.26,629.6,653.44,624.37 Z" />
|
||||
</vector>
|
@ -1,6 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval">
|
||||
<solid
|
||||
android:color="@color/common_accent_color"/>
|
||||
</shape>
|
@ -1,6 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval">
|
||||
<solid
|
||||
android:color="@color/common_button_disable_color"/>
|
||||
</shape>
|
@ -1,25 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="@dimen/dp_60"
|
||||
android:height="@dimen/dp_60"
|
||||
android:viewportWidth="60"
|
||||
android:viewportHeight="60">
|
||||
|
||||
<path
|
||||
android:fillColor="#a4a4a4"
|
||||
android:pathData="M26.94,0 L32.07,0 C40.04,0.79,47.61,5.42,51.59,12.43
|
||||
C54.41,17.09,55.36,22.62,55.24,28 C55.14,37.42,55.34,46.83,55.13,56.25
|
||||
C56.74,56.44,58.37,56.61,59.99,56.76 L60,56.22 L60,60 L0,60 L0,56.85
|
||||
C1.32,56.62,2.65,56.4,3.97,56.19 C3.74,46.81,3.95,37.42,3.85,28.04
|
||||
C3.79,23.11,4.45,18.04,6.83,13.65 C10.59,6.01,18.52,0.86,26.94,0 M20.16,5.98
|
||||
C12.59,9.51,7.74,17.65,7.77,25.94 C7.78,36.09,7.79,46.25,7.76,56.4
|
||||
C22.29,56.4,36.83,56.43,51.37,56.39 C51.28,46.6,51.33,36.81,51.34,27.02
|
||||
C51.36,22.5,50.37,17.88,47.89,14.05 C42.48,4.86,29.66,0.98,20.16,5.98 Z" />
|
||||
|
||||
<path
|
||||
android:fillColor="#a4a4a4"
|
||||
android:pathData="M37.44,27.7 C41.81,25.95,47.03,29.28,47.35,33.95
|
||||
C48.02,39.55,41,44.07,36.27,40.79 C30.97,38.09,31.79,29.48,37.44,27.7
|
||||
M38.37,31.38 C33.94,33.1,37.77,40.31,41.67,37.66
|
||||
C46.05,35.9,42.2,28.86,38.37,31.38 Z" />
|
||||
</vector>
|
@ -1,46 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="@dimen/dp_60"
|
||||
android:height="@dimen/dp_60"
|
||||
android:viewportWidth="60"
|
||||
android:viewportHeight="60">
|
||||
|
||||
<path
|
||||
android:fillColor="#472d22"
|
||||
android:pathData="M26.94,0 L32.07,0 C40.04,0.79,47.61,5.42,51.59,12.43
|
||||
C54.41,17.09,55.36,22.62,55.24,28 C55.14,37.42,55.34,46.83,55.13,56.25
|
||||
C56.74,56.44,58.37,56.61,59.99,56.76 L60,56.22 L60,60 L0,60 L0,56.85
|
||||
C1.32,56.62,2.65,56.4,3.97,56.19 C3.74,46.81,3.95,37.42,3.85,28.04
|
||||
C3.79,23.11,4.45,18.04,6.83,13.65 C10.59,6.01,18.52,0.86,26.94,0 M20.16,5.98
|
||||
C12.59,9.51,7.74,17.65,7.77,25.94 C7.78,36.09,7.79,46.25,7.76,56.4
|
||||
C22.29,56.4,36.83,56.43,51.37,56.39 C51.28,46.6,51.33,36.81,51.34,27.02
|
||||
C51.36,22.5,50.37,17.88,47.89,14.05 C42.48,4.86,29.66,0.98,20.16,5.98 Z" />
|
||||
|
||||
<path
|
||||
android:fillColor="#ffcb57"
|
||||
android:pathData="M18.27,32.98 C18.72,23.65,27.62,15.84,36.94,16.59
|
||||
C42.71,16.83,47.77,20.31,51.08,24.87 C51.73,35.36,51.17,45.9,51.4,56.4
|
||||
C40.33,56.41,29.27,56.39,18.2,56.42 C18.28,48.61,18.1,40.79,18.27,32.98
|
||||
M38.38,27.47 C33.15,28.42,30.8,35.62,34.61,39.4
|
||||
C38,43.52,45.27,42.01,46.85,36.96 C48.99,31.86,43.66,26.01,38.38,27.47 Z" />
|
||||
<path
|
||||
android:fillColor="#ffcb57"
|
||||
android:pathData="M38.32,31.33 C42.23,28.76,46.12,35.79,41.75,37.72
|
||||
C37.76,40.4,33.83,33.22,38.32,31.33 Z" />
|
||||
<path
|
||||
android:fillColor="#422921"
|
||||
android:pathData="M38.38,27.47 C43.66,26.01,48.99,31.86,46.85,36.96
|
||||
C45.27,42.01,38,43.52,34.61,39.4 C30.8,35.62,33.15,28.42,38.38,27.47
|
||||
M38.32,31.33 C33.83,33.22,37.76,40.4,41.75,37.72
|
||||
C46.12,35.79,42.23,28.76,38.32,31.33 Z" />
|
||||
<path
|
||||
android:fillColor="#180f0b"
|
||||
android:fillAlpha="0.35"
|
||||
android:strokeAlpha="0.35"
|
||||
android:pathData="M0,59.52 L0.45,59.51 L0.6,60 L0,60 L0,59.52 Z" />
|
||||
<path
|
||||
android:fillColor="#180f0b"
|
||||
android:fillAlpha="0.35"
|
||||
android:strokeAlpha="0.35"
|
||||
android:pathData="M59.61,59.6 L60,59.42 L60,60 L59.45,60 L59.61,59.6 Z" />
|
||||
</vector>
|
@ -1,10 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<!-- 选中状态 -->
|
||||
<item android:drawable="@mipmap/home_me_on_ic" android:state_selected="true" />
|
||||
|
||||
<!-- 默认状态 -->
|
||||
<item android:drawable="@mipmap/home_me_off_ic" />
|
||||
|
||||
</selector>
|
@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<corners android:radius="@dimen/dp_20"/>
|
||||
|
||||
<solid android:color="#f4f4f4"/>
|
||||
|
||||
</shape>
|
@ -1,9 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<corners android:radius="@dimen/dp_20"/>
|
||||
|
||||
<stroke
|
||||
android:width="@dimen/line_size"
|
||||
android:color="#DDDDDD" />
|
||||
</shape>
|
@ -1,40 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="@dimen/dp_180"
|
||||
android:height="@dimen/dp_180"
|
||||
android:viewportWidth="180"
|
||||
android:viewportHeight="180">
|
||||
|
||||
<path
|
||||
android:fillAlpha="0.18"
|
||||
android:fillColor="@color/black"
|
||||
android:pathData="M43.81,52.8 C45.6,50.77,48.52,51.06,50.96,50.96
|
||||
C66.31,51.08,81.66,50.92,97.01,51.04 C95.9,55.94,94.85,60.85,93.65,65.73
|
||||
C92.59,70.05,88.83,72.85,86.23,76.23 C82.75,80.75,77.93,84.49,76.21,90.12
|
||||
C71.8,103.07,67.12,115.92,62.69,128.86 C57.47,128.98,52.24,129.3,47.04,128.82
|
||||
C43.75,128.52,41.71,125.09,42.01,121.98 C41.95,101.33,42.07,80.68,41.96,60.03
|
||||
C42.06,57.56,41.75,54.61,43.81,52.8 M62.28,66.36
|
||||
C57.05,67.76,55.21,75.2,59.27,78.81 C63.12,83.04,70.98,80.6,71.83,74.97
|
||||
C73.14,69.67,67.41,64.51,62.28,66.36 Z"
|
||||
android:strokeAlpha="0.18" />
|
||||
|
||||
<path
|
||||
android:fillAlpha="0.18"
|
||||
android:fillColor="@color/black"
|
||||
android:pathData="M113.09,51.02 C119.42,51.05,125.76,50.82,132.09,51.08
|
||||
C135.68,50.97,138.36,54.51,137.99,57.94 C138.05,78.63,137.93,99.32,138.04,120.01
|
||||
C137.94,122.48,138.23,125.42,136.18,127.23
|
||||
C134.37,129.24,131.45,128.94,129.01,129.04
|
||||
C107.67,128.93,86.33,129.07,64.99,128.97 C72.1,115.15,79.43,101.45,86.52,87.62
|
||||
C89.39,81.43,95.26,77.57,99.86,72.79 C104.5,68.7,105.29,62.22,108.21,57.06
|
||||
C109.37,54.7,111.32,52.91,113.09,51.02 M112.33,85.3
|
||||
C107.87,91.59,105.61,99.19,101.45,105.68
|
||||
C101.1,105.77,100.4,105.96,100.05,106.05 C96.75,102.67,96.3,97.32,92.83,94.08
|
||||
C90.19,92.61,88.59,95.75,87.63,97.68 C85.26,102.87,82.23,107.77,80.21,113.11
|
||||
C78.99,115.54,81.76,117.35,83.95,116.96 C97.3,117.1,110.65,116.92,124,117.04
|
||||
C125.72,116.89,127.67,117.19,129.19,116.21
|
||||
C130.93,114.51,129.46,112.14,128.7,110.34
|
||||
C124.84,102.81,121.14,95.19,117.31,87.64 C116.51,85.71,114.42,83.63,112.33,85.3
|
||||
Z"
|
||||
android:strokeAlpha="0.18" />
|
||||
</vector>
|
@ -1,43 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="@dimen/dp_180"
|
||||
android:height="@dimen/dp_180"
|
||||
android:viewportWidth="180"
|
||||
android:viewportHeight="180">
|
||||
|
||||
<path
|
||||
android:fillColor="@color/black"
|
||||
android:fillAlpha="0.18"
|
||||
android:strokeAlpha="0.18"
|
||||
android:pathData="M116.69,42.5 C118.34,42.3,120.68,41.43,121.74,43.27
|
||||
C122.94,46.03,123.19,49.07,123.84,51.98 C124.39,55.2,125.59,58.45,124.77,61.74
|
||||
C110.83,60.27,96.93,58.41,83.01,56.68 C79.82,56.36,76.64,55.92,73.55,55.04
|
||||
C74.11,53.54,74.86,51.92,76.67,51.72 C89.99,48.59,103.36,45.63,116.69,42.5 Z" />
|
||||
<path
|
||||
android:fillColor="@color/black"
|
||||
android:fillAlpha="0.18"
|
||||
android:strokeAlpha="0.18"
|
||||
android:pathData="M39.17,62.06 C39.85,59.59,42.92,59.71,44.91,59.02
|
||||
C45.75,64.24,44.56,69.47,43.63,74.6 C43.05,74.66,41.91,74.77,41.34,74.83
|
||||
C40.41,70.62,39.1,66.41,39.17,62.06 Z" />
|
||||
<path
|
||||
android:fillColor="@color/black"
|
||||
android:fillAlpha="0.18"
|
||||
android:strokeAlpha="0.18"
|
||||
android:pathData="M55.17,63.02 C56.68,62.27,58.44,62.9,60.04,62.93
|
||||
C85.05,66.1,110.07,69.09,135.08,72.19 C138.1,72.15,139.04,75.49,138.56,77.95
|
||||
C136.78,94.98,134.69,111.99,132.7,129 C132.23,132.41,132.31,135.96,131.14,139.24
|
||||
C129.69,141.09,127.08,140.18,125.09,140.15
|
||||
C102.51,137.22,79.9,134.5,57.32,131.53 C54.25,131.04,51,131.11,48.08,129.93
|
||||
C46.39,128.87,46.92,126.63,46.99,124.98 C49.21,106.65,51.23,88.31,53.18,69.95
|
||||
C53.69,67.69,53.14,64.57,55.17,63.02 M118.3,81.47
|
||||
C114.1,83.2,112.65,88.96,115.62,92.43 C118.38,96.38,125.14,95.34,126.76,90.86
|
||||
C128.97,85.83,123.8,79.05,118.3,81.47 M84.19,87.31
|
||||
C82.76,88.13,81.59,89.33,80.43,90.49 C73.1,98.12,65.54,105.54,58.11,113.07
|
||||
C56.74,114.2,56.52,116.68,58.35,117.48 C61.47,118.46,64.76,118.66,67.99,119.05
|
||||
C79.67,120.21,91.26,122.13,102.94,123.32 C108.96,123.91,114.94,125.48,121,125.15
|
||||
C122.17,125.26,123.01,123.61,122.26,122.73
|
||||
C118.02,115.66,113.63,108.67,109.28,101.66
|
||||
C108.33,100.31,107.51,98.68,105.95,97.94 C102.43,97.99,100.63,103.03,97.03,101.9
|
||||
C93.15,97.93,91.6,92.26,87.88,88.14 C86.97,87.13,85.45,86.64,84.19,87.31 Z" />
|
||||
</vector>
|