Merge branch 'master' into feat/scoped-storage
# Conflicts: # commons/src/main/kotlin/com/simplemobiletools/commons/activities/BaseSimpleActivity.kt # commons/src/main/kotlin/com/simplemobiletools/commons/adapters/FilepickerItemsAdapter.kt
|
@ -25,7 +25,7 @@
|
||||||
android:name="com.samsung.android.providers.context.permission.WRITE_USE_APP_FEATURE_SURVEY"
|
android:name="com.samsung.android.providers.context.permission.WRITE_USE_APP_FEATURE_SURVEY"
|
||||||
tools:node="remove" />
|
tools:node="remove" />
|
||||||
|
|
||||||
<application>
|
<application android:supportsRtl="true">
|
||||||
<activity
|
<activity
|
||||||
android:name="com.simplemobiletools.commons.activities.ContributorsActivity"
|
android:name="com.simplemobiletools.commons.activities.ContributorsActivity"
|
||||||
android:label="@string/contributors"
|
android:label="@string/contributors"
|
||||||
|
|
|
@ -1,15 +1,15 @@
|
||||||
package com.simplemobiletools.commons.activities
|
package com.simplemobiletools.commons.activities
|
||||||
|
|
||||||
|
import android.content.ActivityNotFoundException
|
||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
|
import android.content.Intent.*
|
||||||
import android.os.Build
|
import android.os.Build
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import android.text.Html
|
import android.os.Handler
|
||||||
import android.text.method.LinkMovementMethod
|
|
||||||
import android.view.Menu
|
import android.view.Menu
|
||||||
import android.view.View
|
import androidx.core.net.toUri
|
||||||
import com.simplemobiletools.commons.R
|
import com.simplemobiletools.commons.R
|
||||||
import com.simplemobiletools.commons.dialogs.ConfirmationAdvancedDialog
|
import com.simplemobiletools.commons.dialogs.ConfirmationAdvancedDialog
|
||||||
import com.simplemobiletools.commons.dialogs.ConfirmationDialog
|
|
||||||
import com.simplemobiletools.commons.dialogs.RateStarsDialog
|
import com.simplemobiletools.commons.dialogs.RateStarsDialog
|
||||||
import com.simplemobiletools.commons.extensions.*
|
import com.simplemobiletools.commons.extensions.*
|
||||||
import com.simplemobiletools.commons.helpers.*
|
import com.simplemobiletools.commons.helpers.*
|
||||||
|
@ -21,6 +21,11 @@ class AboutActivity : BaseSimpleActivity() {
|
||||||
private var appName = ""
|
private var appName = ""
|
||||||
private var linkColor = 0
|
private var linkColor = 0
|
||||||
|
|
||||||
|
private var firstVersionClickTS = 0L
|
||||||
|
private var clicksSinceFirstClick = 0
|
||||||
|
private val EASTER_EGG_TIME_LIMIT = 3000L
|
||||||
|
private val EASTER_EGG_REQUIRED_CLICKS = 7
|
||||||
|
|
||||||
override fun getAppIconIDs() = intent.getIntegerArrayListExtra(APP_ICON_IDS) ?: ArrayList()
|
override fun getAppIconIDs() = intent.getIntegerArrayListExtra(APP_ICON_IDS) ?: ArrayList()
|
||||||
|
|
||||||
override fun getAppLauncherName() = intent.getStringExtra(APP_LAUNCHER_NAME) ?: ""
|
override fun getAppLauncherName() = intent.getStringExtra(APP_LAUNCHER_NAME) ?: ""
|
||||||
|
@ -30,13 +35,33 @@ class AboutActivity : BaseSimpleActivity() {
|
||||||
setContentView(R.layout.activity_about)
|
setContentView(R.layout.activity_about)
|
||||||
appName = intent.getStringExtra(APP_NAME) ?: ""
|
appName = intent.getStringExtra(APP_NAME) ?: ""
|
||||||
linkColor = getAdjustedPrimaryColor()
|
linkColor = getAdjustedPrimaryColor()
|
||||||
|
|
||||||
|
arrayOf(
|
||||||
|
about_faq_icon,
|
||||||
|
about_rate_us_icon,
|
||||||
|
about_invite_icon,
|
||||||
|
about_contributors_icon,
|
||||||
|
about_more_apps_icon,
|
||||||
|
about_email_icon,
|
||||||
|
about_licenses_icon,
|
||||||
|
about_version_icon
|
||||||
|
).forEach {
|
||||||
|
it.applyColorFilter(baseConfig.textColor)
|
||||||
|
}
|
||||||
|
|
||||||
|
arrayOf(about_support, about_help_us, about_social, about_other).forEach {
|
||||||
|
it.setTextColor(getAdjustedPrimaryColor())
|
||||||
|
}
|
||||||
|
|
||||||
|
arrayOf(about_support_holder, about_help_us_holder, about_social_holder, about_other_holder).forEach {
|
||||||
|
it.background.applyColorFilter(baseConfig.backgroundColor.getContrastColor())
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onResume() {
|
override fun onResume() {
|
||||||
super.onResume()
|
super.onResume()
|
||||||
updateTextColors(about_holder)
|
updateTextColors(about_holder)
|
||||||
|
|
||||||
setupWebsite()
|
|
||||||
setupEmail()
|
setupEmail()
|
||||||
setupFAQ()
|
setupFAQ()
|
||||||
setupMoreApps()
|
setupMoreApps()
|
||||||
|
@ -46,7 +71,7 @@ class AboutActivity : BaseSimpleActivity() {
|
||||||
setupLicense()
|
setupLicense()
|
||||||
setupFacebook()
|
setupFacebook()
|
||||||
setupReddit()
|
setupReddit()
|
||||||
setupCopyright()
|
setupVersion()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onCreateOptionsMenu(menu: Menu): Boolean {
|
override fun onCreateOptionsMenu(menu: Menu): Boolean {
|
||||||
|
@ -54,122 +79,108 @@ class AboutActivity : BaseSimpleActivity() {
|
||||||
return super.onCreateOptionsMenu(menu)
|
return super.onCreateOptionsMenu(menu)
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun setupWebsite() {
|
|
||||||
val websiteText = String.format(getString(R.string.two_string_placeholder), getString(R.string.website_label), getString(R.string.my_website))
|
|
||||||
about_website.text = websiteText
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun setupEmail() {
|
private fun setupEmail() {
|
||||||
val label = getString(R.string.email_label)
|
about_email_holder.setOnClickListener {
|
||||||
val email = getString(R.string.my_email)
|
val msg = "${getString(R.string.before_asking_question_read_faq)}\n\n${getString(R.string.make_sure_latest)}"
|
||||||
|
if (intent.getBooleanExtra(SHOW_FAQ_BEFORE_MAIL, false) && !baseConfig.wasBeforeAskingShown) {
|
||||||
val appVersion = String.format(getString(R.string.app_version, intent.getStringExtra(APP_VERSION_NAME)))
|
|
||||||
val deviceOS = String.format(getString(R.string.device_os), Build.VERSION.RELEASE)
|
|
||||||
val newline = "%0D%0A"
|
|
||||||
val separator = "------------------------------"
|
|
||||||
val body = "$appVersion$newline$deviceOS$newline$separator$newline$newline"
|
|
||||||
val href = "$label<br><a href=\"mailto:$email?subject=$appName&body=$body\">$email</a>"
|
|
||||||
about_email.text = Html.fromHtml(href)
|
|
||||||
|
|
||||||
if (intent.getBooleanExtra(SHOW_FAQ_BEFORE_MAIL, false) && !baseConfig.wasBeforeAskingShown) {
|
|
||||||
about_email.setOnClickListener {
|
|
||||||
baseConfig.wasBeforeAskingShown = true
|
baseConfig.wasBeforeAskingShown = true
|
||||||
about_email.movementMethod = LinkMovementMethod.getInstance()
|
ConfirmationAdvancedDialog(this, msg, 0, R.string.read_faq, R.string.skip) { success ->
|
||||||
about_email.setOnClickListener(null)
|
if (success) {
|
||||||
val msg = "${getString(R.string.before_asking_question_read_faq)}\n\n${getString(R.string.make_sure_latest)}"
|
about_faq_holder.performClick()
|
||||||
ConfirmationDialog(this, msg, 0, R.string.read_faq, R.string.skip) {
|
} else {
|
||||||
about_faq_label.performClick()
|
about_email_holder.performClick()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
val appVersion = String.format(getString(R.string.app_version, intent.getStringExtra(APP_VERSION_NAME)))
|
||||||
|
val deviceOS = String.format(getString(R.string.device_os), Build.VERSION.RELEASE)
|
||||||
|
val newline = "\n"
|
||||||
|
val separator = "------------------------------"
|
||||||
|
val body = "$appVersion$newline$deviceOS$newline$separator$newline$newline"
|
||||||
|
|
||||||
|
val address = getString(R.string.my_email)
|
||||||
|
val selectorIntent = Intent(ACTION_SENDTO)
|
||||||
|
.setData("mailto:$address".toUri())
|
||||||
|
val emailIntent = Intent(ACTION_SEND).apply {
|
||||||
|
putExtra(EXTRA_EMAIL, arrayOf(address))
|
||||||
|
putExtra(EXTRA_SUBJECT, appName)
|
||||||
|
putExtra(EXTRA_TEXT, body)
|
||||||
|
selector = selectorIntent
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
startActivity(emailIntent)
|
||||||
|
} catch (e: ActivityNotFoundException) {
|
||||||
|
toast(R.string.no_app_found)
|
||||||
|
} catch (e: Exception) {
|
||||||
|
showErrorToast(e)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
about_email.movementMethod = LinkMovementMethod.getInstance()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun setupFAQ() {
|
private fun setupFAQ() {
|
||||||
val faqItems = intent.getSerializableExtra(APP_FAQ) as ArrayList<FAQItem>
|
val faqItems = intent.getSerializableExtra(APP_FAQ) as ArrayList<FAQItem>
|
||||||
about_faq_label.beVisibleIf(faqItems.isNotEmpty())
|
about_faq_holder.setOnClickListener {
|
||||||
about_faq_label.setOnClickListener {
|
Intent(applicationContext, FAQActivity::class.java).apply {
|
||||||
openFAQ(faqItems)
|
putExtra(APP_ICON_IDS, getAppIconIDs())
|
||||||
}
|
putExtra(APP_LAUNCHER_NAME, getAppLauncherName())
|
||||||
|
putExtra(APP_FAQ, faqItems)
|
||||||
about_faq.beVisibleIf(faqItems.isNotEmpty())
|
startActivity(this)
|
||||||
about_faq.setOnClickListener {
|
}
|
||||||
openFAQ(faqItems)
|
|
||||||
}
|
|
||||||
|
|
||||||
about_faq.setTextColor(linkColor)
|
|
||||||
about_faq.underlineText()
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun openFAQ(faqItems: ArrayList<FAQItem>) {
|
|
||||||
Intent(applicationContext, FAQActivity::class.java).apply {
|
|
||||||
putExtra(APP_ICON_IDS, getAppIconIDs())
|
|
||||||
putExtra(APP_LAUNCHER_NAME, getAppLauncherName())
|
|
||||||
putExtra(APP_FAQ, faqItems)
|
|
||||||
startActivity(this)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun setupMoreApps() {
|
private fun setupMoreApps() {
|
||||||
about_more_apps.setOnClickListener {
|
about_more_apps_holder.setOnClickListener {
|
||||||
launchViewIntent("https://play.google.com/store/apps/dev?id=9070296388022589266")
|
launchViewIntent("https://play.google.com/store/apps/dev?id=9070296388022589266")
|
||||||
}
|
}
|
||||||
about_more_apps.setTextColor(linkColor)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun setupInvite() {
|
private fun setupInvite() {
|
||||||
about_invite.setOnClickListener {
|
about_invite_holder.setOnClickListener {
|
||||||
val text = String.format(getString(R.string.share_text), appName, getStoreUrl())
|
val text = String.format(getString(R.string.share_text), appName, getStoreUrl())
|
||||||
Intent().apply {
|
Intent().apply {
|
||||||
action = Intent.ACTION_SEND
|
action = ACTION_SEND
|
||||||
putExtra(Intent.EXTRA_SUBJECT, appName)
|
putExtra(EXTRA_SUBJECT, appName)
|
||||||
putExtra(Intent.EXTRA_TEXT, text)
|
putExtra(EXTRA_TEXT, text)
|
||||||
type = "text/plain"
|
type = "text/plain"
|
||||||
startActivity(Intent.createChooser(this, getString(R.string.invite_via)))
|
startActivity(createChooser(this, getString(R.string.invite_via)))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
about_invite.setTextColor(linkColor)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun setupContributors() {
|
private fun setupContributors() {
|
||||||
about_contributors.setTextColor(linkColor)
|
about_contributors_holder.setOnClickListener {
|
||||||
about_contributors.underlineText()
|
|
||||||
about_contributors.setOnClickListener {
|
|
||||||
val intent = Intent(applicationContext, ContributorsActivity::class.java)
|
val intent = Intent(applicationContext, ContributorsActivity::class.java)
|
||||||
startActivity(intent)
|
startActivity(intent)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun setupRateUs() {
|
private fun setupRateUs() {
|
||||||
if (baseConfig.appRunCount < 5) {
|
about_rate_us_holder.setOnClickListener {
|
||||||
about_rate_us.visibility = View.GONE
|
if (baseConfig.wasBeforeRateShown) {
|
||||||
} else {
|
if (baseConfig.wasAppRated) {
|
||||||
about_rate_us.setOnClickListener {
|
redirectToRateUs()
|
||||||
if (baseConfig.wasBeforeRateShown) {
|
|
||||||
if (baseConfig.wasAppRated) {
|
|
||||||
redirectToRateUs()
|
|
||||||
} else {
|
|
||||||
RateStarsDialog(this)
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
baseConfig.wasBeforeRateShown = true
|
RateStarsDialog(this)
|
||||||
val msg = "${getString(R.string.before_rate_read_faq)}\n\n${getString(R.string.make_sure_latest)}"
|
}
|
||||||
ConfirmationAdvancedDialog(this, msg, 0, R.string.read_faq, R.string.skip) {
|
} else {
|
||||||
if (it) {
|
baseConfig.wasBeforeRateShown = true
|
||||||
about_faq_label.performClick()
|
val msg = "${getString(R.string.before_rate_read_faq)}\n\n${getString(R.string.make_sure_latest)}"
|
||||||
} else {
|
ConfirmationAdvancedDialog(this, msg, 0, R.string.read_faq, R.string.skip) { success ->
|
||||||
about_rate_us.performClick()
|
if (success) {
|
||||||
}
|
about_faq_holder.performClick()
|
||||||
|
} else {
|
||||||
|
about_rate_us_holder.performClick()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
about_rate_us.setTextColor(linkColor)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun setupLicense() {
|
private fun setupLicense() {
|
||||||
about_license.setOnClickListener {
|
about_licenses_holder.setOnClickListener {
|
||||||
Intent(applicationContext, LicenseActivity::class.java).apply {
|
Intent(applicationContext, LicenseActivity::class.java).apply {
|
||||||
putExtra(APP_ICON_IDS, getAppIconIDs())
|
putExtra(APP_ICON_IDS, getAppIconIDs())
|
||||||
putExtra(APP_LAUNCHER_NAME, getAppLauncherName())
|
putExtra(APP_LAUNCHER_NAME, getAppLauncherName())
|
||||||
|
@ -177,11 +188,10 @@ class AboutActivity : BaseSimpleActivity() {
|
||||||
startActivity(this)
|
startActivity(this)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
about_license.setTextColor(linkColor)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun setupFacebook() {
|
private fun setupFacebook() {
|
||||||
about_facebook.setOnClickListener {
|
about_facebook_holder.setOnClickListener {
|
||||||
var link = "https://www.facebook.com/simplemobiletools"
|
var link = "https://www.facebook.com/simplemobiletools"
|
||||||
try {
|
try {
|
||||||
packageManager.getPackageInfo("com.facebook.katana", 0)
|
packageManager.getPackageInfo("com.facebook.katana", 0)
|
||||||
|
@ -194,18 +204,34 @@ class AboutActivity : BaseSimpleActivity() {
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun setupReddit() {
|
private fun setupReddit() {
|
||||||
about_reddit.setOnClickListener {
|
about_reddit_holder.setOnClickListener {
|
||||||
launchViewIntent("https://www.reddit.com/r/SimpleMobileTools")
|
launchViewIntent("https://www.reddit.com/r/SimpleMobileTools")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun setupCopyright() {
|
private fun setupVersion() {
|
||||||
var versionName = intent.getStringExtra(APP_VERSION_NAME) ?: ""
|
var version = intent.getStringExtra(APP_VERSION_NAME) ?: ""
|
||||||
if (baseConfig.appId.removeSuffix(".debug").endsWith(".pro")) {
|
if (baseConfig.appId.removeSuffix(".debug").endsWith(".pro")) {
|
||||||
versionName += " ${getString(R.string.pro)}"
|
version += " ${getString(R.string.pro)}"
|
||||||
}
|
}
|
||||||
|
|
||||||
val year = Calendar.getInstance().get(Calendar.YEAR)
|
val fullVersion = String.format(getString(R.string.version_placeholder, version))
|
||||||
about_copyright.text = String.format(getString(R.string.copyright), versionName, year)
|
about_version.text = fullVersion
|
||||||
|
about_version_holder.setOnClickListener {
|
||||||
|
if (firstVersionClickTS == 0L) {
|
||||||
|
firstVersionClickTS = System.currentTimeMillis()
|
||||||
|
Handler().postDelayed({
|
||||||
|
firstVersionClickTS = 0L
|
||||||
|
clicksSinceFirstClick = 0
|
||||||
|
}, EASTER_EGG_TIME_LIMIT)
|
||||||
|
}
|
||||||
|
|
||||||
|
clicksSinceFirstClick++
|
||||||
|
if (clicksSinceFirstClick >= EASTER_EGG_REQUIRED_CLICKS) {
|
||||||
|
toast(R.string.hello)
|
||||||
|
firstVersionClickTS = 0L
|
||||||
|
clicksSinceFirstClick = 0
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,6 +3,7 @@ package com.simplemobiletools.commons.activities
|
||||||
import android.annotation.SuppressLint
|
import android.annotation.SuppressLint
|
||||||
import android.app.Activity
|
import android.app.Activity
|
||||||
import android.app.ActivityManager
|
import android.app.ActivityManager
|
||||||
|
import android.app.RecoverableSecurityException
|
||||||
import android.app.role.RoleManager
|
import android.app.role.RoleManager
|
||||||
import android.content.ActivityNotFoundException
|
import android.content.ActivityNotFoundException
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
|
@ -17,7 +18,6 @@ import android.provider.DocumentsContract
|
||||||
import android.provider.MediaStore
|
import android.provider.MediaStore
|
||||||
import android.provider.Settings
|
import android.provider.Settings
|
||||||
import android.telecom.TelecomManager
|
import android.telecom.TelecomManager
|
||||||
import android.util.Log
|
|
||||||
import android.view.Menu
|
import android.view.Menu
|
||||||
import android.view.MenuItem
|
import android.view.MenuItem
|
||||||
import android.view.View
|
import android.view.View
|
||||||
|
@ -54,11 +54,12 @@ abstract class BaseSimpleActivity : AppCompatActivity() {
|
||||||
|
|
||||||
private val GENERIC_PERM_HANDLER = 100
|
private val GENERIC_PERM_HANDLER = 100
|
||||||
private val DELETE_FILE_SDK_30_HANDLER = 300
|
private val DELETE_FILE_SDK_30_HANDLER = 300
|
||||||
|
private val RECOVERABLE_SECURITY_HANDLER = 301
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
var funAfterSAFPermission: ((success: Boolean) -> Unit)? = null
|
var funAfterSAFPermission: ((success: Boolean) -> Unit)? = null
|
||||||
var funAfterDelete30File: ((success: Boolean) -> Unit)? = null
|
var funAfterDelete30File: ((success: Boolean) -> Unit)? = null
|
||||||
private const val TAG = "BaseSimpleActivity"
|
var funRecoverableSecurity: ((success: Boolean) -> Unit)? = null
|
||||||
}
|
}
|
||||||
|
|
||||||
abstract fun getAppIconIDs(): ArrayList<Int>
|
abstract fun getAppIconIDs(): ArrayList<Int>
|
||||||
|
@ -132,7 +133,7 @@ abstract class BaseSimpleActivity : AppCompatActivity() {
|
||||||
}
|
}
|
||||||
|
|
||||||
fun updateStatusbarColor(color: Int) {
|
fun updateStatusbarColor(color: Int) {
|
||||||
window.statusBarColor = color.darkenColor()
|
window.statusBarColor = color
|
||||||
|
|
||||||
if (isMarshmallowPlus()) {
|
if (isMarshmallowPlus()) {
|
||||||
if (color.getContrastColor() == 0xFF333333.toInt()) {
|
if (color.getContrastColor() == 0xFF333333.toInt()) {
|
||||||
|
@ -191,7 +192,7 @@ abstract class BaseSimpleActivity : AppCompatActivity() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
val drawableId = if (useCrossAsBack) R.drawable.ic_cross_vector else R.drawable.ic_arrow_left_vector
|
val drawableId = if (useCrossAsBack) R.drawable.ic_cross_original_vector else R.drawable.ic_arrow_left_original_vector
|
||||||
val icon = resources.getColoredDrawableWithColor(drawableId, color)
|
val icon = resources.getColoredDrawableWithColor(drawableId, color)
|
||||||
supportActionBar?.setHomeAsUpIndicator(icon)
|
supportActionBar?.setHomeAsUpIndicator(icon)
|
||||||
}
|
}
|
||||||
|
@ -212,7 +213,6 @@ abstract class BaseSimpleActivity : AppCompatActivity() {
|
||||||
|
|
||||||
override fun onActivityResult(requestCode: Int, resultCode: Int, resultData: Intent?) {
|
override fun onActivityResult(requestCode: Int, resultCode: Int, resultData: Intent?) {
|
||||||
super.onActivityResult(requestCode, resultCode, resultData)
|
super.onActivityResult(requestCode, resultCode, resultData)
|
||||||
Log.i(TAG, "onActivityResult: checkedDocumentPath=$checkedDocumentPath")
|
|
||||||
val partition = try {
|
val partition = try {
|
||||||
checkedDocumentPath.substring(9, 18)
|
checkedDocumentPath.substring(9, 18)
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
|
@ -298,6 +298,9 @@ abstract class BaseSimpleActivity : AppCompatActivity() {
|
||||||
exportSettingsTo(outputStream, configItemsToExport)
|
exportSettingsTo(outputStream, configItemsToExport)
|
||||||
} else if (requestCode == DELETE_FILE_SDK_30_HANDLER) {
|
} else if (requestCode == DELETE_FILE_SDK_30_HANDLER) {
|
||||||
funAfterDelete30File?.invoke(resultCode == Activity.RESULT_OK)
|
funAfterDelete30File?.invoke(resultCode == Activity.RESULT_OK)
|
||||||
|
} else if (requestCode == RECOVERABLE_SECURITY_HANDLER) {
|
||||||
|
funRecoverableSecurity?.invoke(resultCode == Activity.RESULT_OK)
|
||||||
|
funRecoverableSecurity = null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -446,6 +449,22 @@ abstract class BaseSimpleActivity : AppCompatActivity() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@SuppressLint("NewApi")
|
||||||
|
fun handleRecoverableSecurityException(callback: (success: Boolean) -> Unit) {
|
||||||
|
try {
|
||||||
|
callback.invoke(true)
|
||||||
|
} catch (securityException: SecurityException) {
|
||||||
|
if (isQPlus()) {
|
||||||
|
funRecoverableSecurity = callback
|
||||||
|
val recoverableSecurityException = securityException as? RecoverableSecurityException ?: throw securityException
|
||||||
|
val intentSender = recoverableSecurityException.userAction.actionIntent.intentSender
|
||||||
|
startIntentSenderForResult(intentSender, RECOVERABLE_SECURITY_HANDLER, null, 0, 0, 0)
|
||||||
|
} else {
|
||||||
|
callback(false)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fun copyMoveFilesTo(
|
fun copyMoveFilesTo(
|
||||||
fileDirItems: ArrayList<FileDirItem>, source: String, destination: String, isCopyOperation: Boolean, copyPhotoVideoOnly: Boolean,
|
fileDirItems: ArrayList<FileDirItem>, source: String, destination: String, isCopyOperation: Boolean, copyPhotoVideoOnly: Boolean,
|
||||||
copyHidden: Boolean, callback: (destinationPath: String) -> Unit
|
copyHidden: Boolean, callback: (destinationPath: String) -> Unit
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
package com.simplemobiletools.commons.activities
|
package com.simplemobiletools.commons.activities
|
||||||
|
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
|
import android.text.Html
|
||||||
|
import android.text.method.LinkMovementMethod
|
||||||
import android.view.Menu
|
import android.view.Menu
|
||||||
import com.simplemobiletools.commons.R
|
import com.simplemobiletools.commons.R
|
||||||
import com.simplemobiletools.commons.extensions.getAdjustedPrimaryColor
|
import com.simplemobiletools.commons.extensions.*
|
||||||
import com.simplemobiletools.commons.extensions.underlineText
|
|
||||||
import com.simplemobiletools.commons.extensions.updateTextColors
|
|
||||||
import com.simplemobiletools.commons.helpers.APP_ICON_IDS
|
import com.simplemobiletools.commons.helpers.APP_ICON_IDS
|
||||||
import com.simplemobiletools.commons.helpers.APP_LAUNCHER_NAME
|
import com.simplemobiletools.commons.helpers.APP_LAUNCHER_NAME
|
||||||
import kotlinx.android.synthetic.main.activity_contributors.*
|
import kotlinx.android.synthetic.main.activity_contributors.*
|
||||||
|
@ -21,12 +21,23 @@ class ContributorsActivity : BaseSimpleActivity() {
|
||||||
setContentView(R.layout.activity_contributors)
|
setContentView(R.layout.activity_contributors)
|
||||||
|
|
||||||
updateTextColors(contributors_holder)
|
updateTextColors(contributors_holder)
|
||||||
|
|
||||||
contributors_development_label.setTextColor(getAdjustedPrimaryColor())
|
contributors_development_label.setTextColor(getAdjustedPrimaryColor())
|
||||||
contributors_development_label.underlineText()
|
|
||||||
|
|
||||||
contributors_translation_label.setTextColor(getAdjustedPrimaryColor())
|
contributors_translation_label.setTextColor(getAdjustedPrimaryColor())
|
||||||
contributors_translation_label.underlineText()
|
|
||||||
|
contributors_label.apply {
|
||||||
|
setTextColor(baseConfig.textColor)
|
||||||
|
text = Html.fromHtml(getString(R.string.contributors_label))
|
||||||
|
setLinkTextColor(getAdjustedPrimaryColor())
|
||||||
|
movementMethod = LinkMovementMethod.getInstance()
|
||||||
|
removeUnderlines()
|
||||||
|
}
|
||||||
|
|
||||||
|
contributors_development_icon.applyColorFilter(baseConfig.textColor)
|
||||||
|
contributors_footer_icon.applyColorFilter(baseConfig.textColor)
|
||||||
|
|
||||||
|
arrayOf(contributors_development_holder, contributors_translation_holder).forEach {
|
||||||
|
it.background.applyColorFilter(baseConfig.backgroundColor.getContrastColor())
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onCreateOptionsMenu(menu: Menu): Boolean {
|
override fun onCreateOptionsMenu(menu: Menu): Boolean {
|
||||||
|
|
|
@ -2,6 +2,8 @@ package com.simplemobiletools.commons.activities
|
||||||
|
|
||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
import android.graphics.Color
|
import android.graphics.Color
|
||||||
|
import android.graphics.drawable.LayerDrawable
|
||||||
|
import android.graphics.drawable.RippleDrawable
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import android.view.Menu
|
import android.view.Menu
|
||||||
import android.view.MenuItem
|
import android.view.MenuItem
|
||||||
|
@ -82,7 +84,6 @@ class CustomizationActivity : BaseSimpleActivity() {
|
||||||
baseConfig.isUsingSharedTheme = false
|
baseConfig.isUsingSharedTheme = false
|
||||||
}
|
}
|
||||||
|
|
||||||
supportActionBar?.setHomeAsUpIndicator(R.drawable.ic_cross_vector)
|
|
||||||
updateTextColors(customization_holder)
|
updateTextColors(customization_holder)
|
||||||
originalAppIconColor = baseConfig.appIconColor
|
originalAppIconColor = baseConfig.appIconColor
|
||||||
}
|
}
|
||||||
|
@ -265,6 +266,7 @@ class CustomizationActivity : BaseSimpleActivity() {
|
||||||
updateActionbarColor(curPrimaryColor)
|
updateActionbarColor(curPrimaryColor)
|
||||||
updateNavigationBarColor(curNavigationBarColor)
|
updateNavigationBarColor(curNavigationBarColor)
|
||||||
updateAutoThemeFields()
|
updateAutoThemeFields()
|
||||||
|
updateApplyToAllColors(curPrimaryColor)
|
||||||
handleAccentColorLayout()
|
handleAccentColorLayout()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -400,13 +402,13 @@ class CustomizationActivity : BaseSimpleActivity() {
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun setupColorsPickers() {
|
private fun setupColorsPickers() {
|
||||||
val cornerRadius = getCornerRadius()
|
customization_text_color.setFillWithStroke(curTextColor, curBackgroundColor)
|
||||||
customization_text_color.setFillWithStroke(curTextColor, curBackgroundColor, cornerRadius)
|
customization_primary_color.setFillWithStroke(curPrimaryColor, curBackgroundColor)
|
||||||
customization_primary_color.setFillWithStroke(curPrimaryColor, curBackgroundColor, cornerRadius)
|
customization_accent_color.setFillWithStroke(curAccentColor, curBackgroundColor)
|
||||||
customization_accent_color.setFillWithStroke(curAccentColor, curBackgroundColor, cornerRadius)
|
customization_background_color.setFillWithStroke(curBackgroundColor, curBackgroundColor)
|
||||||
customization_background_color.setFillWithStroke(curBackgroundColor, curBackgroundColor, cornerRadius)
|
customization_app_icon_color.setFillWithStroke(curAppIconColor, curBackgroundColor)
|
||||||
customization_app_icon_color.setFillWithStroke(curAppIconColor, curBackgroundColor, cornerRadius)
|
customization_navigation_bar_color.setFillWithStroke(curNavigationBarColor, curBackgroundColor)
|
||||||
customization_navigation_bar_color.setFillWithStroke(curNavigationBarColor, curBackgroundColor, cornerRadius)
|
apply_to_all.setTextColor(curPrimaryColor.getContrastColor())
|
||||||
|
|
||||||
customization_text_color_holder.setOnClickListener { pickTextColor() }
|
customization_text_color_holder.setOnClickListener { pickTextColor() }
|
||||||
customization_background_color_holder.setOnClickListener { pickBackgroundColor() }
|
customization_background_color_holder.setOnClickListener { pickBackgroundColor() }
|
||||||
|
@ -415,7 +417,10 @@ class CustomizationActivity : BaseSimpleActivity() {
|
||||||
|
|
||||||
handleAccentColorLayout()
|
handleAccentColorLayout()
|
||||||
customization_navigation_bar_color_holder.setOnClickListener { pickNavigationBarColor() }
|
customization_navigation_bar_color_holder.setOnClickListener { pickNavigationBarColor() }
|
||||||
apply_to_all_holder.setOnClickListener { applyToAll() }
|
apply_to_all.setOnClickListener {
|
||||||
|
applyToAll()
|
||||||
|
}
|
||||||
|
|
||||||
customization_app_icon_color_holder.setOnClickListener {
|
customization_app_icon_color_holder.setOnClickListener {
|
||||||
if (baseConfig.wasAppIconCustomizationWarningShown) {
|
if (baseConfig.wasAppIconCustomizationWarningShown) {
|
||||||
pickAppIconColor()
|
pickAppIconColor()
|
||||||
|
@ -449,6 +454,17 @@ class CustomizationActivity : BaseSimpleActivity() {
|
||||||
private fun setCurrentPrimaryColor(color: Int) {
|
private fun setCurrentPrimaryColor(color: Int) {
|
||||||
curPrimaryColor = color
|
curPrimaryColor = color
|
||||||
updateActionbarColor(color)
|
updateActionbarColor(color)
|
||||||
|
updateApplyToAllColors(color)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun updateApplyToAllColors(newColor: Int) {
|
||||||
|
if (newColor == baseConfig.primaryColor) {
|
||||||
|
apply_to_all.setBackgroundResource(R.drawable.button_background_rounded)
|
||||||
|
} else {
|
||||||
|
val applyBackground = resources.getDrawable(R.drawable.button_background_rounded) as RippleDrawable
|
||||||
|
(applyBackground as LayerDrawable).findDrawableByLayerId(R.id.button_background_holder).applyColorFilter(newColor)
|
||||||
|
apply_to_all.background = applyBackground
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun setCurrentNavigationBarColor(color: Int) {
|
private fun setCurrentNavigationBarColor(color: Int) {
|
||||||
|
|
|
@ -1,18 +1,19 @@
|
||||||
package com.simplemobiletools.commons.activities
|
package com.simplemobiletools.commons.activities
|
||||||
|
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
|
import android.text.Html
|
||||||
|
import android.text.method.LinkMovementMethod
|
||||||
import android.view.LayoutInflater
|
import android.view.LayoutInflater
|
||||||
import android.view.Menu
|
import android.view.Menu
|
||||||
|
import android.widget.LinearLayout
|
||||||
import com.simplemobiletools.commons.R
|
import com.simplemobiletools.commons.R
|
||||||
import com.simplemobiletools.commons.extensions.baseConfig
|
import com.simplemobiletools.commons.extensions.*
|
||||||
import com.simplemobiletools.commons.extensions.getAdjustedPrimaryColor
|
|
||||||
import com.simplemobiletools.commons.extensions.underlineText
|
|
||||||
import com.simplemobiletools.commons.helpers.APP_FAQ
|
import com.simplemobiletools.commons.helpers.APP_FAQ
|
||||||
import com.simplemobiletools.commons.helpers.APP_ICON_IDS
|
import com.simplemobiletools.commons.helpers.APP_ICON_IDS
|
||||||
import com.simplemobiletools.commons.helpers.APP_LAUNCHER_NAME
|
import com.simplemobiletools.commons.helpers.APP_LAUNCHER_NAME
|
||||||
import com.simplemobiletools.commons.models.FAQItem
|
import com.simplemobiletools.commons.models.FAQItem
|
||||||
import kotlinx.android.synthetic.main.activity_faq.*
|
import kotlinx.android.synthetic.main.activity_faq.*
|
||||||
import kotlinx.android.synthetic.main.faq_item.view.*
|
import kotlinx.android.synthetic.main.item_faq.view.*
|
||||||
import java.util.*
|
import java.util.*
|
||||||
|
|
||||||
class FAQActivity : BaseSimpleActivity() {
|
class FAQActivity : BaseSimpleActivity() {
|
||||||
|
@ -24,6 +25,7 @@ class FAQActivity : BaseSimpleActivity() {
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
setContentView(R.layout.activity_faq)
|
setContentView(R.layout.activity_faq)
|
||||||
|
|
||||||
|
val dividerMargin = resources.getDimension(R.dimen.medium_margin).toInt()
|
||||||
val titleColor = getAdjustedPrimaryColor()
|
val titleColor = getAdjustedPrimaryColor()
|
||||||
val textColor = baseConfig.textColor
|
val textColor = baseConfig.textColor
|
||||||
|
|
||||||
|
@ -31,18 +33,23 @@ class FAQActivity : BaseSimpleActivity() {
|
||||||
val faqItems = intent.getSerializableExtra(APP_FAQ) as ArrayList<FAQItem>
|
val faqItems = intent.getSerializableExtra(APP_FAQ) as ArrayList<FAQItem>
|
||||||
faqItems.forEach {
|
faqItems.forEach {
|
||||||
val faqItem = it
|
val faqItem = it
|
||||||
inflater.inflate(R.layout.faq_item, null).apply {
|
inflater.inflate(R.layout.item_faq, null).apply {
|
||||||
|
background.applyColorFilter(baseConfig.backgroundColor.getContrastColor())
|
||||||
faq_title.apply {
|
faq_title.apply {
|
||||||
text = if (faqItem.title is Int) getString(faqItem.title) else faqItem.title as String
|
text = if (faqItem.title is Int) getString(faqItem.title) else faqItem.title as String
|
||||||
underlineText()
|
|
||||||
setTextColor(titleColor)
|
setTextColor(titleColor)
|
||||||
}
|
}
|
||||||
|
|
||||||
faq_text.apply {
|
faq_text.apply {
|
||||||
text = if (faqItem.text is Int) getString(faqItem.text) else faqItem.text as String
|
text = if (faqItem.text is Int) Html.fromHtml(getString(faqItem.text)) else faqItem.text as String
|
||||||
setTextColor(textColor)
|
setTextColor(textColor)
|
||||||
|
setLinkTextColor(getAdjustedPrimaryColor())
|
||||||
|
|
||||||
|
movementMethod = LinkMovementMethod.getInstance()
|
||||||
|
removeUnderlines()
|
||||||
}
|
}
|
||||||
faq_holder.addView(this)
|
faq_holder.addView(this)
|
||||||
|
(layoutParams as LinearLayout.LayoutParams).bottomMargin = dividerMargin
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,12 +3,13 @@ package com.simplemobiletools.commons.activities
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import android.view.LayoutInflater
|
import android.view.LayoutInflater
|
||||||
import android.view.Menu
|
import android.view.Menu
|
||||||
|
import android.widget.LinearLayout
|
||||||
import com.simplemobiletools.commons.R
|
import com.simplemobiletools.commons.R
|
||||||
import com.simplemobiletools.commons.extensions.*
|
import com.simplemobiletools.commons.extensions.*
|
||||||
import com.simplemobiletools.commons.helpers.*
|
import com.simplemobiletools.commons.helpers.*
|
||||||
import com.simplemobiletools.commons.models.License
|
import com.simplemobiletools.commons.models.License
|
||||||
import kotlinx.android.synthetic.main.activity_license.*
|
import kotlinx.android.synthetic.main.activity_license.*
|
||||||
import kotlinx.android.synthetic.main.license_item.view.*
|
import kotlinx.android.synthetic.main.item_license.view.*
|
||||||
import java.util.*
|
import java.util.*
|
||||||
|
|
||||||
class LicenseActivity : BaseSimpleActivity() {
|
class LicenseActivity : BaseSimpleActivity() {
|
||||||
|
@ -20,7 +21,8 @@ class LicenseActivity : BaseSimpleActivity() {
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
setContentView(R.layout.activity_license)
|
setContentView(R.layout.activity_license)
|
||||||
|
|
||||||
val linkColor = getAdjustedPrimaryColor()
|
val dividerMargin = resources.getDimension(R.dimen.medium_margin).toInt()
|
||||||
|
val titleColor = getAdjustedPrimaryColor()
|
||||||
val textColor = baseConfig.textColor
|
val textColor = baseConfig.textColor
|
||||||
updateTextColors(licenses_holder)
|
updateTextColors(licenses_holder)
|
||||||
|
|
||||||
|
@ -29,19 +31,23 @@ class LicenseActivity : BaseSimpleActivity() {
|
||||||
val licenseMask = intent.getIntExtra(APP_LICENSES, 0) or LICENSE_KOTLIN
|
val licenseMask = intent.getIntExtra(APP_LICENSES, 0) or LICENSE_KOTLIN
|
||||||
licenses.filter { licenseMask and it.id != 0 }.forEach {
|
licenses.filter { licenseMask and it.id != 0 }.forEach {
|
||||||
val license = it
|
val license = it
|
||||||
inflater.inflate(R.layout.license_item, null).apply {
|
inflater.inflate(R.layout.item_license, null).apply {
|
||||||
|
background.applyColorFilter(baseConfig.backgroundColor.getContrastColor())
|
||||||
license_title.apply {
|
license_title.apply {
|
||||||
text = getString(license.titleId)
|
text = getString(license.titleId)
|
||||||
underlineText()
|
setTextColor(titleColor)
|
||||||
setTextColor(linkColor)
|
|
||||||
setOnClickListener {
|
setOnClickListener {
|
||||||
launchViewIntent(license.urlId)
|
launchViewIntent(license.urlId)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
license_text.text = getString(license.textId)
|
license_text.apply {
|
||||||
license_text.setTextColor(textColor)
|
text = getString(license.textId)
|
||||||
|
setTextColor(textColor)
|
||||||
|
}
|
||||||
|
|
||||||
licenses_holder.addView(this)
|
licenses_holder.addView(this)
|
||||||
|
(layoutParams as LinearLayout.LayoutParams).bottomMargin = dividerMargin
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,11 +18,8 @@ import com.simplemobiletools.commons.extensions.*
|
||||||
import com.simplemobiletools.commons.helpers.getFilePlaceholderDrawables
|
import com.simplemobiletools.commons.helpers.getFilePlaceholderDrawables
|
||||||
import com.simplemobiletools.commons.models.FileDirItem
|
import com.simplemobiletools.commons.models.FileDirItem
|
||||||
import com.simplemobiletools.commons.views.MyRecyclerView
|
import com.simplemobiletools.commons.views.MyRecyclerView
|
||||||
import java.util.HashMap
|
import kotlinx.android.synthetic.main.item_filepicker_list.view.*
|
||||||
import java.util.Locale
|
import java.util.*
|
||||||
import kotlinx.android.synthetic.main.filepicker_list_item.view.list_item_details
|
|
||||||
import kotlinx.android.synthetic.main.filepicker_list_item.view.list_item_icon
|
|
||||||
import kotlinx.android.synthetic.main.filepicker_list_item.view.list_item_name
|
|
||||||
|
|
||||||
class FilepickerItemsAdapter(
|
class FilepickerItemsAdapter(
|
||||||
activity: BaseSimpleActivity, val fileDirItems: List<FileDirItem>, recyclerView: MyRecyclerView,
|
activity: BaseSimpleActivity, val fileDirItems: List<FileDirItem>, recyclerView: MyRecyclerView,
|
||||||
|
@ -43,7 +40,7 @@ class FilepickerItemsAdapter(
|
||||||
|
|
||||||
override fun getActionMenuId() = 0
|
override fun getActionMenuId() = 0
|
||||||
|
|
||||||
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int) = createViewHolder(R.layout.filepicker_list_item, parent)
|
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int) = createViewHolder(R.layout.item_filepicker_list, parent)
|
||||||
|
|
||||||
override fun onBindViewHolder(holder: ViewHolder, position: Int) {
|
override fun onBindViewHolder(holder: ViewHolder, position: Int) {
|
||||||
val fileDirItem = fileDirItems[position]
|
val fileDirItem = fileDirItems[position]
|
||||||
|
|
|
@ -313,7 +313,7 @@ abstract class MyRecyclerViewAdapter(val activity: BaseSimpleActivity, val recyc
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun viewClicked(any: Any) {
|
fun viewClicked(any: Any) {
|
||||||
if (actModeCallback.isSelectable) {
|
if (actModeCallback.isSelectable) {
|
||||||
val currentPosition = adapterPosition - positionOffset
|
val currentPosition = adapterPosition - positionOffset
|
||||||
val isSelected = selectedKeys.contains(getItemSelectionKey(currentPosition))
|
val isSelected = selectedKeys.contains(getItemSelectionKey(currentPosition))
|
||||||
|
@ -324,7 +324,7 @@ abstract class MyRecyclerViewAdapter(val activity: BaseSimpleActivity, val recyc
|
||||||
lastLongPressedItem = -1
|
lastLongPressedItem = -1
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun viewLongClicked() {
|
fun viewLongClicked() {
|
||||||
val currentPosition = adapterPosition - positionOffset
|
val currentPosition = adapterPosition - positionOffset
|
||||||
if (!actModeCallback.isSelectable) {
|
if (!actModeCallback.isSelectable) {
|
||||||
activity.startSupportActionMode(actModeCallback)
|
activity.startSupportActionMode(actModeCallback)
|
||||||
|
|
|
@ -134,7 +134,7 @@ class CopyMoveTask(
|
||||||
}
|
}
|
||||||
|
|
||||||
mNotificationBuilder.setContentTitle(title)
|
mNotificationBuilder.setContentTitle(title)
|
||||||
.setSmallIcon(R.drawable.ic_copy)
|
.setSmallIcon(R.drawable.ic_copy_vector)
|
||||||
.setChannelId(channelId)
|
.setChannelId(channelId)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -37,7 +37,6 @@ class ColorPickerDialog(
|
||||||
private val baseConfig = activity.baseConfig
|
private val baseConfig = activity.baseConfig
|
||||||
private val currentColorHsv = FloatArray(3)
|
private val currentColorHsv = FloatArray(3)
|
||||||
private val backgroundColor = baseConfig.backgroundColor
|
private val backgroundColor = baseConfig.backgroundColor
|
||||||
private val cornerRadius = activity.getCornerRadius()
|
|
||||||
private var isHueBeingDragged = false
|
private var isHueBeingDragged = false
|
||||||
private var wasDimmedBackgroundRemoved = false
|
private var wasDimmedBackgroundRemoved = false
|
||||||
private var dialog: AlertDialog? = null
|
private var dialog: AlertDialog? = null
|
||||||
|
@ -57,8 +56,8 @@ class ColorPickerDialog(
|
||||||
|
|
||||||
viewSatVal.setHue(getHue())
|
viewSatVal.setHue(getHue())
|
||||||
|
|
||||||
viewNewColor.setFillWithStroke(getColor(), backgroundColor, cornerRadius)
|
viewNewColor.setFillWithStroke(getColor(), backgroundColor)
|
||||||
color_picker_old_color.setFillWithStroke(color, backgroundColor, cornerRadius)
|
color_picker_old_color.setFillWithStroke(color, backgroundColor)
|
||||||
|
|
||||||
val hexCode = getHexCode(color)
|
val hexCode = getHexCode(color)
|
||||||
color_picker_old_hex.text = "#$hexCode"
|
color_picker_old_hex.text = "#$hexCode"
|
||||||
|
@ -117,7 +116,7 @@ class ColorPickerDialog(
|
||||||
currentColorHsv[2] = 1f - 1f / viewSatVal.measuredHeight * y
|
currentColorHsv[2] = 1f - 1f / viewSatVal.measuredHeight * y
|
||||||
|
|
||||||
moveColorPicker()
|
moveColorPicker()
|
||||||
viewNewColor.setFillWithStroke(getColor(), backgroundColor, cornerRadius)
|
viewNewColor.setFillWithStroke(getColor(), backgroundColor)
|
||||||
newHexField.setText(getHexCode(getColor()))
|
newHexField.setText(getHexCode(getColor()))
|
||||||
return@OnTouchListener true
|
return@OnTouchListener true
|
||||||
}
|
}
|
||||||
|
@ -169,7 +168,7 @@ class ColorPickerDialog(
|
||||||
val recentColorView = ImageView(context)
|
val recentColorView = ImageView(context)
|
||||||
recentColorView.id = View.generateViewId()
|
recentColorView.id = View.generateViewId()
|
||||||
recentColorView.layoutParams = ViewGroup.LayoutParams(squareSize, squareSize)
|
recentColorView.layoutParams = ViewGroup.LayoutParams(squareSize, squareSize)
|
||||||
recentColorView.setFillWithStroke(recentColor, backgroundColor, cornerRadius)
|
recentColorView.setFillWithStroke(recentColor, backgroundColor)
|
||||||
recentColorView.setOnClickListener { newHexField.setText(getHexCode(recentColor)) }
|
recentColorView.setOnClickListener { newHexField.setText(getHexCode(recentColor)) }
|
||||||
recent_colors.addView(recentColorView)
|
recent_colors.addView(recentColorView)
|
||||||
recent_colors_flow.addView(recentColorView)
|
recent_colors_flow.addView(recentColorView)
|
||||||
|
@ -218,7 +217,7 @@ class ColorPickerDialog(
|
||||||
private fun updateHue() {
|
private fun updateHue() {
|
||||||
viewSatVal.setHue(getHue())
|
viewSatVal.setHue(getHue())
|
||||||
moveHuePicker()
|
moveHuePicker()
|
||||||
viewNewColor.setFillWithStroke(getColor(), backgroundColor, cornerRadius)
|
viewNewColor.setFillWithStroke(getColor(), backgroundColor)
|
||||||
if (removeDimmedBackground && !wasDimmedBackgroundRemoved) {
|
if (removeDimmedBackground && !wasDimmedBackgroundRemoved) {
|
||||||
dialog?.window?.clearFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND)
|
dialog?.window?.clearFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND)
|
||||||
wasDimmedBackgroundRemoved = true
|
wasDimmedBackgroundRemoved = true
|
||||||
|
|
|
@ -17,7 +17,7 @@ import com.simplemobiletools.commons.extensions.*
|
||||||
import com.simplemobiletools.commons.helpers.*
|
import com.simplemobiletools.commons.helpers.*
|
||||||
import com.simplemobiletools.commons.models.FileDirItem
|
import com.simplemobiletools.commons.models.FileDirItem
|
||||||
import kotlinx.android.synthetic.main.dialog_properties.view.*
|
import kotlinx.android.synthetic.main.dialog_properties.view.*
|
||||||
import kotlinx.android.synthetic.main.property_item.view.*
|
import kotlinx.android.synthetic.main.item_property.view.*
|
||||||
import java.io.File
|
import java.io.File
|
||||||
import java.util.*
|
import java.util.*
|
||||||
|
|
||||||
|
@ -281,7 +281,7 @@ class PropertiesDialog() {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
mInflater.inflate(R.layout.property_item, mPropertyView, false).apply {
|
mInflater.inflate(R.layout.item_property, mPropertyView, false).apply {
|
||||||
property_value.setTextColor(mActivity.baseConfig.textColor)
|
property_value.setTextColor(mActivity.baseConfig.textColor)
|
||||||
property_label.setTextColor(mActivity.baseConfig.textColor)
|
property_label.setTextColor(mActivity.baseConfig.textColor)
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,7 @@ import androidx.appcompat.app.AlertDialog
|
||||||
import com.simplemobiletools.commons.R
|
import com.simplemobiletools.commons.R
|
||||||
import com.simplemobiletools.commons.extensions.baseConfig
|
import com.simplemobiletools.commons.extensions.baseConfig
|
||||||
import com.simplemobiletools.commons.extensions.launchPurchaseThankYouIntent
|
import com.simplemobiletools.commons.extensions.launchPurchaseThankYouIntent
|
||||||
|
import com.simplemobiletools.commons.extensions.removeUnderlines
|
||||||
import com.simplemobiletools.commons.extensions.setupDialogStuff
|
import com.simplemobiletools.commons.extensions.setupDialogStuff
|
||||||
import kotlinx.android.synthetic.main.dialog_purchase_thank_you.view.*
|
import kotlinx.android.synthetic.main.dialog_purchase_thank_you.view.*
|
||||||
|
|
||||||
|
@ -20,6 +21,7 @@ class PurchaseThankYouDialog(val activity: Activity) {
|
||||||
|
|
||||||
purchase_thank_you.text = Html.fromHtml(text)
|
purchase_thank_you.text = Html.fromHtml(text)
|
||||||
purchase_thank_you.movementMethod = LinkMovementMethod.getInstance()
|
purchase_thank_you.movementMethod = LinkMovementMethod.getInstance()
|
||||||
|
purchase_thank_you.removeUnderlines()
|
||||||
}
|
}
|
||||||
|
|
||||||
AlertDialog.Builder(activity)
|
AlertDialog.Builder(activity)
|
||||||
|
|
|
@ -15,10 +15,7 @@ import android.provider.MediaStore
|
||||||
import android.telecom.PhoneAccountHandle
|
import android.telecom.PhoneAccountHandle
|
||||||
import android.telecom.TelecomManager
|
import android.telecom.TelecomManager
|
||||||
import android.text.Html
|
import android.text.Html
|
||||||
import android.view.View
|
import android.view.*
|
||||||
import android.view.ViewGroup
|
|
||||||
import android.view.Window
|
|
||||||
import android.view.WindowManager
|
|
||||||
import android.view.inputmethod.InputMethodManager
|
import android.view.inputmethod.InputMethodManager
|
||||||
import android.widget.EditText
|
import android.widget.EditText
|
||||||
import android.widget.TextView
|
import android.widget.TextView
|
||||||
|
@ -1261,7 +1258,7 @@ fun AppCompatActivity.showSideloadingDialog() {
|
||||||
}
|
}
|
||||||
|
|
||||||
fun BaseSimpleActivity.getTempFile(folderName: String, fileName: String): File? {
|
fun BaseSimpleActivity.getTempFile(folderName: String, fileName: String): File? {
|
||||||
val folder = File(cacheDir, fileName)
|
val folder = File(cacheDir, folderName)
|
||||||
if (!folder.exists()) {
|
if (!folder.exists()) {
|
||||||
if (!folder.mkdir()) {
|
if (!folder.mkdir()) {
|
||||||
toast(R.string.unknown_error_occurred)
|
toast(R.string.unknown_error_occurred)
|
||||||
|
|
|
@ -4,16 +4,15 @@ import android.graphics.PorterDuff
|
||||||
import android.graphics.drawable.GradientDrawable
|
import android.graphics.drawable.GradientDrawable
|
||||||
import android.widget.ImageView
|
import android.widget.ImageView
|
||||||
|
|
||||||
fun ImageView.setFillWithStroke(fillColor: Int, backgroundColor: Int, cornerRadiusSize: Float = 0f) {
|
fun ImageView.setFillWithStroke(fillColor: Int, backgroundColor: Int) {
|
||||||
val strokeColor = backgroundColor.getContrastColor()
|
|
||||||
GradientDrawable().apply {
|
GradientDrawable().apply {
|
||||||
shape = GradientDrawable.RECTANGLE
|
shape = GradientDrawable.OVAL
|
||||||
setColor(fillColor)
|
setColor(fillColor)
|
||||||
setStroke(2, strokeColor)
|
|
||||||
background = this
|
background = this
|
||||||
|
|
||||||
if (cornerRadiusSize != 0f) {
|
if (backgroundColor == fillColor || fillColor == -2 && backgroundColor == -1) {
|
||||||
cornerRadius = cornerRadiusSize
|
val strokeColor = backgroundColor.getContrastColor().adjustAlpha(0.5f)
|
||||||
|
setStroke(2, strokeColor)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,8 +9,10 @@ import android.provider.MediaStore
|
||||||
import android.telephony.PhoneNumberUtils
|
import android.telephony.PhoneNumberUtils
|
||||||
import android.text.Spannable
|
import android.text.Spannable
|
||||||
import android.text.SpannableString
|
import android.text.SpannableString
|
||||||
|
import android.text.TextPaint
|
||||||
import android.text.TextUtils
|
import android.text.TextUtils
|
||||||
import android.text.style.ForegroundColorSpan
|
import android.text.style.ForegroundColorSpan
|
||||||
|
import android.text.style.URLSpan
|
||||||
import android.widget.TextView
|
import android.widget.TextView
|
||||||
import com.bumptech.glide.signature.ObjectKey
|
import com.bumptech.glide.signature.ObjectKey
|
||||||
import com.simplemobiletools.commons.helpers.*
|
import com.simplemobiletools.commons.helpers.*
|
||||||
|
@ -46,7 +48,8 @@ fun String.isAValidFilename(): Boolean {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
fun String.getOTGPublicPath(context: Context) = "${context.baseConfig.OTGTreeUri}/document/${context.baseConfig.OTGPartition}%3A${substring(context.baseConfig.OTGPath.length).replace("/", "%2F")}"
|
fun String.getOTGPublicPath(context: Context) =
|
||||||
|
"${context.baseConfig.OTGTreeUri}/document/${context.baseConfig.OTGPartition}%3A${substring(context.baseConfig.OTGPath.length).replace("/", "%2F")}"
|
||||||
|
|
||||||
fun String.isMediaFile() = isImageFast() || isVideoFast() || isGif() || isRawFast() || isSvg() || isPortrait()
|
fun String.isMediaFile() = isImageFast() || isVideoFast() || isGif() || isRawFast() || isSvg() || isPortrait()
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
package com.simplemobiletools.commons.extensions
|
package com.simplemobiletools.commons.extensions
|
||||||
|
|
||||||
import android.graphics.Paint
|
import android.graphics.Paint
|
||||||
|
import android.text.SpannableString
|
||||||
|
import android.text.TextPaint
|
||||||
|
import android.text.style.URLSpan
|
||||||
import android.widget.TextView
|
import android.widget.TextView
|
||||||
|
|
||||||
val TextView.value: String get() = text.toString().trim()
|
val TextView.value: String get() = text.toString().trim()
|
||||||
|
@ -8,3 +11,16 @@ val TextView.value: String get() = text.toString().trim()
|
||||||
fun TextView.underlineText() {
|
fun TextView.underlineText() {
|
||||||
paintFlags = paintFlags or Paint.UNDERLINE_TEXT_FLAG
|
paintFlags = paintFlags or Paint.UNDERLINE_TEXT_FLAG
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fun TextView.removeUnderlines() {
|
||||||
|
val spannable = SpannableString(text)
|
||||||
|
for (u in spannable.getSpans(0, spannable.length, URLSpan::class.java)) {
|
||||||
|
spannable.setSpan(object : URLSpan(u.url) {
|
||||||
|
override fun updateDrawState(textPaint: TextPaint) {
|
||||||
|
super.updateDrawState(textPaint)
|
||||||
|
textPaint.isUnderlineText = false
|
||||||
|
}
|
||||||
|
}, spannable.getSpanStart(u), spannable.getSpanEnd(u), 0)
|
||||||
|
}
|
||||||
|
text = spannable
|
||||||
|
}
|
||||||
|
|
|
@ -14,7 +14,7 @@ import androidx.core.view.ViewCompat
|
||||||
import com.simplemobiletools.commons.R
|
import com.simplemobiletools.commons.R
|
||||||
import com.simplemobiletools.commons.extensions.*
|
import com.simplemobiletools.commons.extensions.*
|
||||||
import com.simplemobiletools.commons.models.FileDirItem
|
import com.simplemobiletools.commons.models.FileDirItem
|
||||||
import kotlinx.android.synthetic.main.breadcrumb_item.view.*
|
import kotlinx.android.synthetic.main.item_breadcrumb.view.*
|
||||||
|
|
||||||
class Breadcrumbs(context: Context, attrs: AttributeSet) : HorizontalScrollView(context, attrs) {
|
class Breadcrumbs(context: Context, attrs: AttributeSet) : HorizontalScrollView(context, attrs) {
|
||||||
private val inflater = context.getSystemService(Context.LAYOUT_INFLATER_SERVICE) as LayoutInflater
|
private val inflater = context.getSystemService(Context.LAYOUT_INFLATER_SERVICE) as LayoutInflater
|
||||||
|
@ -179,7 +179,7 @@ class Breadcrumbs(context: Context, attrs: AttributeSet) : HorizontalScrollView(
|
||||||
private fun addBreadcrumb(item: FileDirItem, index: Int, addPrefix: Boolean) {
|
private fun addBreadcrumb(item: FileDirItem, index: Int, addPrefix: Boolean) {
|
||||||
|
|
||||||
if (itemsLayout.childCount == 0) {
|
if (itemsLayout.childCount == 0) {
|
||||||
inflater.inflate(R.layout.breadcrumb_first_item, itemsLayout, false).apply {
|
inflater.inflate(R.layout.item_breadcrumb_first, itemsLayout, false).apply {
|
||||||
resources.apply {
|
resources.apply {
|
||||||
breadcrumb_text.background = ContextCompat.getDrawable(context, R.drawable.button_background)
|
breadcrumb_text.background = ContextCompat.getDrawable(context, R.drawable.button_background)
|
||||||
breadcrumb_text.background.applyColorFilter(textColor)
|
breadcrumb_text.background.applyColorFilter(textColor)
|
||||||
|
@ -206,7 +206,7 @@ class Breadcrumbs(context: Context, attrs: AttributeSet) : HorizontalScrollView(
|
||||||
tag = item
|
tag = item
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
inflater.inflate(R.layout.breadcrumb_item, itemsLayout, false).apply {
|
inflater.inflate(R.layout.item_breadcrumb, itemsLayout, false).apply {
|
||||||
var textToAdd = item.name
|
var textToAdd = item.name
|
||||||
if (addPrefix) {
|
if (addPrefix) {
|
||||||
textToAdd = "> $textToAdd"
|
textToAdd = "> $textToAdd"
|
||||||
|
|
|
@ -4,7 +4,7 @@ import android.content.Context
|
||||||
import android.content.res.ColorStateList
|
import android.content.res.ColorStateList
|
||||||
import android.util.AttributeSet
|
import android.util.AttributeSet
|
||||||
import androidx.appcompat.widget.AppCompatCheckBox
|
import androidx.appcompat.widget.AppCompatCheckBox
|
||||||
import com.simplemobiletools.commons.R
|
import com.simplemobiletools.commons.extensions.adjustAlpha
|
||||||
|
|
||||||
class MyAppCompatCheckbox : AppCompatCheckBox {
|
class MyAppCompatCheckbox : AppCompatCheckBox {
|
||||||
constructor(context: Context) : super(context)
|
constructor(context: Context) : super(context)
|
||||||
|
@ -16,10 +16,11 @@ class MyAppCompatCheckbox : AppCompatCheckBox {
|
||||||
fun setColors(textColor: Int, accentColor: Int, backgroundColor: Int) {
|
fun setColors(textColor: Int, accentColor: Int, backgroundColor: Int) {
|
||||||
setTextColor(textColor)
|
setTextColor(textColor)
|
||||||
val colorStateList = ColorStateList(
|
val colorStateList = ColorStateList(
|
||||||
arrayOf(intArrayOf(-android.R.attr.state_checked),
|
arrayOf(
|
||||||
intArrayOf(android.R.attr.state_checked)
|
intArrayOf(-android.R.attr.state_checked),
|
||||||
),
|
intArrayOf(android.R.attr.state_checked)
|
||||||
intArrayOf(context.resources.getColor(R.color.radiobutton_disabled), accentColor)
|
),
|
||||||
|
intArrayOf(textColor.adjustAlpha(0.8f), accentColor)
|
||||||
)
|
)
|
||||||
supportButtonTintList = colorStateList
|
supportButtonTintList = colorStateList
|
||||||
}
|
}
|
||||||
|
|
Before Width: | Height: | Size: 465 B |
Before Width: | Height: | Size: 203 B |
Before Width: | Height: | Size: 877 B |
Before Width: | Height: | Size: 755 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 332 B |
|
@ -1,15 +1,6 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<shape
|
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
<corners android:bottomRightRadius="@dimen/normal_margin" android:topRightRadius="@dimen/normal_margin"/>
|
||||||
android:shape="rectangle">
|
|
||||||
|
|
||||||
<corners
|
|
||||||
android:bottomRightRadius="@dimen/normal_margin"
|
|
||||||
android:topRightRadius="@dimen/normal_margin"/>
|
|
||||||
|
|
||||||
<solid android:color="@color/color_primary"/>
|
<solid android:color="@color/color_primary"/>
|
||||||
|
<size android:width="@dimen/fastscroll_width" android:height="@dimen/fastscroll_height"/>
|
||||||
<size
|
|
||||||
android:width="@dimen/fastscroll_width"
|
|
||||||
android:height="@dimen/fastscroll_height"/>
|
|
||||||
</shape>
|
</shape>
|
||||||
|
|
Before Width: | Height: | Size: 695 B |
Before Width: | Height: | Size: 188 B |
Before Width: | Height: | Size: 917 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 355 B After Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 264 B |
Before Width: | Height: | Size: 960 B |
Before Width: | Height: | Size: 266 B |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 602 B After Width: | Height: | Size: 4.7 KiB |
Before Width: | Height: | Size: 425 B |
Before Width: | Height: | Size: 922 B |
Before Width: | Height: | Size: 329 B |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 536 B After Width: | Height: | Size: 7.5 KiB |
Before Width: | Height: | Size: 353 B |
|
@ -1,14 +1,9 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<item
|
<item android:left="-3dp" android:right="-3dp" android:top="-3dp">
|
||||||
android:left="-3dp"
|
|
||||||
android:right="-3dp"
|
|
||||||
android:top="-3dp">
|
|
||||||
<shape android:shape="rectangle">
|
<shape android:shape="rectangle">
|
||||||
<solid android:color="@color/dark_grey" />
|
<solid android:color="@color/dark_grey"/>
|
||||||
<stroke
|
<stroke android:width="2dp" android:color="?attr/colorPrimary"/>
|
||||||
android:width="2dp"
|
|
||||||
android:color="?attr/colorPrimary" />
|
|
||||||
</shape>
|
</shape>
|
||||||
</item>
|
</item>
|
||||||
</layer-list>
|
</layer-list>
|
||||||
|
|
|
@ -2,11 +2,7 @@
|
||||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<item android:id="@+id/bottom_sheet_background">
|
<item android:id="@+id/bottom_sheet_background">
|
||||||
<shape android:shape="rectangle">
|
<shape android:shape="rectangle">
|
||||||
|
<corners android:topLeftRadius="@dimen/bottom_sheet_corner_radius" android:topRightRadius="@dimen/bottom_sheet_corner_radius"/>
|
||||||
<corners
|
|
||||||
android:topLeftRadius="@dimen/bottom_sheet_corner_radius"
|
|
||||||
android:topRightRadius="@dimen/bottom_sheet_corner_radius" />
|
|
||||||
|
|
||||||
</shape>
|
</shape>
|
||||||
</item>
|
</item>
|
||||||
</layer-list>
|
</layer-list>
|
||||||
|
|
13
commons/src/main/res/drawable/button_background_rounded.xml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<ripple xmlns:android="http://schemas.android.com/apk/res/android" android:color="?attr/colorPrimaryDark">
|
||||||
|
<item android:id="@+id/button_background_holder">
|
||||||
|
<layer-list>
|
||||||
|
<item android:id="@+id/button_background_shape">
|
||||||
|
<shape android:shape="rectangle">
|
||||||
|
<solid android:color="?attr/colorPrimary"/>
|
||||||
|
<corners android:radius="12dp"/>
|
||||||
|
</shape>
|
||||||
|
</item>
|
||||||
|
</layer-list>
|
||||||
|
</item>
|
||||||
|
</ripple>
|
|
@ -1,9 +1,4 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<shape
|
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
<solid android:color="@color/color_primary"/>
|
||||||
android:shape="oval">
|
|
||||||
|
|
||||||
<solid
|
|
||||||
android:color="@color/color_primary"/>
|
|
||||||
|
|
||||||
</shape>
|
</shape>
|
||||||
|
|
|
@ -1,28 +1,13 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<item>
|
<item>
|
||||||
<shape
|
<shape android:shape="ring" android:thicknessRatio="1" android:useLevel="false">
|
||||||
android:shape="ring"
|
<stroke android:width="4px" android:color="@android:color/white"/>
|
||||||
android:thicknessRatio="1"
|
|
||||||
android:useLevel="false">
|
|
||||||
|
|
||||||
<stroke
|
|
||||||
android:width="4px"
|
|
||||||
android:color="@android:color/white"/>
|
|
||||||
|
|
||||||
</shape>
|
</shape>
|
||||||
</item>
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<shape
|
<shape android:shape="ring" android:thicknessRatio="1" android:useLevel="false">
|
||||||
android:shape="ring"
|
<stroke android:width="2px" android:color="@android:color/black"/>
|
||||||
android:thicknessRatio="1"
|
|
||||||
android:useLevel="false">
|
|
||||||
|
|
||||||
<stroke
|
|
||||||
android:width="2px"
|
|
||||||
android:color="@android:color/black"/>
|
|
||||||
|
|
||||||
</shape>
|
</shape>
|
||||||
</item>
|
</item>
|
||||||
</layer-list>
|
</layer-list>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<corners android:radius="10dp" />
|
<corners android:radius="16dp"/>
|
||||||
</shape>
|
</shape>
|
||||||
|
|
|
@ -1,11 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
|
||||||
android:shape="rectangle">
|
<size android:width="1dp" android:height="1dp"/>
|
||||||
|
|
||||||
<size
|
|
||||||
android:width="1dp"
|
|
||||||
android:height="1dp"/>
|
|
||||||
|
|
||||||
<solid android:color="@color/divider_grey"/>
|
<solid android:color="@color/divider_grey"/>
|
||||||
|
|
||||||
</shape>
|
</shape>
|
||||||
|
|
|
@ -1,12 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<shape
|
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
android:shape="rectangle">
|
|
||||||
|
|
||||||
<corners android:radius="4dp"/>
|
<corners android:radius="4dp"/>
|
||||||
|
<size android:width="-1dp" android:height="-1dp"/>
|
||||||
<size
|
|
||||||
android:width="-1dp"
|
|
||||||
android:height="-1dp"/>
|
|
||||||
|
|
||||||
</shape>
|
</shape>
|
||||||
|
|
|
@ -1,15 +1,6 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<shape
|
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
<corners android:topLeftRadius="@dimen/normal_margin" android:topRightRadius="@dimen/normal_margin"/>
|
||||||
android:shape="rectangle">
|
|
||||||
|
|
||||||
<corners
|
|
||||||
android:topLeftRadius="@dimen/normal_margin"
|
|
||||||
android:topRightRadius="@dimen/normal_margin"/>
|
|
||||||
|
|
||||||
<solid android:color="@color/color_primary"/>
|
<solid android:color="@color/color_primary"/>
|
||||||
|
<size android:width="@dimen/fastscroll_height" android:height="@dimen/fastscroll_width"/>
|
||||||
<size
|
|
||||||
android:width="@dimen/fastscroll_height"
|
|
||||||
android:height="@dimen/fastscroll_width"/>
|
|
||||||
</shape>
|
</shape>
|
||||||
|
|
|
@ -1,14 +1,6 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
|
||||||
android:shape="rectangle">
|
<corners android:bottomLeftRadius="@dimen/normal_margin" android:topLeftRadius="@dimen/normal_margin"/>
|
||||||
|
<solid android:color="@color/color_primary"/>
|
||||||
<corners
|
<size android:width="@dimen/fastscroll_width" android:height="@dimen/fastscroll_height"/>
|
||||||
android:bottomLeftRadius="@dimen/normal_margin"
|
|
||||||
android:topLeftRadius="@dimen/normal_margin" />
|
|
||||||
|
|
||||||
<solid android:color="@color/color_primary" />
|
|
||||||
|
|
||||||
<size
|
|
||||||
android:width="@dimen/fastscroll_width"
|
|
||||||
android:height="@dimen/fastscroll_height" />
|
|
||||||
</shape>
|
</shape>
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<gradient
|
<gradient android:angle="90" android:endColor="@android:color/transparent" android:startColor="@color/gradient_grey_start"/>
|
||||||
android:angle="90"
|
|
||||||
android:endColor="@android:color/transparent"
|
|
||||||
android:startColor="@color/gradient_grey_start" />
|
|
||||||
</shape>
|
</shape>
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<gradient
|
<gradient android:angle="270" android:endColor="@android:color/transparent" android:startColor="@color/gradient_grey_start"/>
|
||||||
android:angle="270"
|
|
||||||
android:endColor="@android:color/transparent"
|
|
||||||
android:startColor="@color/gradient_grey_start" />
|
|
||||||
</shape>
|
</shape>
|
||||||
|
|
|
@ -1,9 +1,3 @@
|
||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="128" android:viewportHeight="128">
|
||||||
android:width="24dp"
|
<path android:fillColor="#FFFFFF" android:pathData="M79.673 63.049c11.946 0 21.621-9.675 21.621-21.621 0-11.946-9.675-21.621-21.621-21.621-11.946 0-21.621 9.675-21.621 21.621 0 11.946 9.675 21.621 21.621 21.621zm-48.647-10.81V36.023h-10.81v16.216H4v10.81h16.216v16.216h10.81V63.049h16.216v-10.81H31.026zM79.673 73.86c-14.432 0-43.242 7.243-43.242 21.621v10.81h86.484v-10.81c0-14.378-28.81-21.621-43.242-21.621z"/>
|
||||||
android:height="24dp"
|
|
||||||
android:viewportWidth="128"
|
|
||||||
android:viewportHeight="128">
|
|
||||||
<path
|
|
||||||
android:fillColor="#FFFFFF"
|
|
||||||
android:pathData="m79.673,63.049c11.946,0 21.621,-9.675 21.621,-21.621 0,-11.946 -9.675,-21.621 -21.621,-21.621 -11.946,0 -21.621,9.675 -21.621,21.621 0,11.946 9.675,21.621 21.621,21.621zM31.026,52.239 L31.026,36.023 20.216,36.023 20.216,52.239 4,52.239 4,63.049 20.216,63.049 20.216,79.265 31.026,79.265 31.026,63.049 47.242,63.049 47.242,52.239 31.026,52.239zM79.673,73.86c-14.432,0 -43.242,7.243 -43.242,21.621l0,10.81 86.484,0 0,-10.81c0,-14.378 -28.81,-21.621 -43.242,-21.621z" />
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24">
|
||||||
|
<path android:fillColor="#FFFFFF" android:pathData="M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z"/>
|
||||||
|
</vector>
|
|
@ -1,10 +1,3 @@
|
||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="96" android:viewportHeight="96" android:autoMirrored="true">
|
||||||
android:width="24dp"
|
<path android:fillColor="#FFFFFF" android:pathData="M82.14 41.082H31.85l19.55-17.27c2.833-2.747 2.833-7.064 0-9.812-2.833-2.747-7.367-2.747-10.2 0L8.76 43.175c-1.417 1.308-2.126 3.009-2.126 4.84 0 1.832 0.709 3.664 2.125 4.841L41.2 81.9c2.833 2.747 7.367 2.747 10.2 0 2.833-2.748 2.833-7.065 0-9.812L31.85 54.949h50.29c3.967 0 7.226-3.14 7.226-6.934 0-3.925-3.259-6.934-7.225-6.934z"/>
|
||||||
android:height="24dp"
|
|
||||||
android:viewportWidth="96"
|
|
||||||
android:viewportHeight="96"
|
|
||||||
android:autoMirrored="true">
|
|
||||||
<path
|
|
||||||
android:fillColor="#FFFFFF"
|
|
||||||
android:pathData="m82.1408,41.0816 l-50.2904,0 19.5495,-17.2692c2.8333,-2.7474 2.8333,-7.0647 0,-9.8121 -2.8333,-2.7474 -7.3665,-2.7474 -10.1997,0L8.7593,43.1748c-1.4166,1.3083 -2.1249,3.009 -2.1249,4.8406l0,0c0,1.8316 0.7083,3.6632 2.1249,4.8406l32.4409,29.0437c2.8333,2.7474 7.3665,2.7474 10.1997,0 2.8333,-2.7474 2.8333,-7.0647 0,-9.8121l-19.5495,-17.1384 50.2904,0c3.9666,0 7.2248,-3.1399 7.2248,-6.9339 0,-3.9248 -3.2583,-6.9339 -7.2248,-6.9339l0,0z" />
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,9 +1,3 @@
|
||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="96" android:viewportHeight="96">
|
||||||
android:width="24dp"
|
<path android:fillColor="#FFFFFF" android:pathData="M13.86 41.082h50.29L44.6 23.812c-2.833-2.747-2.833-7.064 0-9.812 2.833-2.747 7.367-2.747 10.2 0l32.44 29.175c1.417 1.308 2.126 3.009 2.126 4.84 0 1.832-0.709 3.664-2.125 4.841L54.8 81.9c-2.833 2.747-7.367 2.747-10.2 0-2.833-2.748-2.833-7.065 0-9.812l19.55-17.139H13.86c-3.967 0-7.226-3.14-7.226-6.934 0-3.925 3.259-6.934 7.225-6.934z"/>
|
||||||
android:height="24dp"
|
|
||||||
android:viewportWidth="96"
|
|
||||||
android:viewportHeight="96">
|
|
||||||
<path
|
|
||||||
android:fillColor="#FFFFFF"
|
|
||||||
android:pathData="m13.8592,41.0816 l50.2904,0 -19.5495,-17.2692c-2.8333,-2.7474 -2.8333,-7.0647 -0,-9.8121 2.8333,-2.7474 7.3665,-2.7474 10.1997,0L87.2407,43.1748c1.4166,1.3083 2.1249,3.009 2.1249,4.8406l-0,0c-0,1.8316 -0.7083,3.6632 -2.1249,4.8406l-32.4409,29.0437c-2.8333,2.7474 -7.3665,2.7474 -10.1997,0 -2.8333,-2.7474 -2.8333,-7.0647 -0,-9.8121l19.5495,-17.1384 -50.2904,0c-3.9666,0 -7.2248,-3.1399 -7.2248,-6.9339 -0,-3.9248 3.2583,-6.9339 7.2248,-6.9339l-0,0z" />
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
3
commons/src/main/res/drawable/ic_article_vector.xml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24">
|
||||||
|
<path android:fillColor="#FFFFFFFF" android:pathData="M19 3H5C3.9 3 3 3.9 3 5v14c0 1.1 0.9 2 2 2h14c1.1 0 2-0.9 2-2V5c0-1.1-0.9-2-2-2zm-6 14H8c-0.55 0-1-0.45-1-1s0.45-1 1-1h5c0.55 0 1 0.45 1 1s-0.45 1-1 1zm3-4H8c-0.55 0-1-0.45-1-1s0.45-1 1-1h8c0.55 0 1 0.45 1 1s-0.45 1-1 1zm0-4H8C7.45 9 7 8.55 7 8s0.45-1 1-1h8c0.55 0 1 0.45 1 1s-0.45 1-1 1z"/>
|
||||||
|
</vector>
|
|
@ -1,9 +1,3 @@
|
||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24">
|
||||||
android:width="24dp"
|
<path android:fillColor="#FFFFFFFF" android:pathData="M16.5 6v11.5c0 2.21-1.79 4-4 4s-4-1.79-4-4V5c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5v10.5c0 0.55-0.45 1-1 1s-1-0.45-1-1V6H10v9.5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V5c0-2.21-1.79-4-4-4S7 2.79 7 5v12.5c0 3.04 2.46 5.5 5.5 5.5s5.5-2.46 5.5-5.5V6h-1.5z"/>
|
||||||
android:height="24dp"
|
|
||||||
android:viewportWidth="24"
|
|
||||||
android:viewportHeight="24">
|
|
||||||
<path
|
|
||||||
android:fillColor="#FFFFFFFF"
|
|
||||||
android:pathData="M16.5,6v11.5c0,2.21 -1.79,4 -4,4s-4,-1.79 -4,-4V5c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5v10.5c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1V6H10v9.5c0,1.38 1.12,2.5 2.5,2.5s2.5,-1.12 2.5,-2.5V5c0,-2.21 -1.79,-4 -4,-4S7,2.79 7,5v12.5c0,3.04 2.46,5.5 5.5,5.5s5.5,-2.46 5.5,-5.5V6h-1.5z"/>
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,9 +1,3 @@
|
||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24">
|
||||||
android:width="24dp"
|
<path android:fillColor="#FFFFFFFF" android:pathData="M12 22c1.1 0 2-0.9 2-2h-4c0 1.1 0.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-0.83-0.67-1.5-1.5-1.5S10.5 3.17 10.5 4v0.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2z"/>
|
||||||
android:height="24dp"
|
|
||||||
android:viewportWidth="24"
|
|
||||||
android:viewportHeight="24">
|
|
||||||
<path
|
|
||||||
android:fillColor="#FFFFFFFF"
|
|
||||||
android:pathData="M12,22c1.1,0 2,-0.9 2,-2h-4c0,1.1 0.89,2 2,2zM18,16v-5c0,-3.07 -1.64,-5.64 -4.5,-6.32L13.5,4c0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5v0.68C7.63,5.36 6,7.92 6,11v5l-2,2v1h16v-1l-2,-2z"/>
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,9 +1,3 @@
|
||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24">
|
||||||
android:width="24dp"
|
<path android:fillColor="#FFFFFF" android:pathData="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-4.42 3.58-8 8-8 1.85 0 3.55 0.63 4.9 1.69L5.69 16.9C4.63 15.55 4 13.85 4 12zm8 8c-1.85 0-3.55-0.63-4.9-1.69L18.31 7.1C19.37 8.45 20 10.15 20 12c0 4.42-3.58 8-8 8z"/>
|
||||||
android:height="24dp"
|
|
||||||
android:viewportWidth="24"
|
|
||||||
android:viewportHeight="24">
|
|
||||||
<path
|
|
||||||
android:fillColor="#FFFFFF"
|
|
||||||
android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM4,12c0,-4.42 3.58,-8 8,-8 1.85,0 3.55,0.63 4.9,1.69L5.69,16.9C4.63,15.55 4,13.85 4,12zM12,20c-1.85,0 -3.55,-0.63 -4.9,-1.69L18.31,7.1C19.37,8.45 20,10.15 20,12c0,4.42 -3.58,8 -8,8z" />
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,9 +1,3 @@
|
||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24">
|
||||||
android:width="24dp"
|
<path android:fillColor="#FFFFFFFF" android:pathData="M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z"/>
|
||||||
android:height="24dp"
|
|
||||||
android:viewportWidth="24"
|
|
||||||
android:viewportHeight="24">
|
|
||||||
<path
|
|
||||||
android:fillColor="#FFFFFFFF"
|
|
||||||
android:pathData="M12,7L12,3L2,3v18h20L22,7L12,7zM6,19L4,19v-2h2v2zM6,15L4,15v-2h2v2zM6,11L4,11L4,9h2v2zM6,7L4,7L4,5h2v2zM10,19L8,19v-2h2v2zM10,15L8,15v-2h2v2zM10,11L8,11L8,9h2v2zM10,7L8,7L8,5h2v2zM20,19h-8v-2h2v-2h-2v-2h2v-2h-2L12,9h8v10zM18,11h-2v2h2v-2zM18,15h-2v2h2v-2z"/>
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,12 +1,4 @@
|
||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24">
|
||||||
android:width="24dp"
|
<path android:fillColor="#FFFFFFFF" android:pathData="M8.8 12a3.2 3.2 0 1 1 6.4 0 3.2 3.2 0 1 1-6.4 0"/>
|
||||||
android:height="24dp"
|
<path android:fillColor="#FFFFFFFF" android:pathData="M9 2L7.17 4H4C2.9 4 2 4.9 2 6v12c0 1.1 0.9 2 2 2h16c1.1 0 2-0.9 2-2V6c0-1.1-0.9-2-2-2h-3.17L15 2H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"/>
|
||||||
android:viewportWidth="24"
|
|
||||||
android:viewportHeight="24">
|
|
||||||
<path
|
|
||||||
android:fillColor="#FFFFFFFF"
|
|
||||||
android:pathData="M12,12m-3.2,0a3.2,3.2 0,1 1,6.4 0a3.2,3.2 0,1 1,-6.4 0"/>
|
|
||||||
<path
|
|
||||||
android:fillColor="#FFFFFFFF"
|
|
||||||
android:pathData="M9,2L7.17,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2h-3.17L15,2L9,2zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5z"/>
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,9 +1,3 @@
|
||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24">
|
||||||
android:width="24dp"
|
<path android:fillColor="#FFFFFFFF" android:pathData="M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z"/>
|
||||||
android:height="24dp"
|
|
||||||
android:viewportWidth="24"
|
|
||||||
android:viewportHeight="24">
|
|
||||||
<path
|
|
||||||
android:fillColor="#FFFFFFFF"
|
|
||||||
android:pathData="M4,8h4L8,4L4,4v4zM10,20h4v-4h-4v4zM4,20h4v-4L4,16v4zM4,14h4v-4L4,10v4zM10,14h4v-4h-4v4zM16,4v4h4L20,4h-4zM10,8h4L14,4h-4v4zM16,14h4v-4h-4v4zM16,20h4v-4h-4v4z" />
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,9 +1,3 @@
|
||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="96" android:viewportHeight="96">
|
||||||
android:width="24dp"
|
<path android:fillColor="#FFFFFF" android:pathData="M73.554 19.64L36.361 61.254l-14.25-12.54c-2.892-2.546-7.282-2.32-9.85 0.551-2.568 2.873-2.32 7.283 0.552 9.85l19.452 17.19c1.38 1.233 3.192 1.868 5.04 1.764 1.847-0.103 3.577-0.937 4.81-2.316L83.957 28.94c2.568-2.873 2.32-7.283-0.553-9.85-2.872-2.568-7.282-2.321-9.85 0.552z"/>
|
||||||
android:height="24dp"
|
|
||||||
android:viewportWidth="96"
|
|
||||||
android:viewportHeight="96">
|
|
||||||
<path
|
|
||||||
android:fillColor="#FFFFFF"
|
|
||||||
android:pathData="m73.554,19.6406 l-37.1926,41.6121 -14.2501,-12.5403c-2.892,-2.545 -7.2828,-2.3203 -9.8504,0.552 -2.5676,2.8728 -2.3203,7.2828 0.5525,9.8504L32.2647,76.3043c1.3795,1.233 3.1922,1.8678 5.0394,1.7642l0.0005,-0c1.8472,-0.1036 3.5776,-0.9371 4.8106,-2.3161L83.9569,28.9389c2.5676,-2.8728 2.3203,-7.2828 -0.5525,-9.8504 -2.8728,-2.5676 -7.2828,-2.3207 -9.8504,0.552z" />
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,9 +1,3 @@
|
||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="96" android:viewportHeight="96">
|
||||||
android:width="24dp"
|
<path android:fillColor="#FFFFFF" android:pathData="M73.614 20.95c3.17-3.074 3.17-7.903 0-10.977-3.169-3.073-8.24-3.073-11.41 0L25.917 42.608c-2.887 3.132-3.013 8.099 0 10.83l36.289 32.489c3.169 3.073 8.24 3.073 11.41 0 3.169-3.074 3.169-7.903 0-10.976-17.953-15.655-29.602-26.497-29.602-26.497s11.945-11.652 29.601-27.505z"/>
|
||||||
android:height="24dp"
|
|
||||||
android:viewportWidth="96"
|
|
||||||
android:viewportHeight="96">
|
|
||||||
<path
|
|
||||||
android:fillColor="#FFFFFF"
|
|
||||||
android:pathData="m73.6143,20.9493c3.1693,-3.0732 3.1693,-7.9026 -0,-10.9759 -3.1693,-3.0732 -8.2402,-3.0732 -11.4095,0l-36.2887,32.6349c-2.8873,3.1314 -3.0135,8.0984 -0,10.8295L62.2047,85.9265c3.1693,3.0732 8.2402,3.0732 11.4095,0 3.1693,-3.0732 3.1693,-7.9026 -0,-10.9759 -17.9527,-15.6542 -29.6013,-26.4969 -29.6013,-26.4969 -0,0 11.9446,-11.6519 29.6013,-27.5044z" />
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,9 +1,3 @@
|
||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="15dp" android:height="24dp" android:viewportWidth="60" android:viewportHeight="96">
|
||||||
android:width="15dp"
|
<path android:fillColor="#FFFFFF" android:pathData="M6.08 20.95c-3.17-3.074-3.17-7.903 0-10.977 3.17-3.073 8.24-3.073 11.41 0l36.288 32.635c2.887 3.132 3.014 8.099 0 10.83L17.49 85.926C14.32 89 9.25 89 6.08 85.927s-3.17-7.902 0-10.975c17.953-15.655 29.601-26.497 29.601-26.497S23.737 36.802 6.08 20.949z"/>
|
||||||
android:height="24dp"
|
|
||||||
android:viewportWidth="60"
|
|
||||||
android:viewportHeight="96">
|
|
||||||
<path
|
|
||||||
android:fillColor="#FFFFFF"
|
|
||||||
android:pathData="m6.08,20.9493c-3.1693,-3.0732 -3.1693,-7.9026 -0,-10.9759 3.1693,-3.0732 8.2402,-3.0732 11.4095,0L53.7782,42.6084c2.8873,3.1314 3.0135,8.0984 -0,10.8295l-36.2887,32.4886c-3.1693,3.0732 -8.2402,3.0732 -11.4095,0 -3.1693,-3.0732 -3.1693,-7.9026 -0,-10.9759 17.9527,-15.6542 29.6013,-26.4969 29.6013,-26.4969 -0,0 -11.9446,-11.6519 -29.6013,-27.5044z" />
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,9 +1,3 @@
|
||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="96" android:viewportHeight="96">
|
||||||
android:width="24dp"
|
<path android:fillColor="#FFFFFF" android:pathData="M26.08 20.95c-3.17-3.074-3.17-7.903 0-10.977 3.17-3.073 8.24-3.073 11.41 0l36.288 32.635c2.887 3.132 3.014 8.099 0 10.83L37.49 85.926C34.32 89 29.25 89 26.08 85.927s-3.17-7.902 0-10.975c17.953-15.655 29.601-26.497 29.601-26.497S43.737 36.802 26.08 20.949z"/>
|
||||||
android:height="24dp"
|
|
||||||
android:viewportWidth="96"
|
|
||||||
android:viewportHeight="96">
|
|
||||||
<path
|
|
||||||
android:fillColor="#FFFFFF"
|
|
||||||
android:pathData="m26.08,20.9493c-3.1693,-3.0732 -3.1693,-7.9026 -0,-10.9759 3.1693,-3.0732 8.2402,-3.0732 11.4095,0L73.7782,42.6084c2.8873,3.1314 3.0135,8.0984 -0,10.8295l-36.2887,32.4886c-3.1693,3.0732 -8.2402,3.0732 -11.4095,0 -3.1693,-3.0732 -3.1693,-7.9026 -0,-10.9759 17.9527,-15.6542 29.6013,-26.4969 29.6013,-26.4969 -0,0 -11.9446,-11.6519 -29.6013,-27.5044z" />
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,9 +1,3 @@
|
||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24">
|
||||||
android:width="24dp"
|
<path android:fillColor="#FFFFFFFF" android:pathData="M12.45 7.339h-1.5v6l4.75 2.85 0.75-1.23-4-2.37zm-0.5-4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"/>
|
||||||
android:height="24dp"
|
|
||||||
android:viewportWidth="24"
|
|
||||||
android:viewportHeight="24">
|
|
||||||
<path
|
|
||||||
android:fillColor="#FFFFFFFF"
|
|
||||||
android:pathData="m12.4492,7.339 l-1.5,0 0,6 4.75,2.85 0.75,-1.23 -4,-2.37zM11.9492,3.339c-4.97,0 -9,4.03 -9,9 0,4.97 4.02,9 9,9 4.97,0 9,-4.03 9,-9 0,-4.97 -4.03,-9 -9,-9zM11.9492,19.339c-3.87,0 -7,-3.13 -7,-7 0,-3.87 3.13,-7 7,-7 3.87,0 7,3.13 7,7 0,3.87 -3.13,7 -7,7z"/>
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
3
commons/src/main/res/drawable/ic_code_vector.xml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24">
|
||||||
|
<path android:fillColor="#FFFFFFFF" android:pathData="M8.7 15.9L4.8 12l3.9-3.9c0.39-0.39 0.39-1.01 0-1.4-0.39-0.39-1.01-0.39-1.4 0l-4.59 4.59c-0.39 0.39-0.39 1.02 0 1.41l4.59 4.6c0.39 0.39 1.01 0.39 1.4 0 0.39-0.39 0.39-1.01 0-1.4zm6.6 0l3.9-3.9-3.9-3.9c-0.39-0.39-0.39-1.01 0-1.4 0.39-0.39 1.01-0.39 1.4 0l4.59 4.59c0.39 0.39 0.39 1.02 0 1.41l-4.59 4.6c-0.39 0.39-1.01 0.39-1.4 0-0.39-0.39-0.39-1.01 0-1.4z"/>
|
||||||
|
</vector>
|
3
commons/src/main/res/drawable/ic_copy_vector.xml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24">
|
||||||
|
<path android:pathData="M15 1H4C2.9 1 2 1.9 2 3v13c0 0.55 0.45 1 1 1s1-0.45 1-1V4c0-0.55 0.45-1 1-1h10c0.55 0 1-0.45 1-1s-0.45-1-1-1zm0.59 4.59l4.83 4.83C20.79 10.79 21 11.3 21 11.83V21c0 1.1-0.9 2-2 2H7.99C6.89 23 6 22.1 6 21L6.01 7C6.01 5.9 6.9 5 8 5h6.17c0.53 0 1.04 0.21 1.42 0.59zM15 12h4.5L14 6.5V11c0 0.55 0.45 1 1 1z" android:fillColor="#FFFFFF"/>
|
||||||
|
</vector>
|
|
@ -0,0 +1,3 @@
|
||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24">
|
||||||
|
<path android:fillColor="#FFFFFF" android:pathData="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"/>
|
||||||
|
</vector>
|
|
@ -1,9 +1,3 @@
|
||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="96" android:viewportHeight="96">
|
||||||
android:width="24dp"
|
<path android:fillColor="#FFFFFF" android:pathData="M16.378 16.269c-3.291 3.29-3.289 8.63 0.002 11.921l19.871 19.871L16.38 67.933c-3.291 3.291-3.293 8.63 0 11.922 3.293 3.293 8.632 3.293 11.923 0.002l19.872-19.873 19.873 19.873c3.288 3.288 8.627 3.29 11.919 0 3.293-3.294 3.292-8.632 0.002-11.922L60.096 48.063l19.87-19.871c3.293-3.293 3.293-8.63 0-11.923-3.293-3.293-8.63-3.293-11.922 0l-19.871 19.87-19.87-19.87c-3.292-3.291-8.631-3.294-11.925 0z"/>
|
||||||
android:height="24dp"
|
|
||||||
android:viewportWidth="96"
|
|
||||||
android:viewportHeight="96">
|
|
||||||
<path
|
|
||||||
android:fillColor="#FFFFFF"
|
|
||||||
android:pathData="m16.3776,16.2686c-3.2911,3.2911 -3.2883,8.6306 0.0028,11.9218l19.8708,19.8708 -19.8722,19.8722c-3.2911,3.2911 -3.2926,8.6292 0,11.9218 3.2926,3.2926 8.632,3.2926 11.9232,0.0014l19.8722,-19.8722 19.8722,19.8722c3.2883,3.2883 8.6278,3.2911 11.9189,0 3.294,-3.294 3.2926,-8.632 0.0028,-11.9218l-19.8722,-19.8722 19.8708,-19.8708c3.2926,-3.2926 3.2926,-8.6292 -0.0014,-11.9232 -3.2926,-3.2926 -8.6292,-3.2926 -11.9218,0l-19.8708,19.8708 -19.8708,-19.8708C25.0111,12.9775 19.6716,12.9746 16.3776,16.2686Z" />
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,9 +1,3 @@
|
||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24">
|
||||||
android:width="24dp"
|
<path android:fillColor="#FFFFFFFF" android:pathData="M6 19c0 1.1 0.9 2 2 2h8c1.1 0 2-0.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"/>
|
||||||
android:height="24dp"
|
|
||||||
android:viewportWidth="24"
|
|
||||||
android:viewportHeight="24">
|
|
||||||
<path
|
|
||||||
android:fillColor="#FFFFFFFF"
|
|
||||||
android:pathData="M6,19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V7H6v12zM19,4h-3.5l-1,-1h-5l-1,1H5v2h14V4z"/>
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,9 +1,3 @@
|
||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24">
|
||||||
android:width="24dp"
|
<path android:fillColor="#FFFFFFFF" android:pathData="M12 19c-1.1 0-2 0.9-2 2s0.9 2 2 2 2-0.9 2-2-0.9-2-2-2zM6 1C4.9 1 4 1.9 4 3s0.9 2 2 2 2-0.9 2-2-0.9-2-2-2zm0 6C4.9 7 4 7.9 4 9s0.9 2 2 2 2-0.9 2-2-0.9-2-2-2zm0 6c-1.1 0-2 0.9-2 2s0.9 2 2 2 2-0.9 2-2-0.9-2-2-2zm12-8c1.1 0 2-0.9 2-2s-0.9-2-2-2-2 0.9-2 2 0.9 2 2 2zm-6 8c-1.1 0-2 0.9-2 2s0.9 2 2 2 2-0.9 2-2-0.9-2-2-2zm6 0c-1.1 0-2 0.9-2 2s0.9 2 2 2 2-0.9 2-2-0.9-2-2-2zm0-6c-1.1 0-2 0.9-2 2s0.9 2 2 2 2-0.9 2-2-0.9-2-2-2zm-6 0c-1.1 0-2 0.9-2 2s0.9 2 2 2 2-0.9 2-2-0.9-2-2-2zm0-6c-1.1 0-2 0.9-2 2s0.9 2 2 2 2-0.9 2-2-0.9-2-2-2z"/>
|
||||||
android:height="24dp"
|
|
||||||
android:viewportWidth="24"
|
|
||||||
android:viewportHeight="24">
|
|
||||||
<path
|
|
||||||
android:fillColor="#FFFFFFFF"
|
|
||||||
android:pathData="M12,19c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM6,1c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM6,7c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM6,13c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM12,13c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,13c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,7c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM12,7c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM12,1c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z" />
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,15 +1,3 @@
|
||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24">
|
||||||
android:width="24dp"
|
<path android:fillColor="#FFFFFFFF" android:pathData="M3.768 6.311h16.616a0.968 0.968 0 0 1 0.968 0.968 0.968 0.968 0 0 1-0.968 0.967H3.768A0.968 0.968 0 0 1 2.801 7.28a0.968 0.968 0 0 1 0.967-0.97zm-0.009 9.443h16.616a0.968 0.968 0 0 1 0.968 0.967 0.968 0.968 0 0 1-0.968 0.968H3.759a0.968 0.968 0 0 1-0.968-0.968 0.968 0.968 0 0 1 0.968-0.967zm-0.143-4.722h16.616A0.968 0.968 0 0 1 21.199 12a0.968 0.968 0 0 1-0.967 0.968H3.616A0.968 0.968 0 0 1 2.648 12a0.968 0.968 0 0 1 0.968-0.968z"/>
|
||||||
android:height="24dp"
|
|
||||||
android:viewportWidth="24"
|
|
||||||
android:viewportHeight="24">
|
|
||||||
<path
|
|
||||||
android:fillColor="#FFFFFFFF"
|
|
||||||
android:pathData="M3.7681,6.311L20.3843,6.311A0.9676,0.9676 0,0 1,21.3519 7.2786L21.3519,7.2786A0.9676,0.9676 0,0 1,20.3843 8.2462L3.7681,8.2462A0.9676,0.9676 0,0 1,2.8006 7.2786L2.8006,7.2786A0.9676,0.9676 0,0 1,3.7681 6.311z" />
|
|
||||||
<path
|
|
||||||
android:fillColor="#FFFFFFFF"
|
|
||||||
android:pathData="M3.7588,15.7538L20.375,15.7538A0.9676,0.9676 0,0 1,21.3426 16.7214L21.3426,16.7214A0.9676,0.9676 0,0 1,20.375 17.689L3.7588,17.689A0.9676,0.9676 0,0 1,2.7913 16.7214L2.7913,16.7214A0.9676,0.9676 0,0 1,3.7588 15.7538z" />
|
|
||||||
<path
|
|
||||||
android:fillColor="#FFFFFFFF"
|
|
||||||
android:pathData="M3.6157,11.0324L20.2319,11.0324A0.9676,0.9676 0,0 1,21.1994 12L21.1994,12A0.9676,0.9676 0,0 1,20.2319 12.9676L3.6157,12.9676A0.9676,0.9676 0,0 1,2.6481 12L2.6481,12A0.9676,0.9676 0,0 1,3.6157 11.0324z" />
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,9 +1,3 @@
|
||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24">
|
||||||
android:width="24dp"
|
<path android:fillColor="#FFFFFFFF" android:pathData="M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c0.39-0.39 0.39-1.02 0-1.41l-2.34-2.34c-0.39-0.39-1.02-0.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"/>
|
||||||
android:height="24dp"
|
|
||||||
android:viewportWidth="24"
|
|
||||||
android:viewportHeight="24">
|
|
||||||
<path
|
|
||||||
android:fillColor="#FFFFFFFF"
|
|
||||||
android:pathData="M3,17.25V21h3.75L17.81,9.94l-3.75,-3.75L3,17.25zM20.71,7.04c0.39,-0.39 0.39,-1.02 0,-1.41l-2.34,-2.34c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.83,1.83 3.75,3.75 1.83,-1.83z"/>
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
android:width="24dp"
|
|
||||||
android:height="24dp"
|
|
||||||
android:viewportWidth="24"
|
|
||||||
android:viewportHeight="24">
|
|
||||||
<path
|
|
||||||
android:fillColor="#FFFFFFFF"
|
|
||||||
android:pathData="M20,4L4,4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM20,8l-8,5 -8,-5L4,6l8,5 8,-5v2z"/>
|
|
||||||
</vector>
|
|
3
commons/src/main/res/drawable/ic_face_vector.xml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24">
|
||||||
|
<path android:fillColor="#FFFFFFFF" android:pathData="M10.25 13c0 0.69-0.56 1.25-1.25 1.25S7.75 13.69 7.75 13 8.31 11.75 9 11.75s1.25 0.56 1.25 1.25zM15 11.75c-0.69 0-1.25 0.56-1.25 1.25s0.56 1.25 1.25 1.25 1.25-0.56 1.25-1.25-0.56-1.25-1.25-1.25zM22 12c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10zm-2 0c0-0.78-0.12-1.53-0.33-2.24C18.97 9.91 18.25 10 17.5 10c-3.13 0-5.92-1.44-7.76-3.69C8.69 8.87 6.6 10.88 4 11.86 4.01 11.9 4 11.95 4 12c0 4.41 3.59 8 8 8s8-3.59 8-8z"/>
|
||||||
|
</vector>
|
|
@ -1,5 +1,4 @@
|
||||||
<vector android:height="24dp" android:viewportHeight="47.999996"
|
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="257.11" android:viewportHeight="257.11">
|
||||||
android:viewportWidth="47.999996" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
<path android:fillColor="#FF0062E0" android:pathData="M107.11 255.69C46.42 245 0 192.12 0 128.56 0 57.85 57.85 0 128.56 0s128.55 57.85 128.55 128.56c0 63.56-46.42 116.42-107.13 127.13l-7.14-5.69h-28.57z"/>
|
||||||
<path android:fillColor="#3c5a99" android:pathData="m45.2649,47.8639c1.4512,0 2.6279,-1.1768 2.6279,-2.6283l0,-42.3614c0,-1.4516 -1.1766,-2.6281 -2.6279,-2.6281l-42.3614,0c-1.4517,0 -2.6281,1.1765 -2.6281,2.6281l0,42.3614c0,1.4514 1.1762,2.6283 2.6281,2.6283l42.3614,0z"/>
|
<path android:fillColor="#fff" android:pathData="M178.55 164.27l5.71-35.71h-34.28v-25c0-10 3.57-17.86 19.28-17.86h16.43V52.85C176.4 51.42 166.41 50 157.11 50c-29.28 0-50 17.86-50 50v28.57H74.99v35.71h32.12V255a108.2 108.2 0 0 0 42.85 0v-90.7z"/>
|
||||||
<path android:fillColor="#ffffff" android:pathData="m33.1307,47.8639 l0,-18.4403 6.1895,0 0.9268,-7.1864 -7.1163,0 0,-4.5881c0,-2.0807 0.5778,-3.4986 3.5614,-3.4986l3.8054,0 0,-6.4276c-0.6581,-0.087 -2.9171,-0.2833 -5.5452,-0.2833 -5.4866,0 -9.2429,3.349 -9.2429,9.4994l0,5.2999 -6.2054,0 0,7.1864 6.2054,0 0,18.4403 7.4213,0z"/>
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,11 +1,7 @@
|
||||||
<vector android:height="24dp" android:viewportHeight="56"
|
<vector android:height="24dp" android:viewportHeight="56" android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
<path android:fillColor="#e9e9e0" android:pathData="M36.985 0H7.963C7.155 0 6.5 0.655 6.5 1.926l0.003 37.083c43.004-0.002 0.007-0.004 43.004-0.002L49.5 12.978c0-0.696-0.093-0.92-0.257-1.085L37.607 0.257C37.442 0.093 37.218 0 36.985 0z"/>
|
||||||
<path android:fillColor="#e9e9e0" android:pathData="M36.985,0 L7.963,0C7.155,0 6.4999,0.655 6.5,1.926l0.0027,37.0831c43.0047,-0.0017 0.0078,-0.0039 43.0047,-0.0017L49.5,12.978c-0.0002,-0.696 -0.093,-0.92 -0.257,-1.085L37.607,0.257C37.442,0.093 37.218,0 36.985,0Z"/>
|
<path android:fillColor="#3a3375" android:pathData="M48.037 56H7.963C7.155 56 6.5 55.345 6.5 54.537V39h43v15.537c0 0.808-0.655 1.463-1.463 1.463zM24.313 29.426c-0.153 0-0.305-0.038-0.443-0.113-0.295-0.163-0.479-0.472-0.479-0.809V15.6c0-0.336 0.184-0.646 0.479-0.808 0.296-0.161 0.654-0.15 0.94 0.03l10.138 6.453c0.264 0.17 0.426 0.462 0.426 0.777 0 0.316-0.162 0.609-0.427 0.778l-10.139 6.452c-0.15 0.095-0.322 0.144-0.495 0.144z"/>
|
||||||
<path android:fillColor="#3a3375" android:pathData="M48.037,56 L7.963,56C7.155,56 6.5,55.345 6.5,54.537L6.5,39l43,0 0,15.537C49.5,55.345 48.845,56 48.037,56Z"/>
|
<path android:fillColor="#3a3375" android:pathData="M28 35.878c-7.623 0-13.825-6.202-13.825-13.826 0-7.623 6.202-13.825 13.825-13.825 7.623 0 13.825 6.202 13.825 13.825 0 7.624-6.202 13.826-13.825 13.826zm0-25.388c-6.607 0-11.563 4.956-11.563 11.562 0 6.607 4.956 11.563 11.563 11.563s11.563-4.956 11.563-11.563c0-6.606-4.956-11.562-11.563-11.562z"/>
|
||||||
<path android:fillColor="#3a3375" android:pathData="m24.3132,29.426c-0.153,0 -0.3051,-0.0378 -0.4433,-0.1134 -0.2949,-0.1622 -0.4784,-0.4719 -0.4784,-0.8083l0,-12.9038c0,-0.3364 0.1834,-0.6461 0.4784,-0.8083 0.2959,-0.1613 0.6544,-0.1493 0.9392,0.0304l10.1387,6.4519c0.2645,0.1696 0.4258,0.4627 0.4258,0.7779 0,0.3152 -0.1613,0.6083 -0.4267,0.7779L24.8082,29.2822c-0.1502,0.0949 -0.3226,0.1438 -0.495,0.1438z"/>
|
<path android:fillColor="#d9d7ca" android:pathData="M37.5 12h11.849L37.5 0.151z"/>
|
||||||
<path android:fillColor="#3a3375" android:pathData="m28,35.8779c-7.6234,0 -13.8255,-6.2021 -13.8255,-13.8255 0,-7.6234 6.2021,-13.8255 13.8255,-13.8255 7.6234,0 13.8255,6.2021 13.8255,13.8255 0,7.6234 -6.2021,13.8255 -13.8255,13.8255zM28,10.4898c-6.6067,0 -11.5626,4.9559 -11.5626,11.5626 0,6.6067 4.9559,11.5626 11.5626,11.5626 6.6067,0 11.5626,-4.9559 11.5626,-11.5626 0,-6.6067 -4.9559,-11.5626 -11.5626,-11.5626z"/>
|
<path android:fillColor="#ffffff" android:pathData="M15.075 52.484l3.527-10.063h1.627l3.501 10.063h-1.696l-0.725-2.092h-3.787l-0.738 2.092h-1.709zm2.83-3.2h3.008l-1.49-4.347-1.518 4.348zm9.695-5.637v3.172h4.211v1.12h-4.21v3.296h4.635v1.244h-6.303V42.403h6.303v1.244H27.6zm8.554 8.837h-1.641V42.407h2.898c0.428 0 0.852 0.068 1.27 0.205 0.42 0.137 0.796 0.342 1.129 0.615 0.333 0.273 0.602 0.604 0.807 0.991 0.205 0.387 0.308 0.822 0.308 1.306 0 0.511-0.087 0.973-0.26 1.388-0.173 0.415-0.415 0.764-0.725 1.046-0.31 0.282-0.684 0.501-1.121 0.656-0.437 0.155-0.921 0.232-1.45 0.232h-1.216v3.638zm0-8.832v3.992h1.504c0.2 0 0.398-0.034 0.595-0.103 0.196-0.068 0.376-0.18 0.54-0.335 0.164-0.155 0.296-0.371 0.396-0.649 0.1-0.278 0.15-0.622 0.15-1.032 0-0.164-0.023-0.354-0.068-0.567-0.046-0.214-0.14-0.419-0.28-0.615-0.142-0.196-0.34-0.36-0.595-0.492-0.256-0.133-0.593-0.199-1.012-0.199h-1.23z"/>
|
||||||
<path android:fillColor="#d9d7ca" android:pathData="M37.5,12l11.849,0l-11.849,-11.849z"/>
|
|
||||||
<path android:fillColor="#ffffff" android:pathData="m15.0754,52.4836 l3.527,-10.063 1.627,0 3.501,10.063 -1.696,0 -0.725,-2.092 -3.787,0 -0.738,2.092 -1.709,0zM17.9054,49.2846 L20.9134,49.2846 19.4234,44.9366 17.9054,49.2846z"/>
|
|
||||||
<path android:fillColor="#ffffff" android:pathData="m27.6005,43.6469 l0,3.172 4.211,0 0,1.121 -4.211,0 0,3.295 4.635,0 0,1.244 -6.303,0 0,-10.076 6.303,0 0,1.244 -4.635,0z"/>
|
|
||||||
<path android:fillColor="#ffffff" android:pathData="m36.1536,52.484 l-1.641,0 0,-10.077 2.898,0c0.428,0 0.852,0.068 1.271,0.205 0.419,0.137 0.795,0.342 1.128,0.615 0.333,0.273 0.602,0.604 0.807,0.991 0.205,0.387 0.308,0.822 0.308,1.306 0,0.511 -0.087,0.973 -0.26,1.388 -0.173,0.415 -0.415,0.764 -0.725,1.046 -0.31,0.282 -0.684,0.501 -1.121,0.656 -0.437,0.155 -0.921,0.232 -1.449,0.232l-1.217,0 0,3.638zM36.1536,43.652 L36.1536,47.644 37.6576,47.644c0.2,0 0.398,-0.034 0.595,-0.103 0.196,-0.068 0.376,-0.18 0.54,-0.335 0.164,-0.155 0.296,-0.371 0.396,-0.649 0.1,-0.278 0.15,-0.622 0.15,-1.032 0,-0.164 -0.023,-0.354 -0.068,-0.567 -0.046,-0.214 -0.139,-0.419 -0.28,-0.615 -0.142,-0.196 -0.34,-0.36 -0.595,-0.492 -0.256,-0.133 -0.593,-0.199 -1.012,-0.199l-1.23,0z"/>
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
<vector android:height="24dp" android:viewportHeight="56"
|
<vector android:height="24dp" android:viewportHeight="56" android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
<path android:fillColor="#e9e9e0" android:pathData="M36.985 0H7.963C7.155 0 6.5 0.655 6.5 1.926V39h43V12.978c0-0.696-0.093-0.92-0.257-1.085L37.607 0.257C37.442 0.093 37.218 0 36.985 0z"/>
|
||||||
<path android:fillColor="#e9e9e0" android:pathData="M36.985,0 L7.963,0C7.155,0 6.5,0.655 6.5,1.926l0,37.074 43,0 0,-26.022c0,-0.696 -0.093,-0.92 -0.257,-1.085L37.607,0.257C37.442,0.093 37.218,0 36.985,0Z"/>
|
<path android:fillColor="#e57603" android:pathData="M48.037 56H7.963C7.155 56 6.5 55.345 6.5 54.537V39h43v15.537c0 0.808-0.655 1.463-1.463 1.463z"/>
|
||||||
<path android:fillColor="#e57603" android:pathData="M48.037,56 L7.963,56C7.155,56 6.5,55.345 6.5,54.537L6.5,39l43,0 0,15.537C49.5,55.345 48.845,56 48.037,56Z"/>
|
<path android:fillColor="#ffffff" android:pathData="M21.765 53l3.527-10.063h1.627L30.42 53h-1.695L28 50.908h-3.787L23.474 53h-1.709zm2.83-3.199h3.009l-1.49-4.348-1.518 4.348zM34.234 53h-1.668V42.924h1.668V53z"/>
|
||||||
<path android:fillColor="#ffffff" android:pathData="m21.7655,53 l3.527,-10.063 1.627,0 3.501,10.063 -1.695,0 -0.725,-2.092 -3.787,0 -0.739,2.092 -1.709,0zM24.5955,49.801 L27.6035,49.801 26.1135,45.453 24.5955,49.801z"/>
|
<path android:fillColor="#D9D7CA" android:pathData="M37.5 0.151V12h11.849z"/>
|
||||||
<path android:fillColor="#ffffff" android:pathData="m34.2345,53 l-1.668,0 0,-10.076 1.668,0 0,10.076z"/>
|
<path android:fillColor="#e57603" android:pathData="M18.846 13.157c-1 1.089-2.545 1.612-4.069 1.204-2.183-0.585-3.483-2.836-2.898-5.02 0.585-2.182 2.837-3.482 5.02-2.897 2.124 0.569 3.396 2.715 2.926 4.841l-0.979 1.872zm-2.478-4.734c-1.091-0.292-2.217 0.358-2.51 1.45-0.292 1.09 0.358 2.216 1.45 2.509 1.091 0.292 2.217-0.357 2.51-1.45 0.292-1.09-0.358-2.216-1.45-2.509zm3.44 2.89c3.147 0.992 5.187 3.132 6.21 6.265 0.704-0.569 1.587-0.923 2.56-0.923 1.905 0 3.495 1.311 3.953 3.074h3.219v-2.05h6.147v6.148H35.75v-2.05h-2.993c0.344 2.73 2.034 5.101 4.497 6.315 0.684-1.31 2.04-2.216 3.619-2.216 2.26 0 4.098 1.838 4.098 4.098s-1.838 4.099-4.098 4.099c-2.199 0-3.984-1.744-4.08-3.92-2.72-1.178-4.761-3.47-5.66-6.221-0.703 0.566-1.584 0.92-2.555 0.92-1.905 0-3.495-1.312-3.953-3.074h-3.219v2.05h-6.147V17.68h6.147v2.049h3.003c-0.388-3.093-2.76-5.55-5.605-6.58zM37.8 21.778h2.05v-2.05H37.8zm3.074 10.245c1.13 0 2.049-0.919 2.049-2.049s-0.92-2.049-2.05-2.049-2.048 0.92-2.048 2.05 0.919 2.048 2.049 2.048zM19.357 19.73h-2.05v2.049h2.05zm9.221 3.073c1.13 0 2.05-0.919 2.05-2.049s-0.92-2.049-2.05-2.049-2.05 0.92-2.05 2.05 0.92 2.048 2.05 2.048z"/>
|
||||||
<path android:fillColor="#D9D7CA" android:pathData="M37.5,0.151l0,11.849l11.849,0z"/>
|
|
||||||
<path android:fillColor="#e57603" android:pathData="m18.8464,13.1571c-1.0003,1.0886 -2.545,1.6124 -4.0691,1.204 -2.1832,-0.585 -3.4829,-2.8362 -2.8979,-5.0194 0.585,-2.1832 2.8362,-3.4829 5.0194,-2.8979 2.1238,0.5691 3.3965,2.7154 2.9265,4.8414 -0.9789,1.8719 0,0 -0.9789,1.8719zM16.3684,8.4232C15.2768,8.1307 14.1512,8.7806 13.8588,9.8722 13.5663,10.9638 14.2161,12.0893 15.3077,12.3818 16.3993,12.6743 17.5249,12.0245 17.8174,10.9329 18.1099,9.8413 17.46,8.7157 16.3684,8.4232ZM19.8081,11.3129c3.1465,0.9918 5.1869,3.132 6.2105,6.2652 0.7039,-0.5686 1.586,-0.9231 2.5594,-0.9231 1.9047,0 3.4948,1.3114 3.9528,3.0737l3.2192,0 0,-2.0491 6.1474,0 0,6.1474 -6.1474,0 0,-2.0491 -2.9928,0c0.3443,2.7284 2.0338,5.1003 4.4968,6.3144 0.6844,-1.3104 2.0409,-2.2161 3.6188,-2.2161 2.2602,0 4.0983,1.8381 4.0983,4.0983 0,2.2602 -1.8381,4.0983 -4.0983,4.0983 -2.1987,0 -3.9835,-1.7438 -4.0798,-3.919 -2.7202,-1.1793 -4.7612,-3.4702 -5.6597,-6.2222 -0.7029,0.5666 -1.584,0.9201 -2.5553,0.9201 -1.9047,0 -3.4948,-1.3115 -3.9528,-3.0737l-3.2192,0 0,2.0491 -6.1474,0 0,-6.1474 6.1474,0 0,2.0491 3.003,0c-0.3883,-3.0932 -2.7591,-5.5504 -5.6053,-6.579zM37.7991,21.7778 L39.8483,21.7778 39.8483,19.7287 37.7991,19.7287zM40.8728,32.0235c1.1301,0 2.0491,-0.919 2.0491,-2.0491 0,-1.1301 -0.919,-2.0491 -2.0491,-2.0491 -1.1301,0 -2.0491,0.919 -2.0491,2.0491 0,1.1301 0.919,2.0491 2.0491,2.0491zM19.3569,19.7287 L17.3077,19.7287 17.3077,21.7778 19.3569,21.7778zM28.578,22.8024c1.1301,0 2.0491,-0.919 2.0491,-2.0491 0,-1.1301 -0.919,-2.0491 -2.0491,-2.0491 -1.1301,0 -2.0491,0.919 -2.0491,2.0491 0,1.1301 0.919,2.0491 2.0491,2.0491z"/>
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,11 +1,8 @@
|
||||||
<vector android:height="24dp" android:viewportHeight="56"
|
<vector android:height="24dp" android:viewportHeight="56" android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
<path android:fillColor="#e9e9e0" android:pathData="M36.985 0H7.963C7.155 0 6.5 0.655 6.5 1.926V39h43V12.978c0-0.696-0.093-0.92-0.257-1.085L37.607 0.257C37.442 0.093 37.218 0 36.985 0z"/>
|
||||||
<path android:fillColor="#e9e9e0" android:pathData="M36.985,0 L7.963,0C7.155,0 6.5,0.655 6.5,1.926l0,37.074 43,0 0,-26.022c0,-0.696 -0.093,-0.92 -0.257,-1.085L37.607,0.257C37.442,0.093 37.218,0 36.985,0Z"/>
|
<path android:fillColor="#D9D7CA" android:pathData="M37.5 0.151V12h11.849z"/>
|
||||||
<path android:fillColor="#D9D7CA" android:pathData="M37.5,0.151l0,11.849l11.849,0z"/>
|
<path android:fillColor="#D75E72" android:pathData="M48.037 56H7.963C7.155 56 6.5 55.345 6.5 54.537V39h43v15.537c0 0.808-0.655 1.463-1.463 1.463z"/>
|
||||||
<path android:fillColor="#D75E72" android:pathData="M48.037,56H7.963C7.155,56 6.5,55.345 6.5,54.537V39h43v15.537C49.5,55.345 48.845,56 48.037,56z"/>
|
<path android:fillColor="#ffffff" android:pathData="M16.686 53l3.527-10.063h1.627L25.341 53h-1.696l-0.725-2.092h-3.787L18.395 53h-1.709zm2.83-3.199h3.009l-1.49-4.348-1.518 4.348zm10.638 3.254l-3.131-10.131h1.873l2.338 8.695 2.475-8.695h1.858l-3.28 10.131h-2.133zM39.313 53h-1.668V42.924h1.668V53z"/>
|
||||||
<path android:fillColor="#ffffff" android:pathData="m16.6865,53 l3.527,-10.063 1.627,0 3.501,10.063 -1.696,0 -0.725,-2.092 -3.787,0L18.3955,53 16.6865,53ZM19.5165,49.801 L22.5245,49.801 21.0345,45.453 19.5165,49.801z"/>
|
<path android:fillColor="#d75e72" android:pathData="M24.313 29.426c-0.153 0-0.305-0.038-0.443-0.113-0.295-0.163-0.479-0.472-0.479-0.809V15.6c0-0.336 0.184-0.646 0.479-0.808 0.296-0.161 0.654-0.15 0.94 0.03l10.138 6.453c0.264 0.17 0.426 0.462 0.426 0.777 0 0.316-0.162 0.609-0.427 0.778l-10.139 6.452c-0.15 0.095-0.322 0.144-0.495 0.144z"/>
|
||||||
<path android:fillColor="#ffffff" android:pathData="m30.1535,53.055 l-3.131,-10.131 1.873,0 2.338,8.695 2.475,-8.695 1.859,0 -3.281,10.131 -2.133,0z"/>
|
<path android:fillColor="#d75e72" android:pathData="M28 35.878c-7.623 0-13.825-6.202-13.825-13.826 0-7.623 6.202-13.825 13.825-13.825 7.623 0 13.825 6.202 13.825 13.825 0 7.624-6.202 13.826-13.825 13.826zm0-25.388c-6.607 0-11.563 4.956-11.563 11.562 0 6.607 4.956 11.563 11.563 11.563s11.563-4.956 11.563-11.563c0-6.606-4.956-11.562-11.563-11.562z"/>
|
||||||
<path android:fillColor="#ffffff" android:pathData="m39.3135,53 l-1.668,0 0,-10.076 1.668,0 0,10.076z"/>
|
|
||||||
<path android:fillColor="#d75e72" android:pathData="m24.3132,29.426c-0.153,0 -0.3051,-0.0378 -0.4433,-0.1134 -0.2949,-0.1622 -0.4784,-0.4719 -0.4784,-0.8083l0,-12.9038c0,-0.3364 0.1834,-0.6461 0.4784,-0.8083 0.2959,-0.1613 0.6544,-0.1493 0.9392,0.0304l10.1387,6.4519c0.2645,0.1696 0.4258,0.4627 0.4258,0.7779 0,0.3152 -0.1613,0.6083 -0.4267,0.7779L24.8082,29.2822c-0.1502,0.0949 -0.3226,0.1438 -0.495,0.1438z"/>
|
|
||||||
<path android:fillColor="#d75e72" android:pathData="m28,35.8779c-7.6234,0 -13.8255,-6.2021 -13.8255,-13.8255 0,-7.6234 6.2021,-13.8255 13.8255,-13.8255 7.6234,0 13.8255,6.2021 13.8255,13.8255 0,7.6234 -6.2021,13.8255 -13.8255,13.8255zM28,10.4898c-6.6067,0 -11.5626,4.9559 -11.5626,11.5626 0,6.6067 4.9559,11.5626 11.5626,11.5626 6.6067,0 11.5626,-4.9559 11.5626,-11.5626 0,-6.6067 -4.9559,-11.5626 -11.5626,-11.5626z"/>
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,11 +1,7 @@
|
||||||
<vector android:height="24dp" android:viewportHeight="56"
|
<vector android:height="24dp" android:viewportHeight="56" android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
<path android:fillColor="#e9e9e0" android:pathData="M36.985 0H7.963C7.155 0 6.5 0.655 6.5 1.926V39h43V12.978c0-0.696-0.093-0.92-0.257-1.085L37.607 0.257C37.442 0.093 37.218 0 36.985 0z"/>
|
||||||
<path android:fillColor="#e9e9e0" android:pathData="M36.985,0 L7.963,0C7.155,0 6.5,0.655 6.5,1.926l0,37.074 43,0 0,-26.022c0,-0.696 -0.093,-0.92 -0.257,-1.085L37.607,0.257C37.442,0.093 37.218,0 36.985,0Z"/>
|
<path android:fillColor="#D9D7CA" android:pathData="M37.5 0.151V12h11.849z"/>
|
||||||
<path android:fillColor="#D9D7CA" android:pathData="M37.5,0.151l0,11.849l11.849,0z"/>
|
<path android:fillColor="#0096E6" android:pathData="M48.037 56H7.963C7.155 56 6.5 55.345 6.5 54.537V39h43v15.537c0 0.808-0.655 1.463-1.463 1.463z"/>
|
||||||
<path android:fillColor="#0096E6" android:pathData="M48.037,56H7.963C7.155,56 6.5,55.345 6.5,54.537V39h43v15.537C49.5,55.345 48.845,56 48.037,56z"/>
|
<path android:fillColor="#ffffff" android:pathData="M23.768 51.975c-0.374 0.364-0.798 0.638-1.271 0.82-0.473 0.182-0.984 0.273-1.531 0.273-0.602 0-1.155-0.109-1.661-0.328-0.506-0.219-0.948-0.542-1.326-0.971-0.378-0.429-0.675-0.966-0.889-1.613-0.214-0.647-0.321-1.395-0.321-2.242s0.107-1.593 0.321-2.235c0.214-0.643 0.511-1.178 0.889-1.606 0.378-0.428 0.822-0.754 1.333-0.978 0.511-0.224 1.062-0.335 1.654-0.335 0.547 0 1.058 0.091 1.531 0.273 0.473 0.182 0.897 0.456 1.271 0.82l-1.135 1.012c-0.228-0.265-0.48-0.456-0.759-0.574-0.279-0.118-0.567-0.178-0.868-0.178-0.337 0-0.658 0.063-0.964 0.191-0.306 0.128-0.579 0.344-0.82 0.649-0.241 0.305-0.431 0.699-0.567 1.183-0.136 0.484-0.21 1.075-0.219 1.777 0.009 0.684 0.08 1.267 0.212 1.75 0.132 0.483 0.314 0.877 0.547 1.183 0.233 0.306 0.497 0.528 0.793 0.67 0.296 0.142 0.608 0.212 0.937 0.212 0.329 0 0.636-0.06 0.923-0.178 0.287-0.118 0.549-0.31 0.786-0.574l1.134 0.999zm8.053-1.737c0 0.364-0.075 0.718-0.226 1.06-0.151 0.342-0.362 0.643-0.636 0.902s-0.61 0.467-1.012 0.622c-0.402 0.155-0.856 0.232-1.367 0.232-0.219 0-0.444-0.012-0.677-0.034-0.233-0.022-0.467-0.062-0.704-0.116-0.237-0.054-0.463-0.13-0.677-0.226-0.214-0.096-0.398-0.212-0.554-0.349l0.287-1.176c0.128 0.073 0.289 0.144 0.485 0.212s0.398 0.132 0.608 0.191c0.21 0.059 0.419 0.107 0.629 0.144 0.21 0.037 0.405 0.055 0.588 0.055 0.556 0 0.982-0.13 1.278-0.39 0.296-0.26 0.444-0.645 0.444-1.155 0-0.31-0.104-0.574-0.314-0.793-0.21-0.219-0.472-0.417-0.786-0.595-0.314-0.178-0.654-0.355-1.019-0.533-0.365-0.178-0.706-0.388-1.025-0.629-0.319-0.241-0.583-0.526-0.793-0.854-0.21-0.328-0.314-0.738-0.314-1.23 0-0.446 0.082-0.843 0.246-1.189 0.164-0.346 0.385-0.641 0.663-0.882s0.602-0.426 0.971-0.554c0.369-0.128 0.759-0.191 1.169-0.191 0.419 0 0.843 0.039 1.271 0.116 0.428 0.077 0.774 0.203 1.039 0.376-0.055 0.118-0.118 0.248-0.191 0.39l-0.205 0.396c-0.063 0.123-0.118 0.226-0.164 0.308-0.046 0.082-0.073 0.128-0.082 0.137-0.055-0.027-0.116-0.063-0.185-0.109-0.069-0.046-0.166-0.091-0.294-0.137-0.128-0.046-0.296-0.077-0.506-0.096-0.21-0.019-0.479-0.014-0.807 0.014-0.183 0.019-0.355 0.07-0.52 0.157-0.165 0.087-0.31 0.193-0.438 0.321s-0.228 0.271-0.301 0.431c-0.073 0.16-0.109 0.313-0.109 0.458 0 0.364 0.104 0.658 0.314 0.882 0.21 0.224 0.47 0.419 0.779 0.588 0.309 0.169 0.647 0.333 1.012 0.492 0.365 0.159 0.704 0.354 1.019 0.581 0.315 0.227 0.576 0.513 0.786 0.854 0.21 0.341 0.318 0.781 0.318 1.319zm7.41 0c0 0.364-0.075 0.718-0.226 1.06-0.151 0.342-0.362 0.643-0.636 0.902s-0.61 0.467-1.012 0.622c-0.402 0.155-0.856 0.232-1.367 0.232-0.219 0-0.444-0.012-0.677-0.034-0.233-0.022-0.467-0.062-0.704-0.116-0.237-0.054-0.463-0.13-0.677-0.226-0.214-0.096-0.398-0.212-0.554-0.349l0.287-1.176c0.128 0.073 0.289 0.144 0.485 0.212s0.398 0.132 0.608 0.191c0.21 0.059 0.419 0.107 0.629 0.144 0.21 0.037 0.405 0.055 0.588 0.055 0.556 0 0.982-0.13 1.278-0.39 0.296-0.26 0.444-0.645 0.444-1.155 0-0.31-0.104-0.574-0.314-0.793-0.21-0.219-0.472-0.417-0.786-0.595-0.314-0.178-0.654-0.355-1.019-0.533-0.365-0.178-0.706-0.388-1.025-0.629-0.319-0.241-0.583-0.526-0.793-0.854-0.21-0.328-0.314-0.738-0.314-1.23 0-0.446 0.082-0.843 0.246-1.189 0.164-0.346 0.385-0.641 0.663-0.882s0.602-0.426 0.971-0.554c0.369-0.128 0.759-0.191 1.169-0.191 0.419 0 0.843 0.039 1.271 0.116 0.428 0.077 0.774 0.203 1.039 0.376-0.055 0.118-0.118 0.248-0.191 0.39l-0.205 0.396c-0.063 0.123-0.118 0.226-0.164 0.308-0.046 0.082-0.073 0.128-0.082 0.137-0.055-0.027-0.116-0.063-0.185-0.109-0.069-0.046-0.166-0.091-0.294-0.137-0.128-0.046-0.296-0.077-0.506-0.096-0.21-0.019-0.479-0.014-0.807 0.014-0.183 0.019-0.355 0.07-0.52 0.157-0.165 0.087-0.31 0.193-0.438 0.321s-0.228 0.271-0.301 0.431c-0.073 0.16-0.109 0.313-0.109 0.458 0 0.364 0.104 0.658 0.314 0.882 0.21 0.224 0.47 0.419 0.779 0.588 0.309 0.169 0.647 0.333 1.012 0.492 0.365 0.159 0.704 0.354 1.019 0.581 0.315 0.227 0.576 0.513 0.786 0.854 0.21 0.341 0.318 0.781 0.318 1.319z"/>
|
||||||
<path android:fillColor="#ffffff" android:pathData="m23.768,51.975c-0.374,0.364 -0.798,0.638 -1.271,0.82 -0.473,0.182 -0.984,0.273 -1.531,0.273 -0.602,0 -1.155,-0.109 -1.661,-0.328 -0.506,-0.219 -0.948,-0.542 -1.326,-0.971 -0.378,-0.429 -0.675,-0.966 -0.889,-1.613 -0.214,-0.647 -0.321,-1.395 -0.321,-2.242 0,-0.847 0.107,-1.593 0.321,-2.235 0.214,-0.643 0.511,-1.178 0.889,-1.606 0.378,-0.428 0.822,-0.754 1.333,-0.978 0.511,-0.224 1.062,-0.335 1.654,-0.335 0.547,0 1.058,0.091 1.531,0.273 0.473,0.182 0.897,0.456 1.271,0.82l-1.135,1.012c-0.228,-0.265 -0.48,-0.456 -0.759,-0.574 -0.279,-0.118 -0.567,-0.178 -0.868,-0.178 -0.337,0 -0.658,0.063 -0.964,0.191 -0.306,0.128 -0.579,0.344 -0.82,0.649 -0.241,0.305 -0.431,0.699 -0.567,1.183 -0.136,0.484 -0.21,1.075 -0.219,1.777 0.009,0.684 0.08,1.267 0.212,1.75 0.132,0.483 0.314,0.877 0.547,1.183 0.233,0.306 0.497,0.528 0.793,0.67 0.296,0.142 0.608,0.212 0.937,0.212 0.329,0 0.636,-0.06 0.923,-0.178 0.287,-0.118 0.549,-0.31 0.786,-0.574l1.134,0.999z"/>
|
<path android:fillColor="#0096e6" android:pathData="M22 19v-4c0-0.551 0.448-1 1-1 0.553 0 1-0.448 1-1s-0.447-1-1-1c-1.654 0-3 1.346-3 3v4c0 1.103-0.897 2-2 2-0.553 0-1 0.448-1 1s0.447 1 1 1c1.103 0 2 0.897 2 2v4c0 1.654 1.346 3 3 3 0.553 0 1-0.448 1-1s-0.447-1-1-1c-0.552 0-1-0.449-1-1v-4c0-1.2-0.542-2.266-1.382-3C21.458 21.266 22 20.2 22 19zm16 2c-1.103 0-2-0.897-2-2v-4c0-1.654-1.346-3-3-3-0.553 0-1 0.448-1 1s0.447 1 1 1c0.552 0 1 0.449 1 1v4c0 1.2 0.542 2.266 1.382 3C34.542 22.734 34 23.8 34 25v4c0 0.551-0.448 1-1 1-0.553 0-1 0.448-1 1s0.447 1 1 1c1.654 0 3-1.346 3-3v-4c0-1.103 0.897-2 2-2 0.553 0 1-0.448 1-1s-0.447-1-1-1z"/>
|
||||||
<path android:fillColor="#ffffff" android:pathData="m31.821,50.238c0,0.364 -0.075,0.718 -0.226,1.06 -0.151,0.342 -0.362,0.643 -0.636,0.902 -0.274,0.259 -0.61,0.467 -1.012,0.622 -0.402,0.155 -0.856,0.232 -1.367,0.232 -0.219,0 -0.444,-0.012 -0.677,-0.034 -0.233,-0.022 -0.467,-0.062 -0.704,-0.116 -0.237,-0.054 -0.463,-0.13 -0.677,-0.226 -0.214,-0.096 -0.398,-0.212 -0.554,-0.349l0.287,-1.176c0.128,0.073 0.289,0.144 0.485,0.212 0.196,0.068 0.398,0.132 0.608,0.191 0.21,0.059 0.419,0.107 0.629,0.144 0.21,0.037 0.405,0.055 0.588,0.055 0.556,0 0.982,-0.13 1.278,-0.39 0.296,-0.26 0.444,-0.645 0.444,-1.155 0,-0.31 -0.104,-0.574 -0.314,-0.793C29.763,49.198 29.501,49 29.187,48.822 28.873,48.644 28.533,48.467 28.168,48.289 27.803,48.111 27.462,47.901 27.143,47.66c-0.319,-0.241 -0.583,-0.526 -0.793,-0.854 -0.21,-0.328 -0.314,-0.738 -0.314,-1.23 0,-0.446 0.082,-0.843 0.246,-1.189 0.164,-0.346 0.385,-0.641 0.663,-0.882 0.278,-0.241 0.602,-0.426 0.971,-0.554 0.369,-0.128 0.759,-0.191 1.169,-0.191 0.419,0 0.843,0.039 1.271,0.116 0.428,0.077 0.774,0.203 1.039,0.376 -0.055,0.118 -0.118,0.248 -0.191,0.39 -0.073,0.142 -0.142,0.273 -0.205,0.396 -0.063,0.123 -0.118,0.226 -0.164,0.308 -0.046,0.082 -0.073,0.128 -0.082,0.137C30.698,44.456 30.637,44.42 30.568,44.374 30.499,44.328 30.402,44.283 30.274,44.237 30.146,44.191 29.978,44.16 29.768,44.141c-0.21,-0.019 -0.479,-0.014 -0.807,0.014 -0.183,0.019 -0.355,0.07 -0.52,0.157 -0.165,0.087 -0.31,0.193 -0.438,0.321 -0.128,0.128 -0.228,0.271 -0.301,0.431 -0.073,0.16 -0.109,0.313 -0.109,0.458 0,0.364 0.104,0.658 0.314,0.882 0.21,0.224 0.47,0.419 0.779,0.588 0.309,0.169 0.647,0.333 1.012,0.492 0.365,0.159 0.704,0.354 1.019,0.581 0.315,0.227 0.576,0.513 0.786,0.854 0.21,0.341 0.318,0.781 0.318,1.319z"/>
|
|
||||||
<path android:fillColor="#ffffff" android:pathData="m39.231,50.238c0,0.364 -0.075,0.718 -0.226,1.06 -0.151,0.342 -0.362,0.643 -0.636,0.902 -0.274,0.259 -0.61,0.467 -1.012,0.622 -0.402,0.155 -0.856,0.232 -1.367,0.232 -0.219,0 -0.444,-0.012 -0.677,-0.034 -0.233,-0.022 -0.467,-0.062 -0.704,-0.116 -0.237,-0.054 -0.463,-0.13 -0.677,-0.226 -0.214,-0.096 -0.398,-0.212 -0.554,-0.349l0.287,-1.176c0.128,0.073 0.289,0.144 0.485,0.212 0.196,0.068 0.398,0.132 0.608,0.191 0.21,0.059 0.419,0.107 0.629,0.144 0.21,0.037 0.405,0.055 0.588,0.055 0.556,0 0.982,-0.13 1.278,-0.39 0.296,-0.26 0.444,-0.645 0.444,-1.155 0,-0.31 -0.104,-0.574 -0.314,-0.793C37.173,49.198 36.911,49 36.597,48.822 36.283,48.644 35.943,48.467 35.578,48.289 35.213,48.111 34.872,47.901 34.553,47.66c-0.319,-0.241 -0.583,-0.526 -0.793,-0.854 -0.21,-0.328 -0.314,-0.738 -0.314,-1.23 0,-0.446 0.082,-0.843 0.246,-1.189 0.164,-0.346 0.385,-0.641 0.663,-0.882 0.278,-0.241 0.602,-0.426 0.971,-0.554 0.369,-0.128 0.759,-0.191 1.169,-0.191 0.419,0 0.843,0.039 1.271,0.116 0.428,0.077 0.774,0.203 1.039,0.376 -0.055,0.118 -0.118,0.248 -0.191,0.39 -0.073,0.142 -0.142,0.273 -0.205,0.396 -0.063,0.123 -0.118,0.226 -0.164,0.308 -0.046,0.082 -0.073,0.128 -0.082,0.137C38.108,44.456 38.047,44.42 37.978,44.374 37.909,44.328 37.812,44.283 37.684,44.237 37.556,44.191 37.388,44.16 37.178,44.141c-0.21,-0.019 -0.479,-0.014 -0.807,0.014 -0.183,0.019 -0.355,0.07 -0.52,0.157 -0.165,0.087 -0.31,0.193 -0.438,0.321 -0.128,0.128 -0.228,0.271 -0.301,0.431 -0.073,0.16 -0.109,0.313 -0.109,0.458 0,0.364 0.104,0.658 0.314,0.882 0.21,0.224 0.47,0.419 0.779,0.588 0.309,0.169 0.647,0.333 1.012,0.492 0.365,0.159 0.704,0.354 1.019,0.581 0.315,0.227 0.576,0.513 0.786,0.854 0.21,0.341 0.318,0.781 0.318,1.319z"/>
|
|
||||||
<path android:fillColor="#0096e6" android:pathData="m22,19 l0,-4c0,-0.551 0.448,-1 1,-1 0.553,0 1,-0.448 1,-1 0,-0.552 -0.447,-1 -1,-1 -1.654,0 -3,1.346 -3,3l0,4c0,1.103 -0.897,2 -2,2 -0.553,0 -1,0.448 -1,1 0,0.552 0.447,1 1,1 1.103,0 2,0.897 2,2l0,4c0,1.654 1.346,3 3,3 0.553,0 1,-0.448 1,-1 0,-0.552 -0.447,-1 -1,-1 -0.552,0 -1,-0.449 -1,-1l0,-4C22,23.8 21.458,22.734 20.618,22 21.458,21.266 22,20.2 22,19Z"/>
|
|
||||||
<path android:fillColor="#0096e6" android:pathData="m38,21c-1.103,0 -2,-0.897 -2,-2l0,-4c0,-1.654 -1.346,-3 -3,-3 -0.553,0 -1,0.448 -1,1 0,0.552 0.447,1 1,1 0.552,0 1,0.449 1,1l0,4c0,1.2 0.542,2.266 1.382,3C34.542,22.734 34,23.8 34,25l0,4c0,0.551 -0.448,1 -1,1 -0.553,0 -1,0.448 -1,1 0,0.552 0.447,1 1,1 1.654,0 3,-1.346 3,-3l0,-4c0,-1.103 0.897,-2 2,-2 0.553,0 1,-0.448 1,-1 0,-0.552 -0.447,-1 -1,-1z"/>
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,10 +1,7 @@
|
||||||
<vector android:height="24dp" android:viewportHeight="56"
|
<vector android:height="24dp" android:viewportHeight="56" android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
<path android:fillColor="#e9e9e0" android:pathData="M36.985 0H7.963C7.155 0 6.5 0.655 6.5 1.926V39h43V12.978c0-0.696-0.093-0.92-0.257-1.085L37.607 0.257C37.442 0.093 37.218 0 36.985 0z"/>
|
||||||
<path android:fillColor="#e9e9e0" android:pathData="M36.985,0 L7.963,0C7.155,0 6.5,0.655 6.5,1.926l0,37.074 43,0 0,-26.022c0,-0.696 -0.093,-0.92 -0.257,-1.085L37.607,0.257C37.442,0.093 37.218,0 36.985,0Z"/>
|
<path android:fillColor="#D9D7CA" android:pathData="M37.5 0.151V12h11.849z"/>
|
||||||
<path android:fillColor="#D9D7CA" android:pathData="M37.5,0.151l0,11.849l11.849,0z"/>
|
<path android:fillColor="#F36FA0" android:pathData="M48.037 56H7.963C7.155 56 6.5 55.345 6.5 54.537V39h43v15.537c0 0.808-0.655 1.463-1.463 1.463z"/>
|
||||||
<path android:fillColor="#F36FA0" android:pathData="M48.037,56H7.963C7.155,56 6.5,55.345 6.5,54.537V39h43v15.537C49.5,55.345 48.845,56 48.037,56z"/>
|
<path android:fillColor="#ffffff" android:pathData="M22.565 51.975c-0.374 0.364-0.798 0.638-1.271 0.82-0.474 0.183-0.984 0.273-1.531 0.273-0.602 0-1.155-0.109-1.661-0.328-0.506-0.219-0.948-0.542-1.326-0.971-0.378-0.429-0.675-0.966-0.889-1.613-0.214-0.647-0.321-1.395-0.321-2.242s0.107-1.593 0.321-2.235c0.214-0.643 0.51-1.178 0.889-1.606 0.378-0.429 0.822-0.754 1.333-0.978 0.51-0.224 1.062-0.335 1.654-0.335 0.547 0 1.057 0.091 1.531 0.273 0.474 0.183 0.897 0.456 1.271 0.82l-1.135 1.012c-0.228-0.265-0.481-0.456-0.759-0.574-0.278-0.118-0.567-0.178-0.868-0.178-0.337 0-0.659 0.063-0.964 0.191-0.306 0.128-0.579 0.344-0.82 0.649-0.242 0.306-0.431 0.699-0.567 1.183-0.136 0.484-0.21 1.075-0.219 1.777 0.009 0.684 0.08 1.267 0.212 1.75 0.132 0.483 0.314 0.877 0.547 1.183 0.233 0.306 0.497 0.528 0.793 0.67 0.296 0.142 0.608 0.212 0.937 0.212 0.329 0 0.636-0.06 0.923-0.178 0.287-0.118 0.549-0.31 0.786-0.574l1.134 0.999zm8.053-1.737c0 0.364-0.075 0.718-0.226 1.06-0.151 0.342-0.362 0.643-0.636 0.902s-0.611 0.467-1.012 0.622c-0.401 0.155-0.857 0.232-1.367 0.232-0.219 0-0.444-0.012-0.677-0.034-0.233-0.022-0.467-0.062-0.704-0.116-0.237-0.055-0.463-0.13-0.677-0.226-0.214-0.096-0.399-0.212-0.554-0.349l0.287-1.176c0.127 0.073 0.289 0.144 0.485 0.212s0.398 0.132 0.608 0.191c0.209 0.06 0.419 0.107 0.629 0.144 0.209 0.036 0.405 0.055 0.588 0.055 0.556 0 0.982-0.13 1.278-0.39 0.296-0.26 0.444-0.645 0.444-1.155 0-0.31-0.105-0.574-0.314-0.793-0.21-0.219-0.472-0.417-0.786-0.595-0.314-0.178-0.654-0.355-1.019-0.533-0.365-0.178-0.707-0.388-1.025-0.629-0.319-0.241-0.583-0.526-0.793-0.854-0.21-0.328-0.314-0.738-0.314-1.23 0-0.446 0.082-0.843 0.246-1.189 0.164-0.346 0.385-0.641 0.663-0.882s0.602-0.426 0.971-0.554c0.369-0.128 0.759-0.191 1.169-0.191 0.419 0 0.843 0.039 1.271 0.116 0.428 0.077 0.774 0.203 1.039 0.376-0.055 0.118-0.119 0.248-0.191 0.39l-0.205 0.396c-0.064 0.123-0.119 0.226-0.164 0.308-0.046 0.082-0.073 0.128-0.082 0.137-0.055-0.027-0.116-0.063-0.185-0.109-0.069-0.046-0.167-0.091-0.294-0.137-0.128-0.046-0.296-0.077-0.506-0.096-0.21-0.019-0.479-0.014-0.807 0.014-0.183 0.019-0.355 0.07-0.52 0.157-0.165 0.087-0.31 0.193-0.438 0.321s-0.228 0.271-0.301 0.431c-0.073 0.159-0.109 0.313-0.109 0.458 0 0.364 0.104 0.658 0.314 0.882 0.209 0.224 0.469 0.419 0.779 0.588 0.31 0.169 0.647 0.333 1.012 0.492 0.364 0.159 0.704 0.354 1.019 0.581 0.315 0.227 0.576 0.513 0.786 0.854 0.213 0.342 0.318 0.781 0.318 1.319zm4.402 2.817l-3.131-10.131h1.873l2.338 8.695 2.475-8.695h1.859l-3.281 10.131H35.02z"/>
|
||||||
<path android:fillColor="#ffffff" android:pathData="m22.565,51.975c-0.374,0.364 -0.798,0.638 -1.271,0.82 -0.474,0.183 -0.984,0.273 -1.531,0.273 -0.602,0 -1.155,-0.109 -1.661,-0.328 -0.506,-0.219 -0.948,-0.542 -1.326,-0.971 -0.378,-0.429 -0.675,-0.966 -0.889,-1.613 -0.214,-0.647 -0.321,-1.395 -0.321,-2.242 0,-0.847 0.107,-1.593 0.321,-2.235 0.214,-0.643 0.51,-1.178 0.889,-1.606 0.378,-0.429 0.822,-0.754 1.333,-0.978 0.51,-0.224 1.062,-0.335 1.654,-0.335 0.547,0 1.057,0.091 1.531,0.273 0.474,0.183 0.897,0.456 1.271,0.82l-1.135,1.012c-0.228,-0.265 -0.481,-0.456 -0.759,-0.574 -0.278,-0.118 -0.567,-0.178 -0.868,-0.178 -0.337,0 -0.659,0.063 -0.964,0.191 -0.306,0.128 -0.579,0.344 -0.82,0.649 -0.242,0.306 -0.431,0.699 -0.567,1.183 -0.136,0.484 -0.21,1.075 -0.219,1.777 0.009,0.684 0.08,1.267 0.212,1.75 0.132,0.483 0.314,0.877 0.547,1.183 0.233,0.306 0.497,0.528 0.793,0.67 0.296,0.142 0.608,0.212 0.937,0.212 0.329,0 0.636,-0.06 0.923,-0.178 0.287,-0.118 0.549,-0.31 0.786,-0.574l1.134,0.999z"/>
|
<path android:fillColor="#f36fa0" android:pathData="M22.524 31.98v-4.244c0-0.576 0.467-1.042 1.042-1.042 2.054 0 3.172-2.107 3.326-6.264h-3.325c-0.576 0-1.043-0.467-1.043-1.042v-8.962c0-0.576 0.467-1.042 1.042-1.042h8.868c0.576 0 1.042 0.467 1.042 1.042v8.962c0 1.993-0.2 3.822-0.596 5.436-0.406 1.656-1.029 3.103-1.85 4.303-0.847 1.233-1.905 2.2-3.146 2.874-1.25 0.678-2.702 1.022-4.318 1.022-0.575 0-1.042-0.467-1.042-1.043z"/>
|
||||||
<path android:fillColor="#ffffff" android:pathData="m30.618,50.238c0,0.364 -0.075,0.718 -0.226,1.06 -0.151,0.342 -0.362,0.643 -0.636,0.902 -0.274,0.259 -0.611,0.467 -1.012,0.622 -0.401,0.155 -0.857,0.232 -1.367,0.232 -0.219,0 -0.444,-0.012 -0.677,-0.034 -0.233,-0.022 -0.467,-0.062 -0.704,-0.116 -0.237,-0.055 -0.463,-0.13 -0.677,-0.226 -0.214,-0.096 -0.399,-0.212 -0.554,-0.349l0.287,-1.176c0.127,0.073 0.289,0.144 0.485,0.212 0.196,0.068 0.398,0.132 0.608,0.191 0.209,0.06 0.419,0.107 0.629,0.144 0.209,0.036 0.405,0.055 0.588,0.055 0.556,0 0.982,-0.13 1.278,-0.39 0.296,-0.26 0.444,-0.645 0.444,-1.155 0,-0.31 -0.105,-0.574 -0.314,-0.793C28.56,49.198 28.298,49 27.984,48.822 27.67,48.644 27.33,48.467 26.965,48.289 26.6,48.111 26.258,47.901 25.94,47.66c-0.319,-0.241 -0.583,-0.526 -0.793,-0.854 -0.21,-0.328 -0.314,-0.738 -0.314,-1.23 0,-0.446 0.082,-0.843 0.246,-1.189 0.164,-0.346 0.385,-0.641 0.663,-0.882 0.278,-0.241 0.602,-0.426 0.971,-0.554 0.369,-0.128 0.759,-0.191 1.169,-0.191 0.419,0 0.843,0.039 1.271,0.116 0.428,0.077 0.774,0.203 1.039,0.376 -0.055,0.118 -0.119,0.248 -0.191,0.39 -0.073,0.142 -0.142,0.273 -0.205,0.396 -0.064,0.123 -0.119,0.226 -0.164,0.308 -0.046,0.082 -0.073,0.128 -0.082,0.137C29.495,44.456 29.434,44.42 29.365,44.374 29.296,44.328 29.198,44.283 29.071,44.237 28.943,44.191 28.775,44.16 28.565,44.141c-0.21,-0.019 -0.479,-0.014 -0.807,0.014 -0.183,0.019 -0.355,0.07 -0.52,0.157 -0.165,0.087 -0.31,0.193 -0.438,0.321 -0.128,0.128 -0.228,0.271 -0.301,0.431 -0.073,0.159 -0.109,0.313 -0.109,0.458 0,0.364 0.104,0.658 0.314,0.882 0.209,0.224 0.469,0.419 0.779,0.588 0.31,0.169 0.647,0.333 1.012,0.492 0.364,0.159 0.704,0.354 1.019,0.581 0.315,0.227 0.576,0.513 0.786,0.854 0.213,0.342 0.318,0.781 0.318,1.319z"/>
|
|
||||||
<path android:fillColor="#ffffff" android:pathData="m35.02,53.055 l-3.131,-10.131 1.873,0 2.338,8.695 2.475,-8.695 1.859,0 -3.281,10.131 -2.133,0z"/>
|
|
||||||
<path android:fillColor="#f36fa0" android:pathData="m22.5242,31.9805 l0,-4.2444c0,-0.5756 0.4666,-1.0421 1.0423,-1.0421 2.0538,0 3.171,-2.1065 3.3258,-6.264l-3.3258,0c-0.5756,0 -1.0423,-0.4669 -1.0423,-1.0423l0,-8.9619c0,-0.5753 0.4666,-1.0418 1.0423,-1.0418l8.8673,0c0.5759,0 1.0421,0.4668 1.0421,1.0418l0,8.9619c0,1.993 -0.2007,3.8219 -0.5963,5.4366 -0.4057,1.6556 -1.0285,3.1031 -1.8505,4.3026 -0.8458,1.2327 -1.9038,2.2 -3.1449,2.8738 -1.2494,0.6779 -2.7024,1.0218 -4.3181,1.0218 -0.5753,0 -1.0419,-0.4664 -1.0419,-1.0421z"/>
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,10 +1,7 @@
|
||||||
<vector android:height="24dp" android:viewportHeight="56"
|
<vector android:height="24dp" android:viewportHeight="56" android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
<path android:fillColor="#e9e9e0" android:pathData="M36.985 0H7.963C7.155 0 6.5 0.655 6.5 1.926V39h43V12.978c0-0.696-0.093-0.92-0.257-1.085L37.607 0.257C37.442 0.093 37.218 0 36.985 0z"/>
|
||||||
<path android:fillColor="#e9e9e0" android:pathData="M36.985,0 L7.963,0C7.155,0 6.5,0.655 6.5,1.926l0,37.074 43,0 0,-26.022c0,-0.696 -0.093,-0.92 -0.257,-1.085L37.607,0.257C37.442,0.093 37.218,0 36.985,0Z"/>
|
<path android:fillColor="#D9D7CA" android:pathData="M37.5 0.151V12h11.849z"/>
|
||||||
<path android:fillColor="#D9D7CA" android:pathData="M37.5,0.151l0,11.849l11.849,0z"/>
|
<path android:fillColor="#E96360" android:pathData="M48.037 56H7.963C7.155 56 6.5 55.345 6.5 54.537V39h43v15.537c0 0.808-0.655 1.463-1.463 1.463z"/>
|
||||||
<path android:fillColor="#E96360" android:pathData="M48.037,56H7.963C7.155,56 6.5,55.345 6.5,54.537V39h43v15.537C49.5,55.345 48.845,56 48.037,56z"/>
|
<path android:fillColor="#ffffff" android:pathData="M23.139 47.682c0 0.829-0.089 1.538-0.267 2.126-0.178 0.588-0.403 1.08-0.677 1.477s-0.581 0.709-0.923 0.937c-0.342 0.228-0.672 0.398-0.991 0.513-0.319 0.114-0.611 0.187-0.875 0.219-0.264 0.03-0.46 0.046-0.587 0.046h-3.814V42.924h3.035c0.848 0 1.593 0.135 2.235 0.403 0.642 0.268 1.176 0.627 1.6 1.073 0.424 0.446 0.74 0.955 0.95 1.524 0.209 0.57 0.314 1.156 0.314 1.758zm-4.867 4.115c1.112 0 1.914-0.355 2.406-1.066 0.492-0.711 0.738-1.741 0.738-3.09 0-0.419-0.05-0.834-0.15-1.244-0.101-0.41-0.294-0.781-0.581-1.114-0.287-0.333-0.677-0.602-1.169-0.807-0.492-0.205-1.13-0.308-1.914-0.308h-0.957v7.629h1.627zm12.018-4.102c0.209 0.027 0.433 0.096 0.67 0.205 0.237 0.109 0.458 0.265 0.663 0.465 0.205 0.2 0.376 0.444 0.513 0.731s0.205 0.617 0.205 0.991c0 0.456-0.068 0.848-0.205 1.176-0.137 0.328-0.308 0.6-0.513 0.813-0.205 0.213-0.429 0.383-0.67 0.506-0.242 0.123-0.474 0.217-0.697 0.28-0.224 0.063-0.422 0.103-0.595 0.116C29.487 52.993 29.374 53 29.319 53h-3.787V42.924h2.898c0.428 0 0.843 0.05 1.244 0.15 0.401 0.101 0.756 0.26 1.066 0.479 0.31 0.219 0.556 0.504 0.738 0.854 0.182 0.351 0.273 0.768 0.273 1.251 0 0.282-0.046 0.54-0.137 0.772-0.091 0.232-0.205 0.436-0.342 0.608-0.137 0.172-0.294 0.316-0.472 0.431-0.178 0.115-0.346 0.19-0.51 0.226zm-1.901-0.465c0.2 0 0.405-0.005 0.615-0.014 0.209-0.009 0.405-0.06 0.588-0.15 0.182-0.091 0.33-0.246 0.444-0.465 0.114-0.219 0.171-0.533 0.171-0.943 0-0.164-0.023-0.335-0.068-0.513-0.046-0.178-0.137-0.34-0.273-0.485-0.136-0.145-0.333-0.265-0.588-0.355-0.255-0.091-0.593-0.137-1.012-0.137h-1.094v3.063h1.217zm0.834 4.567c0.483 0 0.861-0.155 1.135-0.465 0.274-0.31 0.41-0.725 0.41-1.244 0-0.492-0.142-0.907-0.424-1.244-0.283-0.337-0.697-0.506-1.244-0.506h-1.928v3.459h2.051zm7.137-7.629v3.172h4.211v1.121H36.36V53h-1.668V42.924h6.303v1.244H36.36z"/>
|
||||||
<path android:fillColor="#ffffff" android:pathData="m23.139,47.682c0,0.829 -0.089,1.538 -0.267,2.126 -0.178,0.588 -0.403,1.08 -0.677,1.477 -0.274,0.397 -0.581,0.709 -0.923,0.937 -0.342,0.228 -0.672,0.398 -0.991,0.513 -0.319,0.114 -0.611,0.187 -0.875,0.219C19.142,52.984 18.946,53 18.819,53l-3.814,0 0,-10.076 3.035,0c0.848,0 1.593,0.135 2.235,0.403 0.642,0.268 1.176,0.627 1.6,1.073 0.424,0.446 0.74,0.955 0.95,1.524 0.209,0.57 0.314,1.156 0.314,1.758zM18.272,51.797c1.112,0 1.914,-0.355 2.406,-1.066 0.492,-0.711 0.738,-1.741 0.738,-3.09 0,-0.419 -0.05,-0.834 -0.15,-1.244 -0.101,-0.41 -0.294,-0.781 -0.581,-1.114 -0.287,-0.333 -0.677,-0.602 -1.169,-0.807 -0.492,-0.205 -1.13,-0.308 -1.914,-0.308l-0.957,0 0,7.629 1.627,0z"/>
|
<path android:fillColor="#e96360" android:pathData="M23.5 16v-4h-12v22h33V16h-21zm-10-2h8v2h-8v-2zm0 4h8v2h-8v-2zm0 4h8v2h-8v-2zm0 4h8v2h-8v-2zm8 6h-8v-2h8v2zm21 0h-19v-2h19v2zm0-4h-19v-2h19v2zm0-4h-19v-2h19v2zm-19-4v-2h19v2h-19z"/>
|
||||||
<path android:fillColor="#ffffff" android:pathData="m30.29,47.695c0.209,0.027 0.433,0.096 0.67,0.205 0.237,0.109 0.458,0.265 0.663,0.465 0.205,0.2 0.376,0.444 0.513,0.731 0.137,0.287 0.205,0.617 0.205,0.991 0,0.456 -0.068,0.848 -0.205,1.176 -0.137,0.328 -0.308,0.6 -0.513,0.813 -0.205,0.213 -0.429,0.383 -0.67,0.506 -0.242,0.123 -0.474,0.217 -0.697,0.28 -0.224,0.063 -0.422,0.103 -0.595,0.116C29.487,52.993 29.374,53 29.319,53l-3.787,0 0,-10.076 2.898,0c0.428,0 0.843,0.05 1.244,0.15 0.401,0.101 0.756,0.26 1.066,0.479 0.31,0.219 0.556,0.504 0.738,0.854 0.182,0.351 0.273,0.768 0.273,1.251 0,0.282 -0.046,0.54 -0.137,0.772 -0.091,0.232 -0.205,0.436 -0.342,0.608 -0.137,0.172 -0.294,0.316 -0.472,0.431 -0.178,0.115 -0.346,0.19 -0.51,0.226zM28.389,47.23c0.2,0 0.405,-0.005 0.615,-0.014 0.209,-0.009 0.405,-0.06 0.588,-0.15 0.182,-0.091 0.33,-0.246 0.444,-0.465 0.114,-0.219 0.171,-0.533 0.171,-0.943 0,-0.164 -0.023,-0.335 -0.068,-0.513 -0.046,-0.178 -0.137,-0.34 -0.273,-0.485 -0.136,-0.145 -0.333,-0.265 -0.588,-0.355 -0.255,-0.091 -0.593,-0.137 -1.012,-0.137l-1.094,0 0,3.063 0.068,0 1.149,0zM29.223,51.797c0.483,0 0.861,-0.155 1.135,-0.465 0.274,-0.31 0.41,-0.725 0.41,-1.244 0,-0.492 -0.142,-0.907 -0.424,-1.244 -0.283,-0.337 -0.697,-0.506 -1.244,-0.506l-1.928,0 0,3.459 2.051,0z"/>
|
|
||||||
<path android:fillColor="#ffffff" android:pathData="m36.36,44.168 l0,3.172 4.211,0 0,1.121 -4.211,0 0,4.539 -1.668,0 0,-10.076 6.303,0 0,1.244 -4.635,0z"/>
|
|
||||||
<path android:fillColor="#e96360" android:pathData="m23.5,16 l0,-4 -12,0 0,4 0,2 0,2 0,2 0,2 0,2 0,2 0,2 0,4 10,0 2,0 21,0 0,-4 0,-2 0,-2 0,-2 0,-2 0,-2 0,-4 -21,0zM13.5,14 L21.5,14 21.5,16 13.5,16 13.5,14zM13.5,18 L21.5,18 21.5,20 13.5,20 13.5,18zM13.5,22 L21.5,22 21.5,24 13.5,24 13.5,22zM13.5,26 L21.5,26 21.5,28 13.5,28 13.5,26zM21.5,32 L13.5,32 13.5,30 21.5,30 21.5,32zM42.5,32 L23.5,32 23.5,30 42.5,30 42.5,32zM42.5,28 L23.5,28 23.5,26 42.5,26 42.5,28zM42.5,24 L23.5,24 23.5,22 42.5,22 42.5,24zM23.5,20 L23.5,18 42.5,18 42.5,20 23.5,20z"/>
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,21 +1,7 @@
|
||||||
<vector android:height="24dp" android:viewportHeight="56"
|
<vector android:height="24dp" android:viewportHeight="56" android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
<path android:fillColor="#e9e9e0" android:pathData="M36.985 0H7.963C7.155 0 6.5 0.655 6.5 1.926V39h43V12.978c0-0.696-0.093-0.92-0.257-1.085L37.607 0.257C37.442 0.093 37.218 0 36.985 0z"/>
|
||||||
<path android:fillColor="#e9e9e0" android:pathData="M36.985,0 L7.963,0C7.155,0 6.5,0.655 6.5,1.926l0,37.074 43,0 0,-26.022c0,-0.696 -0.093,-0.92 -0.257,-1.085L37.607,0.257C37.442,0.093 37.218,0 36.985,0Z"/>
|
<path android:fillColor="#D9D7CA" android:pathData="M37.5 0.151V12h11.849z"/>
|
||||||
<path android:fillColor="#D9D7CA" android:pathData="M37.5,0.151l0,11.849l11.849,0z"/>
|
<path android:fillColor="#0096e6" android:pathData="M18.5 13h-6c-0.552 0-1-0.448-1-1s0.448-1 1-1h6c0.552 0 1 0.448 1 1s-0.448 1-1 1zm3 5h-9c-0.552 0-1-0.448-1-1s0.448-1 1-1h9c0.552 0 1 0.448 1 1s-0.448 1-1 1zm4 0c-0.26 0-0.52-0.11-0.71-0.29-0.18-0.19-0.29-0.45-0.29-0.71 0-0.26 0.11-0.52 0.29-0.71 0.37-0.37 1.05-0.37 1.42 0 0.18 0.19 0.29 0.45 0.29 0.71 0 0.26-0.11 0.52-0.29 0.71C26.02 17.89 25.76 18 25.5 18zm12 0h-8c-0.552 0-1-0.448-1-1s0.448-1 1-1h8c0.552 0 1 0.448 1 1s-0.448 1-1 1zm-25 15c-0.26 0-0.52-0.11-0.71-0.29-0.18-0.19-0.29-0.45-0.29-0.71 0-0.26 0.11-0.52 0.29-0.71 0.37-0.37 1.05-0.37 1.42 0 0.18 0.19 0.29 0.44 0.29 0.71 0 0.26-0.11 0.52-0.29 0.71C13.02 32.89 12.76 33 12.5 33zm12 0h-8c-0.552 0-1-0.448-1-1s0.448-1 1-1h8c0.552 0 1 0.448 1 1s-0.448 1-1 1zm19-15h-2c-0.552 0-1-0.448-1-1s0.448-1 1-1h2c0.552 0 1 0.448 1 1s-0.448 1-1 1zm-9 5h-22c-0.552 0-1-0.448-1-1s0.448-1 1-1h22c0.552 0 1 0.448 1 1s-0.448 1-1 1zm9 0h-6c-0.552 0-1-0.448-1-1s0.448-1 1-1h6c0.552 0 1 0.448 1 1s-0.448 1-1 1zm-27 5h-4c-0.552 0-1-0.448-1-1s0.448-1 1-1h4c0.552 0 1 0.448 1 1s-0.448 1-1 1zm14 0h-10c-0.552 0-1-0.448-1-1s0.448-1 1-1h10c0.552 0 1 0.448 1 1s-0.448 1-1 1zm13 0h-9c-0.552 0-1-0.448-1-1s0.448-1 1-1h9c0.552 0 1 0.448 1 1s-0.448 1-1 1z"/>
|
||||||
<path android:fillColor="#0096e6" android:pathData="m18.5,13 l-6,0c-0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1l6,0c0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1z"/>
|
<path android:fillColor="#0096E6" android:pathData="M48.037 56H7.963C7.155 56 6.5 55.345 6.5 54.537V39h43v15.537c0 0.808-0.655 1.463-1.463 1.463z"/>
|
||||||
<path android:fillColor="#0096e6" android:pathData="m21.5,18 l-9,0c-0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1l9,0c0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1z"/>
|
<path android:fillColor="#ffffff" android:pathData="M22.514 47.682c0 0.829-0.09 1.538-0.267 2.126-0.178 0.588-0.403 1.08-0.677 1.477s-0.581 0.709-0.923 0.937c-0.342 0.228-0.672 0.398-0.991 0.513-0.32 0.114-0.611 0.187-0.875 0.219C18.517 52.984 18.32 53 18.194 53H14.38V42.924h3.033c0.848 0 1.593 0.135 2.235 0.403 0.642 0.268 1.176 0.627 1.6 1.073 0.424 0.446 0.74 0.955 0.95 1.524 0.21 0.57 0.315 1.156 0.315 1.758zm-4.867 4.115c1.112 0 1.914-0.355 2.406-1.066 0.491-0.711 0.737-1.741 0.737-3.09 0-0.419-0.05-0.834-0.15-1.244-0.1-0.41-0.294-0.781-0.58-1.114-0.287-0.333-0.677-0.602-1.17-0.807-0.492-0.205-1.13-0.308-1.914-0.308H16.02v7.629h1.627zm14.842-3.883c0 0.848-0.107 1.595-0.321 2.242-0.214 0.647-0.511 1.185-0.89 1.613-0.377 0.429-0.82 0.752-1.325 0.971-0.506 0.219-1.06 0.328-1.661 0.328s-1.155-0.109-1.661-0.328c-0.506-0.219-0.948-0.542-1.326-0.971-0.378-0.429-0.675-0.966-0.89-1.613-0.213-0.647-0.32-1.395-0.32-2.242s0.107-1.593 0.32-2.235c0.215-0.643 0.51-1.178 0.89-1.606 0.378-0.429 0.82-0.754 1.326-0.978 0.506-0.224 1.06-0.335 1.66-0.335 0.602 0 1.156 0.111 1.662 0.335 0.506 0.224 0.948 0.549 1.326 0.978 0.378 0.429 0.674 0.964 0.889 1.606 0.213 0.642 0.32 1.387 0.32 2.235zm-4.24 3.815c0.338 0 0.659-0.066 0.965-0.198 0.305-0.132 0.579-0.349 0.82-0.649 0.24-0.301 0.43-0.695 0.567-1.183 0.136-0.488 0.209-1.082 0.219-1.784-0.01-0.684-0.08-1.265-0.212-1.743-0.132-0.479-0.314-0.873-0.547-1.183-0.233-0.31-0.497-0.533-0.793-0.67-0.296-0.137-0.608-0.205-0.937-0.205-0.337 0-0.66 0.063-0.964 0.191-0.306 0.128-0.58 0.344-0.82 0.649-0.242 0.306-0.431 0.699-0.567 1.183-0.136 0.484-0.21 1.075-0.22 1.777 0.01 0.684 0.08 1.267 0.212 1.75 0.132 0.483 0.314 0.877 0.547 1.183 0.234 0.306 0.498 0.528 0.794 0.67 0.297 0.141 0.609 0.212 0.937 0.212zm13.371 0.246c-0.373 0.364-0.797 0.638-1.27 0.82-0.475 0.183-0.985 0.273-1.532 0.273-0.601 0-1.154-0.109-1.66-0.328-0.507-0.219-0.949-0.542-1.327-0.971-0.378-0.429-0.675-0.966-0.889-1.613-0.214-0.647-0.32-1.395-0.32-2.242s0.106-1.593 0.32-2.235c0.214-0.643 0.51-1.178 0.89-1.606 0.377-0.429 0.821-0.754 1.332-0.978 0.51-0.224 1.062-0.335 1.654-0.335 0.548 0 1.058 0.091 1.532 0.273 0.473 0.183 0.896 0.456 1.27 0.82l-1.134 1.012c-0.228-0.265-0.481-0.456-0.76-0.574-0.277-0.118-0.566-0.178-0.867-0.178-0.338 0-0.66 0.063-0.965 0.191-0.305 0.128-0.578 0.344-0.82 0.649-0.241 0.306-0.43 0.699-0.566 1.183-0.137 0.484-0.21 1.075-0.22 1.777 0.01 0.684 0.08 1.267 0.213 1.75 0.132 0.483 0.314 0.877 0.547 1.183 0.232 0.306 0.496 0.528 0.792 0.67 0.296 0.142 0.608 0.212 0.937 0.212 0.33 0 0.636-0.06 0.923-0.178 0.287-0.118 0.55-0.31 0.786-0.574l1.135 0.999z"/>
|
||||||
<path android:fillColor="#0096e6" android:pathData="M25.5,18C25.24,18 24.98,17.89 24.79,17.71 24.61,17.52 24.5,17.26 24.5,17c0,-0.26 0.11,-0.52 0.29,-0.71 0.37,-0.37 1.05,-0.37 1.42,0 0.18,0.19 0.29,0.45 0.29,0.71 0,0.26 -0.11,0.52 -0.29,0.71C26.02,17.89 25.76,18 25.5,18Z"/>
|
|
||||||
<path android:fillColor="#0096e6" android:pathData="m37.5,18 l-8,0c-0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1l8,0c0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1z"/>
|
|
||||||
<path android:fillColor="#0096e6" android:pathData="M12.5,33C12.24,33 11.98,32.89 11.79,32.71 11.61,32.52 11.5,32.26 11.5,32c0,-0.26 0.11,-0.52 0.29,-0.71 0.37,-0.37 1.05,-0.37 1.42,0 0.18,0.19 0.29,0.44 0.29,0.71 0,0.26 -0.11,0.52 -0.29,0.71C13.02,32.89 12.76,33 12.5,33Z"/>
|
|
||||||
<path android:fillColor="#0096e6" android:pathData="m24.5,33 l-8,0c-0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1l8,0c0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1z"/>
|
|
||||||
<path android:fillColor="#0096e6" android:pathData="m43.5,18 l-2,0c-0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1l2,0c0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1z"/>
|
|
||||||
<path android:fillColor="#0096e6" android:pathData="m34.5,23 l-22,0c-0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1l22,0c0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1z"/>
|
|
||||||
<path android:fillColor="#0096e6" android:pathData="m43.5,23 l-6,0c-0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1l6,0c0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1z"/>
|
|
||||||
<path android:fillColor="#0096e6" android:pathData="m16.5,28 l-4,0c-0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1l4,0c0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1z"/>
|
|
||||||
<path android:fillColor="#0096e6" android:pathData="m30.5,28 l-10,0c-0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1l10,0c0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1z"/>
|
|
||||||
<path android:fillColor="#0096e6" android:pathData="m43.5,28 l-9,0c-0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1l9,0c0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1z"/>
|
|
||||||
<path android:fillColor="#0096E6" android:pathData="M48.037,56H7.963C7.155,56 6.5,55.345 6.5,54.537V39h43v15.537C49.5,55.345 48.845,56 48.037,56z"/>
|
|
||||||
<path android:fillColor="#ffffff" android:pathData="m22.5135,47.682c0,0.829 -0.089,1.538 -0.267,2.126 -0.178,0.588 -0.403,1.08 -0.677,1.477 -0.274,0.397 -0.581,0.709 -0.923,0.937 -0.342,0.228 -0.672,0.398 -0.991,0.513 -0.319,0.114 -0.611,0.187 -0.875,0.219C18.5165,52.984 18.3205,53 18.1935,53l-3.814,0 0,-10.076 3.034,0c0.848,0 1.593,0.135 2.235,0.403 0.642,0.268 1.176,0.627 1.6,1.073 0.424,0.446 0.74,0.955 0.95,1.524 0.21,0.57 0.315,1.156 0.315,1.758zM17.6465,51.797c1.112,0 1.914,-0.355 2.406,-1.066 0.492,-0.711 0.738,-1.741 0.738,-3.09 0,-0.419 -0.05,-0.834 -0.15,-1.244 -0.101,-0.41 -0.294,-0.781 -0.581,-1.114 -0.287,-0.333 -0.677,-0.602 -1.169,-0.807 -0.492,-0.205 -1.13,-0.308 -1.914,-0.308l-0.957,0 0,7.629 1.627,0z"/>
|
|
||||||
<path android:fillColor="#ffffff" android:pathData="m32.4885,47.914c0,0.848 -0.107,1.595 -0.321,2.242 -0.214,0.647 -0.511,1.185 -0.889,1.613 -0.378,0.429 -0.82,0.752 -1.326,0.971 -0.506,0.219 -1.06,0.328 -1.661,0.328 -0.601,0 -1.155,-0.109 -1.661,-0.328 -0.506,-0.219 -0.948,-0.542 -1.326,-0.971 -0.378,-0.429 -0.675,-0.966 -0.889,-1.613 -0.214,-0.647 -0.321,-1.395 -0.321,-2.242 0,-0.847 0.107,-1.593 0.321,-2.235 0.214,-0.643 0.51,-1.178 0.889,-1.606 0.378,-0.429 0.82,-0.754 1.326,-0.978 0.506,-0.224 1.06,-0.335 1.661,-0.335 0.601,0 1.155,0.111 1.661,0.335 0.506,0.224 0.948,0.549 1.326,0.978 0.378,0.429 0.674,0.964 0.889,1.606 0.213,0.642 0.321,1.387 0.321,2.235zM28.2495,51.729c0.337,0 0.658,-0.066 0.964,-0.198 0.305,-0.132 0.579,-0.349 0.82,-0.649 0.241,-0.301 0.431,-0.695 0.567,-1.183 0.136,-0.488 0.209,-1.082 0.219,-1.784 -0.009,-0.684 -0.08,-1.265 -0.212,-1.743 -0.132,-0.479 -0.314,-0.873 -0.547,-1.183 -0.233,-0.31 -0.497,-0.533 -0.793,-0.67 -0.296,-0.137 -0.608,-0.205 -0.937,-0.205 -0.337,0 -0.659,0.063 -0.964,0.191 -0.306,0.128 -0.579,0.344 -0.82,0.649 -0.242,0.306 -0.431,0.699 -0.567,1.183 -0.136,0.484 -0.21,1.075 -0.219,1.777 0.009,0.684 0.08,1.267 0.212,1.75 0.132,0.483 0.314,0.877 0.547,1.183 0.233,0.306 0.497,0.528 0.793,0.67 0.297,0.141 0.609,0.212 0.937,0.212z"/>
|
|
||||||
<path android:fillColor="#ffffff" android:pathData="m41.6205,51.975c-0.374,0.364 -0.798,0.638 -1.271,0.82 -0.474,0.183 -0.984,0.273 -1.531,0.273 -0.602,0 -1.155,-0.109 -1.661,-0.328 -0.506,-0.219 -0.948,-0.542 -1.326,-0.971 -0.378,-0.429 -0.675,-0.966 -0.889,-1.613 -0.214,-0.647 -0.321,-1.395 -0.321,-2.242 0,-0.847 0.107,-1.593 0.321,-2.235 0.214,-0.643 0.51,-1.178 0.889,-1.606 0.378,-0.429 0.822,-0.754 1.333,-0.978 0.51,-0.224 1.062,-0.335 1.654,-0.335 0.547,0 1.057,0.091 1.531,0.273 0.474,0.183 0.897,0.456 1.271,0.82l-1.135,1.012c-0.228,-0.265 -0.481,-0.456 -0.759,-0.574 -0.278,-0.118 -0.567,-0.178 -0.868,-0.178 -0.337,0 -0.659,0.063 -0.964,0.191 -0.306,0.128 -0.579,0.344 -0.82,0.649 -0.242,0.306 -0.431,0.699 -0.567,1.183 -0.136,0.484 -0.21,1.075 -0.219,1.777 0.009,0.684 0.08,1.267 0.212,1.75 0.132,0.483 0.314,0.877 0.547,1.183 0.233,0.306 0.497,0.528 0.793,0.67 0.296,0.142 0.608,0.212 0.937,0.212 0.329,0 0.636,-0.06 0.923,-0.178 0.287,-0.118 0.549,-0.31 0.786,-0.574l1.134,0.999z"/>
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,15 +1,9 @@
|
||||||
<vector android:height="24dp" android:viewportHeight="56"
|
<vector android:height="24dp" android:viewportHeight="56" android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
<path android:fillColor="#e9e9e0" android:pathData="M36.985 0H7.963C7.155 0 6.5 0.655 6.5 1.926V39h43V12.978c0-0.696-0.093-0.92-0.257-1.085L37.607 0.257C37.442 0.093 37.218 0 36.985 0z"/>
|
||||||
<path android:fillColor="#e9e9e0" android:pathData="M36.985,0 L7.963,0C7.155,0 6.5,0.655 6.5,1.926l0,37.074 43,0 0,-26.022c0,-0.696 -0.093,-0.92 -0.257,-1.085L37.607,0.257C37.442,0.093 37.218,0 36.985,0Z"/>
|
<path android:fillColor="#D9D7CA" android:pathData="M37.5 0.151V12h11.849z"/>
|
||||||
<path android:fillColor="#D9D7CA" android:pathData="M37.5,0.151l0,11.849l11.849,0z"/>
|
<path android:fillColor="#8697CB" android:pathData="M48.037 56H7.963C7.155 56 6.5 55.345 6.5 54.537V39h43v15.537c0 0.808-0.655 1.463-1.463 1.463z"/>
|
||||||
<path android:fillColor="#8697CB" android:pathData="M48.037,56H7.963C7.155,56 6.5,55.345 6.5,54.537V39h43v15.537C49.5,55.345 48.845,56 48.037,56z"/>
|
<path android:fillColor="#ffffff" android:pathData="M19.756 47.682c0 0.829-0.09 1.538-0.267 2.126-0.178 0.588-0.403 1.08-0.677 1.477s-0.581 0.709-0.923 0.937c-0.342 0.228-0.672 0.398-0.991 0.513-0.32 0.114-0.611 0.187-0.875 0.219-0.264 0.03-0.46 0.046-0.588 0.046h-3.814V42.924h3.035c0.848 0 1.593 0.135 2.235 0.403 0.643 0.268 1.177 0.627 1.6 1.073 0.425 0.446 0.74 0.955 0.95 1.524 0.21 0.57 0.315 1.156 0.315 1.758zm-4.867 4.115c1.112 0 1.914-0.355 2.406-1.066 0.491-0.711 0.737-1.741 0.737-3.09 0-0.419-0.05-0.834-0.15-1.244-0.1-0.41-0.294-0.781-0.58-1.114-0.287-0.333-0.677-0.602-1.17-0.807-0.492-0.205-1.13-0.308-1.914-0.308h-0.956v7.629h1.626zm19.92-8.873l-2.721 10.131h-2.133L28.3 45.453l-1.764 7.602H24.39l-2.557-10.131h1.859l1.777 8.695 1.914-8.695h1.859l1.777 8.695 1.928-8.695h1.86zm9.57 4.881v3.896c-0.21 0.265-0.444 0.48-0.704 0.649-0.26 0.169-0.533 0.308-0.82 0.417-0.287 0.109-0.583 0.187-0.89 0.233-0.306 0.046-0.608 0.068-0.909 0.068-0.601 0-1.154-0.109-1.66-0.328-0.507-0.219-0.949-0.542-1.327-0.971-0.378-0.429-0.675-0.966-0.889-1.613-0.214-0.647-0.32-1.395-0.32-2.242s0.106-1.593 0.32-2.235c0.214-0.643 0.51-1.178 0.89-1.606 0.377-0.429 0.821-0.754 1.332-0.978 0.511-0.224 1.062-0.335 1.654-0.335 0.548 0 1.059 0.091 1.532 0.273 0.472 0.182 0.896 0.456 1.27 0.82l-1.134 1.012c-0.22-0.265-0.47-0.456-0.752-0.574-0.283-0.118-0.575-0.178-0.876-0.178-0.336 0-0.657 0.063-0.963 0.191-0.307 0.128-0.58 0.344-0.82 0.649-0.242 0.305-0.432 0.699-0.568 1.183-0.136 0.483-0.21 1.075-0.218 1.777 0.008 0.684 0.08 1.276 0.211 1.777 0.133 0.501 0.315 0.911 0.548 1.23 0.232 0.319 0.496 0.556 0.792 0.711 0.296 0.155 0.608 0.232 0.937 0.232 0.101 0 0.234-0.007 0.403-0.021 0.17-0.014 0.337-0.036 0.506-0.068 0.17-0.032 0.33-0.075 0.485-0.13 0.155-0.055 0.27-0.132 0.342-0.232v-2.488h-1.709v-1.121h3.336z"/>
|
||||||
<path android:fillColor="#ffffff" android:pathData="m19.7555,47.682c0,0.829 -0.089,1.538 -0.267,2.126 -0.178,0.588 -0.403,1.08 -0.677,1.477 -0.274,0.397 -0.581,0.709 -0.923,0.937 -0.342,0.228 -0.672,0.398 -0.991,0.513 -0.319,0.114 -0.611,0.187 -0.875,0.219C15.7585,52.984 15.5625,53 15.4355,53l-3.814,0 0,-10.076 3.035,0c0.848,0 1.593,0.135 2.235,0.403 0.642,0.268 1.176,0.627 1.6,1.073 0.424,0.446 0.74,0.955 0.95,1.524 0.209,0.57 0.314,1.156 0.314,1.758zM14.8885,51.797c1.112,0 1.914,-0.355 2.406,-1.066 0.492,-0.711 0.738,-1.741 0.738,-3.09 0,-0.419 -0.05,-0.834 -0.15,-1.244 -0.101,-0.41 -0.294,-0.781 -0.581,-1.114 -0.287,-0.333 -0.677,-0.602 -1.169,-0.807 -0.492,-0.205 -1.13,-0.308 -1.914,-0.308l-0.957,0 0,7.629 1.627,0z"/>
|
<path android:fillColor="#8697cb" android:pathData="M12.5 13h15v15.065h-15zm22 1h2v7h-2zm0 15h2v7h-2z"/>
|
||||||
<path android:fillColor="#ffffff" android:pathData="m34.8085,42.924 l-2.721,10.131 -2.133,0 -1.654,-7.602 -1.764,7.602 -2.146,0 -2.557,-10.131 1.859,0 1.777,8.695 1.914,-8.695 1.859,0 1.777,8.695 1.928,-8.695 1.861,0z"/>
|
<path android:fillColor="#8697cb" android:pathData="M40.5 30h-10V20h10v10zm-8-2h6v-6h-6v6z"/>
|
||||||
<path android:fillColor="#ffffff" android:pathData="m44.3785,47.805 l0,3.896c-0.21,0.265 -0.444,0.48 -0.704,0.649 -0.26,0.169 -0.533,0.308 -0.82,0.417 -0.287,0.109 -0.583,0.187 -0.889,0.233 -0.306,0.046 -0.608,0.068 -0.909,0.068 -0.602,0 -1.155,-0.109 -1.661,-0.328 -0.506,-0.219 -0.948,-0.542 -1.326,-0.971 -0.378,-0.429 -0.675,-0.966 -0.889,-1.613 -0.214,-0.647 -0.321,-1.395 -0.321,-2.242 0,-0.847 0.107,-1.593 0.321,-2.235 0.214,-0.643 0.51,-1.178 0.889,-1.606 0.378,-0.429 0.822,-0.754 1.333,-0.978 0.511,-0.224 1.062,-0.335 1.654,-0.335 0.547,0 1.058,0.091 1.531,0.273 0.473,0.182 0.897,0.456 1.271,0.82l-1.135,1.012c-0.219,-0.265 -0.47,-0.456 -0.752,-0.574 -0.282,-0.118 -0.574,-0.178 -0.875,-0.178 -0.337,0 -0.658,0.063 -0.964,0.191 -0.306,0.128 -0.579,0.344 -0.82,0.649 -0.241,0.305 -0.431,0.699 -0.567,1.183 -0.137,0.483 -0.21,1.075 -0.219,1.777 0.009,0.684 0.08,1.276 0.212,1.777 0.132,0.501 0.314,0.911 0.547,1.23 0.233,0.319 0.497,0.556 0.793,0.711 0.296,0.155 0.608,0.232 0.937,0.232 0.101,0 0.234,-0.007 0.403,-0.021 0.169,-0.014 0.337,-0.036 0.506,-0.068 0.169,-0.032 0.33,-0.075 0.485,-0.13 0.155,-0.055 0.269,-0.132 0.342,-0.232l0,-2.488 -1.709,0 0,-1.121 3.336,0z"/>
|
<path android:fillColor="#8697cb" android:pathData="M39.5 24h7v2h-7zm-15 0h7v2h-7z"/>
|
||||||
<path android:fillColor="#8697cb" android:pathData="M12.5,13h15v15.065h-15z"/>
|
|
||||||
<path android:fillColor="#8697cb" android:pathData="M34.5,14h2v7h-2z"/>
|
|
||||||
<path android:fillColor="#8697cb" android:pathData="M34.5,29h2v7h-2z"/>
|
|
||||||
<path android:fillColor="#8697cb" android:pathData="m40.5,30 l-10,0 0,-10 10,0 0,10zM32.5,28 L38.5,28 38.5,22 32.5,22 32.5,28z"/>
|
|
||||||
<path android:fillColor="#8697cb" android:pathData="M39.5,24h7v2h-7z"/>
|
|
||||||
<path android:fillColor="#8697cb" android:pathData="M24.5,24h7v2h-7z"/>
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,13 +1,7 @@
|
||||||
<vector android:height="24dp" android:viewportHeight="56"
|
<vector android:height="24dp" android:viewportHeight="56" android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
<path android:fillColor="#e9e9e0" android:pathData="M36.985 0H7.963C7.155 0 6.5 0.655 6.5 1.926V39h43V12.978c0-0.696-0.093-0.92-0.257-1.085L37.607 0.257C37.442 0.093 37.218 0 36.985 0z"/>
|
||||||
<path android:fillColor="#e9e9e0" android:pathData="M36.985,0 L7.963,0C7.155,0 6.5,0.655 6.5,1.926l0,37.074 43,0 0,-26.022c0,-0.696 -0.093,-0.92 -0.257,-1.085L37.607,0.257C37.442,0.093 37.218,0 36.985,0Z"/>
|
<path android:fillColor="#D9D7CA" android:pathData="M37.5 0.151V12h11.849z"/>
|
||||||
<path android:fillColor="#D9D7CA" android:pathData="M37.5,0.151l0,11.849l11.849,0z"/>
|
<path android:fillColor="#9777A8" android:pathData="M48.037 56H7.963C7.155 56 6.5 55.345 6.5 54.537V39h43v15.537c0 0.808-0.655 1.463-1.463 1.463z"/>
|
||||||
<path android:fillColor="#9777A8" android:pathData="M48.037,56H7.963C7.155,56 6.5,55.345 6.5,54.537V39h43v15.537C49.5,55.345 48.845,56 48.037,56z"/>
|
<path android:fillColor="#ffffff" android:pathData="M17.425 44.168v3.172h4.211v1.121h-4.211v3.295h4.635V53h-6.303V42.924h6.303v1.244h-4.635zm11.498 3.937L31.48 53h-1.9l-1.6-3.801h-0.137L26.12 53h-1.9l2.557-4.895-2.721-5.182h1.873l1.777 4.102h0.137l1.928-4.102h1.873l-2.721 5.182zm6.686-3.937v3.172h4.211v1.121h-4.211v3.295h4.634V53H33.94V42.924h6.303v1.244h-4.634z"/>
|
||||||
<path android:fillColor="#ffffff" android:pathData="m17.425,44.168 l0,3.172 4.211,0 0,1.121 -4.211,0 0,3.295 4.635,0 0,1.244 -6.303,0 0,-10.076 6.303,0 0,1.244 -4.635,0z"/>
|
<path android:fillColor="#9777a8" android:pathData="M34.5 32c-0.099 0-0.2-0.015-0.299-0.046-0.527-0.165-0.82-0.726-0.656-1.253l5-16c0.165-0.527 0.726-0.821 1.253-0.656 0.527 0.165 0.821 0.726 0.656 1.253l-5 16C35.321 31.726 34.926 32 34.5 32zm-6-12.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 1 1-3 0m0 7a1.5 1.5 0 1 1 3 0 1.5 1.5 0 1 1-3 0m-4 3.5h-2c-3.86 0-7-3.14-7-7s3.14-7 7-7h2c0.552 0 1 0.448 1 1s-0.448 1-1 1h-2c-2.757 0-5 2.243-5 5s2.243 5 5 5h2c0.552 0 1 0.448 1 1s-0.448 1-1 1z"/>
|
||||||
<path android:fillColor="#ffffff" android:pathData="m28.923,48.105 l2.557,4.895 -1.9,0 -1.6,-3.801 -0.137,0 -1.723,3.801 -1.9,0 2.557,-4.895 -2.721,-5.182 1.873,0 1.777,4.102 0.137,0 1.928,-4.102 1.873,0 -2.721,5.182z"/>
|
|
||||||
<path android:fillColor="#ffffff" android:pathData="m35.609,44.168 l0,3.172 4.211,0 0,1.121 -4.211,0 0,3.295 4.634,0 0,1.244 -6.303,0 0,-10.076 6.303,0 0,1.244 -4.634,0z"/>
|
|
||||||
<path android:fillColor="#9777a8" android:pathData="m34.5001,32c-0.099,0 -0.2,-0.015 -0.299,-0.046 -0.527,-0.165 -0.821,-0.726 -0.656,-1.253l5,-16c0.165,-0.527 0.726,-0.821 1.253,-0.656 0.527,0.165 0.821,0.726 0.656,1.253l-5,16c-0.133,0.428 -0.528,0.702 -0.954,0.702z"/>
|
|
||||||
<path android:fillColor="#9777a8" android:pathData="M30.0001,19.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
|
|
||||||
<path android:fillColor="#9777a8" android:pathData="M30.0001,26.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
|
|
||||||
<path android:fillColor="#9777a8" android:pathData="m24.5001,30 l-2,0c-3.86,0 -7,-3.14 -7,-7 0,-3.86 3.14,-7 7,-7l2,0c0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1l-2,0c-2.757,0 -5,2.243 -5,5 0,2.757 2.243,5 5,5l2,0c0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1z"/>
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,13 +1,9 @@
|
||||||
<vector android:height="24dp" android:viewportHeight="56"
|
<vector android:height="24dp" android:viewportHeight="56" android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
<path android:fillColor="#e9e9e0" android:pathData="M36.985 0H7.963C7.155 0 6.5 0.655 6.5 1.926V39h43V12.978c0-0.696-0.093-0.92-0.257-1.085L37.607 0.257C37.442 0.093 37.218 0 36.985 0z"/>
|
||||||
<path android:fillColor="#e9e9e0" android:pathData="M36.985,0 L7.963,0C7.155,0 6.5,0.655 6.5,1.926l0,37.074 43,0 0,-26.022c0,-0.696 -0.093,-0.92 -0.257,-1.085L37.607,0.257C37.442,0.093 37.218,0 36.985,0Z"/>
|
<path android:fillColor="#D9D7CA" android:pathData="M37.5 0.151V12h11.849z"/>
|
||||||
<path android:fillColor="#D9D7CA" android:pathData="M37.5,0.151l0,11.849l11.849,0z"/>
|
<path android:fillColor="#CE3C3B" android:pathData="M48.037 56H7.963C7.155 56 6.5 55.345 6.5 54.537V39h43v15.537c0 0.808-0.655 1.463-1.463 1.463z"/>
|
||||||
<path android:fillColor="#CE3C3B" android:pathData="M48.037,56H7.963C7.155,56 6.5,55.345 6.5,54.537V39h43v15.537C49.5,55.345 48.845,56 48.037,56z"/>
|
<path android:fillColor="#ffffff" android:pathData="M17.527 44.168v3.172h4.211v1.121h-4.21V53H15.86V42.924h6.303v1.244h-4.635zm8.053-1.244v8.832h4.636V53h-6.304V42.924h1.668zM31.486 53l3.527-10.063h1.628L40.14 53h-1.695l-0.725-2.092h-3.787L33.196 53h-1.71zm2.83-3.199h3.008l-1.49-4.348-1.518 4.348z"/>
|
||||||
<path android:fillColor="#ffffff" android:pathData="m17.5275,44.168 l0,3.172 4.211,0 0,1.121 -4.211,0 0,4.539 -1.668,0 0,-10.076 6.303,0 0,1.244 -4.635,0z"/>
|
<path android:fillColor="#ce3c3b" android:pathData="M23.5 16a2 2 0 1 1 4 0 2 2 0 1 1-4 0"/>
|
||||||
<path android:fillColor="#ffffff" android:pathData="m25.5805,42.924 l0,8.832 4.635,0 0,1.244 -6.303,0 0,-10.076 1.668,0z"/>
|
<path android:fillColor="#ce3c3b" android:pathData="M34.985 13.929l-0.707-0.707C32.201 11.144 29.438 10 26.5 10c-2.938 0-5.701 1.144-7.778 3.222C16.644 15.299 15.5 18.062 15.5 21c0 2.938 1.144 5.701 3.222 7.778C20.799 30.856 23.562 32 26.5 32c2.938 0 5.701-1.144 7.778-3.222l0.707-0.707L27.914 21l7.071-7.071zm-2.867 14.103C30.528 29.308 28.567 30 26.5 30c-2.404 0-4.664-0.936-6.364-2.636-1.7-1.7-2.636-3.96-2.636-6.364s0.936-4.664 2.636-6.364c1.7-1.7 3.96-2.636 6.364-2.636 2.067 0 4.028 0.692 5.618 1.968L25.086 21l7.032 7.032z"/>
|
||||||
<path android:fillColor="#ffffff" android:pathData="m31.4865,53 l3.527,-10.063 1.627,0 3.5,10.063 -1.695,0 -0.725,-2.092 -3.787,0 -0.738,2.092 -1.709,0zM34.3165,49.801 L37.3245,49.801 35.8345,45.453 34.3165,49.801z"/>
|
<path android:fillColor="#ce3c3b" android:pathData="M35.5 20h-3c-0.553 0-1 0.447-1 1 0 0.553 0.447 1 1 1h3c0.553 0 1-0.447 1-1 0-0.553-0.447-1-1-1zm6 0h-2c-0.553 0-1 0.447-1 1 0 0.553 0.447 1 1 1h2c0.553 0 1-0.447 1-1 0-0.553-0.447-1-1-1z"/>
|
||||||
<path android:fillColor="#ce3c3b" android:pathData="M25.5,16m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
|
|
||||||
<path android:fillColor="#ce3c3b" android:pathData="M34.985,13.929 L34.278,13.222C32.201,11.144 29.438,10 26.5,10 23.562,10 20.799,11.144 18.722,13.222 16.644,15.299 15.5,18.062 15.5,21c0,2.938 1.144,5.701 3.222,7.778 2.077,2.078 4.84,3.222 7.778,3.222 2.938,0 5.701,-1.144 7.778,-3.222L34.985,28.071 27.914,21 34.985,13.929ZM32.118,28.032C30.528,29.308 28.567,30 26.5,30 24.096,30 21.836,29.064 20.136,27.364 18.436,25.664 17.5,23.404 17.5,21c0,-2.404 0.936,-4.664 2.636,-6.364 1.7,-1.7 3.96,-2.636 6.364,-2.636 2.067,0 4.028,0.692 5.618,1.968L25.086,21l7.032,7.032z"/>
|
|
||||||
<path android:fillColor="#ce3c3b" android:pathData="m35.5,20 l-3,0c-0.553,0 -1,0.447 -1,1 0,0.553 0.447,1 1,1l3,0c0.553,0 1,-0.447 1,-1 0,-0.553 -0.447,-1 -1,-1z"/>
|
|
||||||
<path android:fillColor="#ce3c3b" android:pathData="m41.5,20 l-2,0c-0.553,0 -1,0.447 -1,1 0,0.553 0.447,1 1,1l2,0c0.553,0 1,-0.447 1,-1 0,-0.553 -0.447,-1 -1,-1z"/>
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,10 +1,7 @@
|
||||||
<vector android:height="24dp" android:viewportHeight="56"
|
<vector android:height="24dp" android:viewportHeight="56" android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
<path android:fillColor="#e9e9e0" android:pathData="M36.985 0H7.963C7.155 0 6.5 0.655 6.5 1.926V39h43V12.978c0-0.696-0.093-0.92-0.257-1.085L37.607 0.257C37.442 0.093 37.218 0 36.985 0z"/>
|
||||||
<path android:fillColor="#e9e9e0" android:pathData="M36.985,0 L7.963,0C7.155,0 6.5,0.655 6.5,1.926l0,37.074 43,0 0,-26.022c0,-0.696 -0.093,-0.92 -0.257,-1.085L37.607,0.257C37.442,0.093 37.218,0 36.985,0Z"/>
|
<path android:fillColor="#D9D7CA" android:pathData="M37.5 0.151V12h11.849z"/>
|
||||||
<path android:fillColor="#D9D7CA" android:pathData="M37.5,0.151l0,11.849l11.849,0z"/>
|
<path android:fillColor="#CE3C3B" android:pathData="M48.037 56H7.963C7.155 56 6.5 55.345 6.5 54.537V39h43v15.537c0 0.808-0.655 1.463-1.463 1.463z"/>
|
||||||
<path android:fillColor="#CE3C3B" android:pathData="M48.037,56H7.963C7.155,56 6.5,55.345 6.5,54.537V39h43v15.537C49.5,55.345 48.845,56 48.037,56z"/>
|
<path android:fillColor="#ffffff" android:pathData="M17.598 44.168v3.172h4.211v1.121H17.6V53h-1.67V42.924h6.303v1.244h-4.635zm8.053-1.244v8.832h4.635V53h-6.303V42.924h1.668zm9.005 10.086l-3.131-10.13h1.873l2.338 8.694 2.475-8.695h1.859L36.789 53.01h-2.133z"/>
|
||||||
<path android:fillColor="#ffffff" android:pathData="m17.5983,44.168 l0,3.172 4.211,0 0,1.121 -4.211,0 0,4.539 -1.668,0 0,-10.076 6.303,0 0,1.244 -4.635,0z"/>
|
<path android:fillColor="#ce3c3b" android:pathData="M35.999 8.306c-7.65 0-9.79 5.956-11.347 10.305-0.309 0.865-0.578 1.735-0.838 2.58-1.309 4.244-2.22 6.647-5.72 6.647-0.45 0-0.814 0.364-0.814 0.814v4.883c0 0.45 0.365 0.814 0.814 0.814 5.534 0 9.734-4.815 11.2-9.766h5.077c0.45 0 0.814-0.365 0.814-0.814v-4.883c0-0.45-0.364-0.814-0.814-0.814h-3.213l0.072-0.163c0.921-2.059 1.383-3.093 4.769-3.093 0.45 0 0.814-0.364 0.814-0.813V9.12c0-0.45-0.365-0.814-0.814-0.814z"/>
|
||||||
<path android:fillColor="#ffffff" android:pathData="m25.6513,42.924 l0,8.832 4.635,0 0,1.244 -6.303,0 0,-10.076 1.668,0z"/>
|
|
||||||
<path android:fillColor="#ffffff" android:pathData="m34.6557,53.0104 l-3.131,-10.131 1.873,0 2.338,8.695 2.475,-8.695 1.859,0 -3.281,10.131 -2.133,0z"/>
|
|
||||||
<path android:fillColor="#ce3c3b" android:pathData="m35.9989,8.3057c-7.6502,0 -9.7906,5.9558 -11.3467,10.3049 -0.3092,0.8659 -0.5778,1.7351 -0.8383,2.5799 -1.3087,4.245 -2.2202,6.6475 -5.7197,6.6475 -0.4495,0 -0.8139,0.3644 -0.8139,0.8139l0,4.8831c0,0.4495 0.3644,0.8139 0.8139,0.8139 5.5341,0 9.7336,-4.8147 11.2002,-9.7662l5.0768,0c0.4495,0 0.8139,-0.3644 0.8139,-0.8139l0,-4.8831c0,-0.4495 -0.3644,-0.8139 -0.8139,-0.8139l-3.2131,0 0.0716,-0.1627c0.9213,-2.0591 1.3835,-3.0926 4.7692,-3.0926 0.4495,0 0.8139,-0.3644 0.8139,-0.8139l0,-4.883C36.8128,8.6701 36.4484,8.3057 35.9989,8.3057Z"/>
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
<vector android:height="24dp" android:viewportHeight="56"
|
<vector android:height="24dp" android:viewportHeight="56" android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
<path android:fillColor="#e9e9e0" android:pathData="M36.985 0H7.963C7.155 0 6.5 0.655 6.5 1.926V39h43V12.978c0-0.696-0.093-0.92-0.257-1.085L37.607 0.257C37.442 0.093 37.218 0 36.985 0z"/>
|
||||||
<path android:fillColor="#e9e9e0" android:pathData="M36.985,0 L7.963,0C7.155,0 6.5,0.655 6.5,1.926l0,37.074 43,0 0,-26.022c0,-0.696 -0.093,-0.92 -0.257,-1.085L37.607,0.257C37.442,0.093 37.218,0 36.985,0Z"/>
|
<path android:fillColor="#D9D7CA" android:pathData="M37.5 0.151V12h11.849z"/>
|
||||||
<path android:fillColor="#D9D7CA" android:pathData="M37.5,0.151l0,11.849l11.849,0z"/>
|
<path android:fillColor="#C8BDB8" android:pathData="M48.037 56H7.963C7.155 56 6.5 55.345 6.5 54.537V39h43v15.537c0 0.808-0.655 1.463-1.463 1.463z"/>
|
||||||
<path android:fillColor="#C8BDB8" android:pathData="M48.037,56H7.963C7.155,56 6.5,55.345 6.5,54.537V39h43v15.537C49.5,55.345 48.845,56 48.037,56z"/>
|
<path android:fillColor="#FFFFFF" android:pathData="M15.5 47a3 3 0 1 1 6 0 3 3 0 1 1-6 0m10 0a3 3 0 1 1 6 0 3 3 0 1 1-6 0m10 0a3 3 0 1 1 6 0 3 3 0 1 1-6 0"/>
|
||||||
<path android:fillColor="#FFFFFF" android:pathData="M18.5,47m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
|
|
||||||
<path android:fillColor="#FFFFFF" android:pathData="M28.5,47m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
|
|
||||||
<path android:fillColor="#FFFFFF" android:pathData="M38.5,47m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,12 +1,7 @@
|
||||||
<vector android:height="24dp" android:viewportHeight="56"
|
<vector android:height="24dp" android:viewportHeight="56" android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
<path android:fillColor="#e9e9e0" android:pathData="M36.985 0H7.963C7.155 0 6.5 0.655 6.5 1.926V39h43V12.978c0-0.696-0.093-0.92-0.257-1.085L37.607 0.257C37.442 0.093 37.218 0 36.985 0z"/>
|
||||||
<path android:fillColor="#e9e9e0" android:pathData="M36.985,0 L7.963,0C7.155,0 6.5,0.655 6.5,1.926l0,37.074 43,0 0,-26.022c0,-0.696 -0.093,-0.92 -0.257,-1.085L37.607,0.257C37.442,0.093 37.218,0 36.985,0Z"/>
|
<path android:fillColor="#D9D7CA" android:pathData="M37.5 0.151V12h11.849z"/>
|
||||||
<path android:fillColor="#D9D7CA" android:pathData="M37.5,0.151l0,11.849l11.849,0z"/>
|
<path android:fillColor="#EC6630" android:pathData="M48.037 56H7.963C7.155 56 6.5 55.345 6.5 54.537V39h43v15.537c0 0.808-0.655 1.463-1.463 1.463z"/>
|
||||||
<path android:fillColor="#EC6630" android:pathData="M48.037,56H7.963C7.155,56 6.5,55.345 6.5,54.537V39h43v15.537C49.5,55.345 48.845,56 48.037,56z"/>
|
<path android:fillColor="#ffffff" android:pathData="M16.96 42.924V53h-1.641v-4.539h-4.361V53H9.29V42.924h1.668v4.416h4.361v-4.416h1.641zm9.652 0v1.121h-3.007V53h-1.654v-8.955h-3.008v-1.121h7.669zm9.598 0h1.668V53H36.21v-6.932l-2.256 5.605h-1.449l-2.27-5.605V53h-1.668V42.924h1.668l2.994 6.891 2.981-6.891zm5.865 0v8.832h4.635V53h-6.303V42.924h1.668z"/>
|
||||||
<path android:fillColor="#ffffff" android:pathData="m16.96,42.924 l0,10.076 -1.641,0 0,-4.539 -4.361,0 0,4.539 -1.668,0 0,-10.076 1.668,0 0,4.416 4.361,0 0,-4.416 1.641,0z"/>
|
<path android:fillColor="#ec6630" android:pathData="M22.707 16.293c-0.391-0.391-1.023-0.391-1.414 0l-6 6c-0.391 0.391-0.391 1.023 0 1.414l6 6C21.488 29.902 21.744 30 22 30c0.256 0 0.512-0.098 0.707-0.293 0.391-0.391 0.391-1.023 0-1.414L17.414 23l5.293-5.293c0.391-0.391 0.391-1.023 0-1.414zm18 6l-6-6c-0.391-0.391-1.023-0.391-1.414 0s-0.391 1.023 0 1.414L38.586 23l-5.293 5.293c-0.391 0.391-0.391 1.023 0 1.414C33.488 29.902 33.744 30 34 30c0.256 0 0.512-0.098 0.707-0.293l6-6c0.391-0.391 0.391-1.023 0-1.414z"/>
|
||||||
<path android:fillColor="#ffffff" android:pathData="m26.612,42.924 l0,1.121 -3.007,0 0,8.955 -1.654,0 0,-8.955 -3.008,0 0,-1.121 7.669,0z"/>
|
|
||||||
<path android:fillColor="#ffffff" android:pathData="m36.21,42.924 l1.668,0 0,10.076 -1.668,0 0,-6.932 -2.256,5.605 -1.449,0 -2.27,-5.605 0,6.932 -1.668,0 0,-10.076 1.668,0 2.994,6.891 2.981,-6.891z"/>
|
|
||||||
<path android:fillColor="#ffffff" android:pathData="m42.075,42.924 l0,8.832 4.635,0 0,1.244 -6.303,0 0,-10.076 1.668,0z"/>
|
|
||||||
<path android:fillColor="#ec6630" android:pathData="m22.707,16.293c-0.391,-0.391 -1.023,-0.391 -1.414,0l-6,6c-0.391,0.391 -0.391,1.023 0,1.414l6,6C21.488,29.902 21.744,30 22,30c0.256,0 0.512,-0.098 0.707,-0.293 0.391,-0.391 0.391,-1.023 0,-1.414L17.414,23 22.707,17.707c0.391,-0.391 0.391,-1.023 0,-1.414z"/>
|
|
||||||
<path android:fillColor="#ec6630" android:pathData="m40.707,22.293 l-6,-6c-0.391,-0.391 -1.023,-0.391 -1.414,0 -0.391,0.391 -0.391,1.023 0,1.414L38.586,23 33.293,28.293c-0.391,0.391 -0.391,1.023 0,1.414 0.195,0.195 0.451,0.293 0.707,0.293 0.256,0 0.512,-0.098 0.707,-0.293l6,-6c0.391,-0.391 0.391,-1.023 0,-1.414z"/>
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,11 +1,7 @@
|
||||||
<vector android:height="24dp" android:viewportHeight="56"
|
<vector android:height="24dp" android:viewportHeight="56" android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
<path android:fillColor="#e9e9e0" android:pathData="M36.985 0H7.963C7.155 0 6.5 0.655 6.5 1.926V39h43V12.978c0-0.696-0.093-0.92-0.257-1.085L37.607 0.257C37.442 0.093 37.218 0 36.985 0z"/>
|
||||||
<path android:fillColor="#e9e9e0" android:pathData="M36.985,0 L7.963,0C7.155,0 6.5,0.655 6.5,1.926l0,37.074 43,0 0,-26.022c0,-0.696 -0.093,-0.92 -0.257,-1.085L37.607,0.257C37.442,0.093 37.218,0 36.985,0Z"/>
|
<path android:fillColor="#D9D7CA" android:pathData="M37.5 0.151V12h11.849z"/>
|
||||||
<path android:fillColor="#D9D7CA" android:pathData="M37.5,0.151l0,11.849l11.849,0z"/>
|
<path android:fillColor="#6f2b41" android:pathData="M48.037 56H7.963C7.155 56 6.5 55.345 6.5 54.537V39h43v15.537c0 0.808-0.655 1.463-1.463 1.463z"/>
|
||||||
<path android:fillColor="#6f2b41" android:pathData="M48.037,56 L7.963,56C7.155,56 6.5,55.345 6.5,54.537L6.5,39l43,0 0,15.537C49.5,55.345 48.845,56 48.037,56Z"/>
|
<path android:fillColor="#ffffff" android:pathData="M14.2 52.674h-1.668V42.598H14.2v10.076zm9.27-10.076v10.076H21.8l-3.95-6.945v6.945h-1.669V42.598h1.668l3.951 6.945v-6.945h1.668zm10.042 4.758c0 0.829-0.089 1.538-0.267 2.126-0.178 0.588-0.403 1.08-0.677 1.477s-0.58 0.709-0.923 0.937c-0.342 0.228-0.672 0.398-0.99 0.513-0.32 0.114-0.612 0.187-0.876 0.219-0.264 0.03-0.46 0.046-0.588 0.046h-3.814V42.598h3.035c0.848 0 1.593 0.135 2.235 0.403 0.642 0.268 1.176 0.627 1.6 1.073 0.424 0.446 0.74 0.955 0.95 1.524 0.21 0.57 0.315 1.156 0.315 1.758zm-4.867 4.115c1.112 0 1.914-0.355 2.406-1.066 0.492-0.711 0.738-1.741 0.738-3.09 0-0.42-0.05-0.834-0.15-1.244-0.1-0.41-0.294-0.781-0.58-1.114-0.288-0.333-0.678-0.602-1.17-0.807-0.492-0.205-1.13-0.308-1.914-0.308h-0.957v7.629h1.627zm14.823-4.121c0 0.83-0.089 1.538-0.267 2.126-0.178 0.588-0.403 1.08-0.677 1.477s-0.581 0.71-0.923 0.937c-0.342 0.228-0.672 0.398-0.991 0.513-0.319 0.114-0.611 0.187-0.875 0.22-0.264 0.03-0.46 0.045-0.588 0.045h-3.814V42.592h3.035c0.848 0 1.593 0.135 2.235 0.403 0.642 0.268 1.176 0.627 1.6 1.073 0.424 0.446 0.74 0.955 0.95 1.524 0.21 0.57 0.315 1.156 0.315 1.758zm-4.867 4.115c1.112 0 1.914-0.355 2.406-1.066 0.492-0.71 0.738-1.74 0.738-3.09 0-0.418-0.05-0.833-0.15-1.243-0.101-0.41-0.294-0.782-0.581-1.115-0.287-0.332-0.677-0.601-1.169-0.806-0.492-0.206-1.13-0.309-1.914-0.309h-0.957v7.63h1.627z"/>
|
||||||
<path android:fillColor="#ffffff" android:pathData="m14.2,52.6736 l-1.668,0 0,-10.076 1.668,0 0,10.076z"/>
|
<path android:fillColor="#6f2b41" android:pathData="M34.112 21.716l0.72 0.72-11.286 11.226-8.585 1.921L16.822 27l11.286-11.286 1.681 1.68L18.503 28.74c-0.36 0.42-1.02 0.24-1.02 0.24l-1.021 4.022 0.96 1.02 5.463-1.26zm5.763-6.364l-4.743-4.562c-0.54-0.54-1.44-0.54-1.92 0.06l-2.222 2.16 6.544 6.724 2.34-2.461c0.541-0.54 0.541-1.381 0-1.922zM19.619 31.765c0.54 0.6 1.44 0.6 2.041 0.06l11.286-11.167-2.04-2.1-11.287 11.286c-0.48 0.54-0.54 1.38 0 1.92zm9.27-16.653l6.723 6.724 1.441-1.38-6.783-6.845z"/>
|
||||||
<path android:fillColor="#ffffff" android:pathData="m23.4692,42.5976 l0,10.076 -1.668,0 -3.951,-6.945 0,6.945 -1.668,0 0,-10.076 1.668,0 3.951,6.945 0,-6.945 1.668,0z"/>
|
|
||||||
<path android:fillColor="#ffffff" android:pathData="m33.5121,47.3556c0,0.829 -0.089,1.538 -0.267,2.126 -0.178,0.588 -0.403,1.08 -0.677,1.477 -0.274,0.397 -0.581,0.709 -0.923,0.937 -0.342,0.228 -0.672,0.398 -0.991,0.513 -0.319,0.114 -0.611,0.187 -0.875,0.219 -0.264,0.03 -0.46,0.046 -0.588,0.046l-3.814,0 0,-10.076 3.035,0c0.848,0 1.593,0.135 2.235,0.403 0.642,0.268 1.176,0.627 1.6,1.073 0.424,0.446 0.74,0.955 0.95,1.524 0.21,0.57 0.315,1.156 0.315,1.758zM28.6451,51.4706c1.112,0 1.914,-0.355 2.406,-1.066 0.492,-0.711 0.738,-1.741 0.738,-3.09 0,-0.419 -0.05,-0.834 -0.15,-1.244 -0.101,-0.41 -0.294,-0.781 -0.581,-1.114 -0.287,-0.333 -0.677,-0.602 -1.169,-0.807 -0.492,-0.205 -1.13,-0.308 -1.914,-0.308l-0.957,0 0,7.629 1.627,0z"/>
|
|
||||||
<path android:fillColor="#ffffff" android:pathData="m43.468,47.3505c0,0.829 -0.089,1.538 -0.267,2.126 -0.178,0.588 -0.403,1.08 -0.677,1.477 -0.274,0.397 -0.581,0.709 -0.923,0.937 -0.342,0.228 -0.672,0.398 -0.991,0.513 -0.319,0.114 -0.611,0.187 -0.875,0.219 -0.264,0.03 -0.46,0.046 -0.588,0.046l-3.814,0 0,-10.076 3.035,0c0.848,0 1.593,0.135 2.235,0.403 0.642,0.268 1.176,0.627 1.6,1.073 0.424,0.446 0.74,0.955 0.95,1.524 0.21,0.57 0.315,1.156 0.315,1.758zM38.601,51.4655c1.112,0 1.914,-0.355 2.406,-1.066 0.492,-0.711 0.738,-1.741 0.738,-3.09 0,-0.419 -0.05,-0.834 -0.15,-1.244 -0.101,-0.41 -0.294,-0.781 -0.581,-1.114 -0.287,-0.333 -0.677,-0.602 -1.169,-0.807 -0.492,-0.205 -1.13,-0.308 -1.914,-0.308l-0.957,0 0,7.629 1.627,0z"/>
|
|
||||||
<path android:fillColor="#6f2b41" android:pathData="m34.1116,21.7159 l0.7204,0.7204 -11.2862,11.2261 -8.5847,1.921 1.861,-8.5847 11.2862,-11.2862 1.6809,1.6809 -11.2862,11.3462c-0.3602,0.4202 -1.0206,0.2401 -1.0206,0.2401l-1.0206,4.0222 0.9605,1.0206 5.463,-1.2607zM39.8748,15.3524 L35.1322,10.7899c-0.5403,-0.5403 -1.4408,-0.5403 -1.921,0.06l-2.2212,2.1612 6.5436,6.7237 2.3413,-2.4613c0.5403,-0.5403 0.5403,-1.3808 0,-1.921zM19.6191,31.7645c0.5403,0.6003 1.4408,0.6003 2.0411,0.06l11.2862,-11.1661 -2.0411,-2.1011 -11.2862,11.2862c-0.4803,0.5403 -0.5403,1.3808 0,1.921zM28.8888,15.1123 L35.6124,21.836 37.0532,20.4552 30.2695,13.6115z"/>
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,13 +1,9 @@
|
||||||
<vector android:height="24dp" android:viewportHeight="56"
|
<vector android:height="24dp" android:viewportHeight="56" android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
<path android:fillColor="#e9e9e0" android:pathData="M36.985 0H7.963C7.155 0 6.5 0.655 6.5 1.926V39h43V12.978c0-0.696-0.093-0.92-0.257-1.085L37.607 0.257C37.442 0.093 37.218 0 36.985 0z"/>
|
||||||
<path android:fillColor="#e9e9e0" android:pathData="M36.985,0 L7.963,0C7.155,0 6.5,0.655 6.5,1.926l0,37.074 43,0 0,-26.022c0,-0.696 -0.093,-0.92 -0.257,-1.085L37.607,0.257C37.442,0.093 37.218,0 36.985,0Z"/>
|
<path android:fillColor="#D9D7CA" android:pathData="M37.5 0.151V12h11.849z"/>
|
||||||
<path android:fillColor="#D9D7CA" android:pathData="M37.5,0.151l0,11.849l11.849,0z"/>
|
<path android:fillColor="#71C285" android:pathData="M48.037 56H7.963C7.155 56 6.5 55.345 6.5 54.537V39h43v15.537c0 0.808-0.655 1.463-1.463 1.463z"/>
|
||||||
<path android:fillColor="#71C285" android:pathData="M48.037,56H7.963C7.155,56 6.5,55.345 6.5,54.537V39h43v15.537C49.5,55.345 48.845,56 48.037,56z"/>
|
<path android:fillColor="#ffffff" android:pathData="M19.776 53h-1.668V42.924h1.668V53zm8.218-2.762c0 0.364-0.075 0.718-0.226 1.06-0.151 0.342-0.362 0.643-0.636 0.902s-0.611 0.467-1.012 0.622c-0.401 0.155-0.857 0.232-1.367 0.232-0.22 0-0.444-0.012-0.677-0.034-0.233-0.022-0.468-0.062-0.704-0.116-0.237-0.055-0.463-0.13-0.677-0.226-0.214-0.096-0.4-0.212-0.554-0.349l0.287-1.176c0.127 0.073 0.289 0.144 0.485 0.212s0.398 0.132 0.608 0.191c0.209 0.06 0.419 0.107 0.629 0.144 0.209 0.036 0.405 0.055 0.588 0.055 0.556 0 0.982-0.13 1.278-0.39 0.296-0.26 0.444-0.645 0.444-1.155 0-0.31-0.105-0.574-0.314-0.793-0.21-0.219-0.473-0.417-0.787-0.595-0.314-0.178-0.654-0.355-1.019-0.533-0.364-0.178-0.706-0.388-1.024-0.629-0.32-0.241-0.584-0.526-0.793-0.854-0.21-0.328-0.314-0.738-0.314-1.23 0-0.446 0.082-0.843 0.246-1.189 0.164-0.346 0.385-0.641 0.663-0.882s0.602-0.426 0.97-0.554c0.37-0.128 0.76-0.191 1.17-0.191 0.419 0 0.843 0.039 1.27 0.116 0.429 0.077 0.775 0.203 1.04 0.376-0.055 0.118-0.12 0.248-0.191 0.39l-0.205 0.396c-0.064 0.123-0.12 0.226-0.164 0.308-0.046 0.082-0.073 0.128-0.082 0.137-0.055-0.027-0.116-0.063-0.185-0.109-0.07-0.046-0.167-0.091-0.294-0.137-0.128-0.046-0.297-0.077-0.506-0.096-0.21-0.019-0.48-0.014-0.807 0.014-0.183 0.019-0.355 0.07-0.52 0.157-0.165 0.087-0.311 0.193-0.438 0.321-0.128 0.128-0.23 0.271-0.301 0.431-0.073 0.159-0.11 0.313-0.11 0.458 0 0.364 0.105 0.658 0.315 0.882 0.209 0.224 0.469 0.419 0.779 0.588 0.31 0.169 0.646 0.333 1.012 0.492 0.364 0.159 0.704 0.354 1.019 0.581 0.315 0.227 0.576 0.513 0.786 0.854 0.212 0.342 0.318 0.781 0.318 1.319zm9.898-2.324c0 0.848-0.108 1.595-0.322 2.242-0.213 0.647-0.51 1.185-0.888 1.613-0.379 0.428-0.82 0.752-1.327 0.971-0.505 0.219-1.06 0.328-1.66 0.328-0.602 0-1.156-0.109-1.662-0.328-0.506-0.219-0.948-0.542-1.326-0.971-0.378-0.429-0.675-0.966-0.889-1.613-0.214-0.647-0.32-1.395-0.32-2.242s0.106-1.593 0.32-2.235c0.214-0.642 0.511-1.178 0.89-1.606 0.377-0.428 0.82-0.754 1.325-0.978 0.506-0.224 1.06-0.335 1.661-0.335s1.155 0.111 1.661 0.335c0.507 0.224 0.949 0.549 1.327 0.978 0.377 0.429 0.674 0.964 0.888 1.606 0.215 0.642 0.322 1.387 0.322 2.235zm-4.239 3.815c0.338 0 0.659-0.066 0.965-0.198 0.305-0.132 0.578-0.349 0.82-0.649 0.24-0.3 0.43-0.695 0.566-1.183 0.137-0.488 0.21-1.082 0.22-1.784-0.01-0.684-0.08-1.265-0.212-1.743-0.133-0.478-0.315-0.873-0.548-1.183-0.232-0.31-0.496-0.533-0.792-0.67-0.296-0.137-0.608-0.205-0.937-0.205-0.338 0-0.658 0.063-0.964 0.191-0.306 0.128-0.58 0.344-0.82 0.649-0.241 0.305-0.431 0.699-0.567 1.183-0.136 0.484-0.21 1.075-0.22 1.777 0.01 0.684 0.08 1.267 0.213 1.75 0.132 0.483 0.314 0.877 0.547 1.183 0.233 0.306 0.497 0.528 0.793 0.67 0.296 0.142 0.609 0.212 0.937 0.212z"/>
|
||||||
<path android:fillColor="#ffffff" android:pathData="m19.7765,53 l-1.668,0 0,-10.076 1.668,0 0,10.076z"/>
|
<path android:fillColor="#6ab17b" android:pathData="M15.5 21a12 12 0 1 1 24 0 12 12 0 1 1-24 0"/>
|
||||||
<path android:fillColor="#ffffff" android:pathData="m27.9935,50.238c0,0.364 -0.075,0.718 -0.226,1.06 -0.151,0.342 -0.362,0.643 -0.636,0.902 -0.274,0.259 -0.611,0.467 -1.012,0.622 -0.401,0.155 -0.857,0.232 -1.367,0.232 -0.219,0 -0.444,-0.012 -0.677,-0.034 -0.233,-0.022 -0.468,-0.062 -0.704,-0.116 -0.237,-0.055 -0.463,-0.13 -0.677,-0.226 -0.214,-0.096 -0.399,-0.212 -0.554,-0.349l0.287,-1.176c0.127,0.073 0.289,0.144 0.485,0.212 0.196,0.068 0.398,0.132 0.608,0.191 0.209,0.06 0.419,0.107 0.629,0.144 0.209,0.036 0.405,0.055 0.588,0.055 0.556,0 0.982,-0.13 1.278,-0.39 0.296,-0.26 0.444,-0.645 0.444,-1.155 0,-0.31 -0.105,-0.574 -0.314,-0.793C25.9355,49.198 25.6735,49 25.3595,48.822 25.0455,48.644 24.7055,48.467 24.3405,48.289 23.9755,48.111 23.6335,47.901 23.3155,47.66c-0.319,-0.241 -0.584,-0.526 -0.793,-0.854 -0.21,-0.328 -0.314,-0.738 -0.314,-1.23 0,-0.446 0.082,-0.843 0.246,-1.189 0.164,-0.346 0.385,-0.641 0.663,-0.882 0.278,-0.241 0.602,-0.426 0.971,-0.554 0.369,-0.128 0.759,-0.191 1.169,-0.191 0.419,0 0.843,0.039 1.271,0.116 0.428,0.077 0.774,0.203 1.039,0.376 -0.055,0.118 -0.119,0.248 -0.191,0.39 -0.073,0.142 -0.142,0.273 -0.205,0.396 -0.064,0.123 -0.119,0.226 -0.164,0.308 -0.046,0.082 -0.073,0.128 -0.082,0.137 -0.055,-0.027 -0.116,-0.063 -0.185,-0.109 -0.069,-0.046 -0.167,-0.091 -0.294,-0.137 -0.128,-0.046 -0.297,-0.077 -0.506,-0.096 -0.21,-0.019 -0.479,-0.014 -0.807,0.014 -0.183,0.019 -0.355,0.07 -0.52,0.157 -0.165,0.087 -0.311,0.193 -0.438,0.321 -0.128,0.128 -0.229,0.271 -0.301,0.431 -0.073,0.159 -0.109,0.313 -0.109,0.458 0,0.364 0.104,0.658 0.314,0.882 0.209,0.224 0.469,0.419 0.779,0.588 0.31,0.169 0.646,0.333 1.012,0.492 0.364,0.159 0.704,0.354 1.019,0.581 0.315,0.227 0.576,0.513 0.786,0.854 0.212,0.342 0.318,0.781 0.318,1.319z"/>
|
<path android:fillColor="#E9E9E0" android:pathData="M24.5 21a3 3 0 1 1 6 0 3 3 0 1 1-6 0"/>
|
||||||
<path android:fillColor="#ffffff" android:pathData="m37.8915,47.914c0,0.848 -0.107,1.595 -0.321,2.242 -0.214,0.647 -0.511,1.185 -0.889,1.613 -0.378,0.428 -0.82,0.752 -1.326,0.971 -0.506,0.219 -1.06,0.328 -1.661,0.328 -0.601,0 -1.155,-0.109 -1.661,-0.328 -0.506,-0.219 -0.948,-0.542 -1.326,-0.971 -0.378,-0.429 -0.675,-0.966 -0.889,-1.613 -0.214,-0.647 -0.321,-1.395 -0.321,-2.242 0,-0.847 0.107,-1.593 0.321,-2.235 0.214,-0.642 0.511,-1.178 0.889,-1.606 0.378,-0.428 0.82,-0.754 1.326,-0.978 0.506,-0.224 1.06,-0.335 1.661,-0.335 0.601,0 1.155,0.111 1.661,0.335 0.506,0.224 0.948,0.549 1.326,0.978 0.378,0.429 0.675,0.964 0.889,1.606 0.214,0.642 0.321,1.387 0.321,2.235zM33.6535,51.729c0.337,0 0.658,-0.066 0.964,-0.198 0.306,-0.132 0.579,-0.349 0.82,-0.649 0.241,-0.3 0.431,-0.695 0.567,-1.183 0.136,-0.488 0.209,-1.082 0.219,-1.784 -0.01,-0.684 -0.08,-1.265 -0.212,-1.743 -0.132,-0.478 -0.314,-0.873 -0.547,-1.183 -0.233,-0.31 -0.497,-0.533 -0.793,-0.67 -0.296,-0.137 -0.608,-0.205 -0.937,-0.205 -0.338,0 -0.658,0.063 -0.964,0.191 -0.306,0.128 -0.579,0.344 -0.82,0.649 -0.241,0.305 -0.431,0.699 -0.567,1.183 -0.136,0.484 -0.21,1.075 -0.219,1.777 0.009,0.684 0.08,1.267 0.212,1.75 0.132,0.483 0.314,0.877 0.547,1.183 0.233,0.306 0.497,0.528 0.793,0.67 0.296,0.142 0.609,0.212 0.937,0.212z"/>
|
<path android:fillColor="#71c285" android:pathData="M25.379 18.879c0.132-0.132 0.276-0.245 0.425-0.347l-2.361-8.813c-1.615 0.579-3.134 1.503-4.427 2.796-1.294 1.293-2.217 2.812-2.796 4.427l8.813 2.361c0.101-0.148 0.214-0.292 0.346-0.424zm4.692 4.607l2.273 8.483c1.32-0.582 2.56-1.402 3.641-2.484 1.253-1.253 2.16-2.717 2.743-4.275l-8.188-2.194c-0.285-0.077-0.546 0.184-0.469 0.47z"/>
|
||||||
<path android:fillColor="#6ab17b" android:pathData="M27.5,21m-12,0a12,12 0,1 1,24 0a12,12 0,1 1,-24 0"/>
|
|
||||||
<path android:fillColor="#E9E9E0" android:pathData="M27.5,21m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
|
|
||||||
<path android:fillColor="#71c285" android:pathData="m25.379,18.879c0.132,-0.132 0.276,-0.245 0.425,-0.347L23.443,9.719c-1.615,0.579 -3.134,1.503 -4.427,2.796 -1.294,1.293 -2.217,2.812 -2.796,4.427l8.813,2.361c0.101,-0.148 0.214,-0.292 0.346,-0.424z"/>
|
|
||||||
<path android:fillColor="#71c285" android:pathData="m30.071,23.486 l2.273,8.483c1.32,-0.582 2.56,-1.402 3.641,-2.484 1.253,-1.253 2.16,-2.717 2.743,-4.275L30.54,23.016c-0.285,-0.077 -0.546,0.184 -0.469,0.47z"/>
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -1,11 +1,8 @@
|
||||||
<vector android:height="24dp" android:viewportHeight="56"
|
<vector android:height="24dp" android:viewportHeight="56" android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
android:viewportWidth="56" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
<path android:fillColor="#e9e9e0" android:pathData="M36.985 0H7.963C7.155 0 6.5 0.655 6.5 1.926V39h43V12.978c0-0.696-0.093-0.92-0.257-1.085L37.607 0.257C37.442 0.093 37.218 0 36.985 0z"/>
|
||||||
<path android:fillColor="#e9e9e0" android:pathData="M36.985,0 L7.963,0C7.155,0 6.5,0.655 6.5,1.926l0,37.074 43,0 0,-26.022c0,-0.696 -0.093,-0.92 -0.257,-1.085L37.607,0.257C37.442,0.093 37.218,0 36.985,0Z"/>
|
<path android:fillColor="#D9D7CA" android:pathData="M37.5 0.151V12h11.849z"/>
|
||||||
<path android:fillColor="#D9D7CA" android:pathData="M37.5,0.151l0,11.849l11.849,0z"/>
|
<path android:fillColor="#F3D55B" android:pathData="M14.362 14.431a4.569 4.569 0 1 1 9.138 0 4.569 4.569 0 1 1-9.138 0"/>
|
||||||
<path android:fillColor="#F3D55B" android:pathData="M18.931,14.431m-4.569,0a4.569,4.569 0,1 1,9.138 0a4.569,4.569 0,1 1,-9.138 0"/>
|
<path android:fillColor="#26B99A" android:pathData="M6.5 39h43V28l-10-9.5L29 30l-5.483-5.483z"/>
|
||||||
<path android:fillColor="#26B99A" android:pathData="M6.5,39l11,0l32,0l0,-11l-10,-9.5l-10.5,11.5l-5.483,-5.483z"/>
|
<path android:fillColor="#14A085" android:pathData="M48.037 56H7.963C7.155 56 6.5 55.345 6.5 54.537V39h43v15.537c0 0.808-0.655 1.463-1.463 1.463z"/>
|
||||||
<path android:fillColor="#14A085" android:pathData="M48.037,56H7.963C7.155,56 6.5,55.345 6.5,54.537V39h43v15.537C49.5,55.345 48.845,56 48.037,56z"/>
|
<path android:fillColor="#ffffff" android:pathData="M21.627 42.65v7.848c0 0.474-0.087 0.873-0.26 1.196-0.174 0.323-0.407 0.583-0.698 0.779-0.292 0.196-0.627 0.333-1.005 0.41C19.285 52.961 18.896 53 18.495 53c-0.2 0-0.436-0.021-0.704-0.062-0.268-0.041-0.547-0.104-0.834-0.191-0.287-0.087-0.563-0.185-0.826-0.294-0.265-0.109-0.489-0.232-0.67-0.369l0.696-1.107c0.091 0.063 0.221 0.13 0.39 0.198 0.168 0.068 0.353 0.132 0.554 0.191 0.2 0.06 0.41 0.111 0.63 0.157 0.218 0.046 0.423 0.068 0.614 0.068 0.483 0 0.868-0.094 1.155-0.28 0.287-0.186 0.44-0.504 0.458-0.95V42.65h1.668zm4.088 10.282h-1.641V42.855h2.898c0.428 0 0.852 0.068 1.27 0.205 0.42 0.137 0.796 0.342 1.129 0.615 0.333 0.273 0.602 0.604 0.807 0.991 0.205 0.387 0.308 0.822 0.308 1.306 0 0.511-0.087 0.973-0.26 1.388-0.173 0.415-0.415 0.764-0.725 1.046-0.31 0.282-0.685 0.501-1.122 0.656-0.437 0.155-0.92 0.232-1.449 0.232h-1.217v3.638zm0-8.832v3.992h1.503c0.2 0 0.398-0.034 0.595-0.103 0.196-0.068 0.376-0.18 0.54-0.335 0.164-0.155 0.296-0.371 0.396-0.649 0.1-0.278 0.15-0.622 0.15-1.032 0-0.164-0.023-0.354-0.068-0.567-0.046-0.214-0.139-0.419-0.28-0.615-0.142-0.196-0.34-0.36-0.595-0.492-0.255-0.133-0.593-0.199-1.011-0.199h-1.23zM39.7 47.736v3.896c-0.21 0.265-0.444 0.48-0.704 0.649-0.26 0.169-0.533 0.308-0.82 0.417-0.287 0.109-0.583 0.187-0.889 0.232C36.981 52.978 36.68 53 36.378 53c-0.602 0-1.155-0.109-1.66-0.328-0.507-0.219-0.949-0.542-1.327-0.971-0.378-0.429-0.675-0.966-0.889-1.613-0.214-0.647-0.32-1.395-0.32-2.242s0.106-1.593 0.32-2.235c0.214-0.643 0.51-1.178 0.89-1.606 0.377-0.429 0.821-0.754 1.332-0.978 0.51-0.224 1.062-0.335 1.654-0.335 0.547 0 1.057 0.091 1.531 0.273 0.474 0.183 0.897 0.456 1.271 0.82l-1.135 1.012c-0.219-0.265-0.47-0.456-0.752-0.574-0.283-0.118-0.574-0.178-0.875-0.178-0.337 0-0.659 0.063-0.964 0.191-0.306 0.128-0.579 0.344-0.82 0.649-0.242 0.306-0.43 0.699-0.567 1.183-0.136 0.484-0.21 1.075-0.219 1.777 0.01 0.684 0.08 1.276 0.212 1.777 0.132 0.501 0.314 0.911 0.547 1.23 0.233 0.319 0.497 0.556 0.793 0.711 0.296 0.155 0.608 0.232 0.937 0.232 0.1 0 0.234-0.007 0.403-0.021 0.168-0.014 0.337-0.036 0.506-0.068 0.168-0.032 0.33-0.075 0.485-0.13 0.155-0.055 0.27-0.132 0.342-0.232v-2.488h-1.709v-1.121H39.7z"/>
|
||||||
<path android:fillColor="#ffffff" android:pathData="m21.6265,42.65 l0,7.848c0,0.474 -0.087,0.873 -0.26,1.196 -0.173,0.323 -0.406,0.583 -0.697,0.779 -0.292,0.196 -0.627,0.333 -1.005,0.41C19.2855,52.961 18.8965,53 18.4955,53 18.2945,53 18.0595,52.979 17.7915,52.938 17.5225,52.897 17.2445,52.834 16.9575,52.747 16.6705,52.66 16.3945,52.562 16.1305,52.453 15.8655,52.344 15.6425,52.221 15.4605,52.084l0.697,-1.107c0.091,0.063 0.221,0.13 0.39,0.198 0.168,0.068 0.353,0.132 0.554,0.191 0.2,0.06 0.41,0.111 0.629,0.157 0.219,0.046 0.424,0.068 0.615,0.068 0.483,0 0.868,-0.094 1.155,-0.28 0.287,-0.186 0.439,-0.504 0.458,-0.95l0,-7.711 1.668,0z"/>
|
|
||||||
<path android:fillColor="#ffffff" android:pathData="m25.7145,52.932 l-1.641,0 0,-10.077 2.898,0c0.428,0 0.852,0.068 1.271,0.205 0.419,0.137 0.795,0.342 1.128,0.615 0.333,0.273 0.602,0.604 0.807,0.991 0.205,0.387 0.308,0.822 0.308,1.306 0,0.511 -0.087,0.973 -0.26,1.388 -0.173,0.415 -0.415,0.764 -0.725,1.046 -0.31,0.282 -0.684,0.501 -1.121,0.656 -0.437,0.155 -0.921,0.232 -1.449,0.232l-1.217,0 0,3.638zM25.7145,44.1 L25.7145,48.092 27.2185,48.092c0.2,0 0.398,-0.034 0.595,-0.103 0.196,-0.068 0.376,-0.18 0.54,-0.335 0.164,-0.155 0.296,-0.371 0.396,-0.649 0.1,-0.278 0.15,-0.622 0.15,-1.032 0,-0.164 -0.023,-0.354 -0.068,-0.567 -0.046,-0.214 -0.139,-0.419 -0.28,-0.615 -0.142,-0.196 -0.34,-0.36 -0.595,-0.492C27.7005,44.166 27.3635,44.1 26.9445,44.1l-1.23,0z"/>
|
|
||||||
<path android:fillColor="#ffffff" android:pathData="m39.7005,47.736 l0,3.896c-0.21,0.265 -0.444,0.48 -0.704,0.649 -0.26,0.169 -0.533,0.308 -0.82,0.417 -0.287,0.109 -0.583,0.187 -0.889,0.232 -0.306,0.048 -0.608,0.07 -0.909,0.07 -0.602,0 -1.155,-0.109 -1.661,-0.328 -0.506,-0.219 -0.948,-0.542 -1.326,-0.971 -0.378,-0.429 -0.675,-0.966 -0.889,-1.613 -0.214,-0.647 -0.321,-1.395 -0.321,-2.242 0,-0.847 0.107,-1.593 0.321,-2.235 0.214,-0.643 0.51,-1.178 0.889,-1.606 0.378,-0.429 0.822,-0.754 1.333,-0.978 0.51,-0.224 1.062,-0.335 1.654,-0.335 0.547,0 1.057,0.091 1.531,0.273 0.474,0.183 0.897,0.456 1.271,0.82l-1.135,1.012c-0.219,-0.265 -0.47,-0.456 -0.752,-0.574 -0.283,-0.118 -0.574,-0.178 -0.875,-0.178 -0.337,0 -0.659,0.063 -0.964,0.191 -0.306,0.128 -0.579,0.344 -0.82,0.649 -0.242,0.306 -0.431,0.699 -0.567,1.183 -0.136,0.484 -0.21,1.075 -0.219,1.777 0.009,0.684 0.08,1.276 0.212,1.777 0.132,0.501 0.314,0.911 0.547,1.23 0.233,0.319 0.497,0.556 0.793,0.711 0.296,0.155 0.608,0.232 0.937,0.232 0.1,0 0.234,-0.007 0.403,-0.021 0.168,-0.014 0.337,-0.036 0.506,-0.068 0.168,-0.032 0.33,-0.075 0.485,-0.13 0.155,-0.055 0.269,-0.132 0.342,-0.232l0,-2.488 -1.709,0 0,-1.121 3.336,0z"/>
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|