2018-02-12 22:04:18 +01:00
|
|
|
/* Copyright 2017 Andrew Dawson
|
|
|
|
*
|
|
|
|
* This file is a part of Tusky.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it under the terms of the
|
|
|
|
* GNU General Public License as published by the Free Software Foundation; either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
|
|
|
|
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
|
|
|
* Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with Tusky; if not,
|
|
|
|
* see <http://www.gnu.org/licenses>. */
|
|
|
|
|
|
|
|
package com.keylesspalace.tusky
|
|
|
|
|
|
|
|
import android.Manifest
|
|
|
|
import android.app.Activity
|
2018-12-17 15:25:35 +01:00
|
|
|
import androidx.lifecycle.LiveData
|
|
|
|
import androidx.lifecycle.Observer
|
|
|
|
import androidx.lifecycle.ViewModelProviders
|
2018-02-12 22:04:18 +01:00
|
|
|
import android.content.Intent
|
|
|
|
import android.content.pm.PackageManager
|
|
|
|
import android.graphics.Bitmap
|
2018-08-15 20:47:09 +02:00
|
|
|
import android.graphics.Color
|
2018-02-12 22:04:18 +01:00
|
|
|
import android.net.Uri
|
|
|
|
import android.os.Bundle
|
2018-12-17 15:25:35 +01:00
|
|
|
import com.google.android.material.snackbar.Snackbar
|
|
|
|
import androidx.core.app.ActivityCompat
|
|
|
|
import androidx.core.content.ContextCompat
|
|
|
|
import androidx.recyclerview.widget.LinearLayoutManager
|
2018-02-12 22:04:18 +01:00
|
|
|
import android.view.Menu
|
|
|
|
import android.view.MenuItem
|
|
|
|
import android.view.View
|
2018-08-15 20:47:09 +02:00
|
|
|
import android.widget.ImageView
|
2019-04-16 21:39:12 +02:00
|
|
|
import com.bumptech.glide.Glide
|
2019-05-26 08:46:08 +02:00
|
|
|
import com.bumptech.glide.load.resource.bitmap.FitCenter
|
|
|
|
import com.bumptech.glide.load.resource.bitmap.RoundedCorners
|
2018-08-15 20:47:09 +02:00
|
|
|
import com.keylesspalace.tusky.adapter.AccountFieldEditAdapter
|
2018-03-27 19:47:00 +02:00
|
|
|
import com.keylesspalace.tusky.di.Injectable
|
2018-08-15 20:47:09 +02:00
|
|
|
import com.keylesspalace.tusky.di.ViewModelFactory
|
2018-02-12 22:04:18 +01:00
|
|
|
import com.keylesspalace.tusky.entity.Account
|
2019-08-04 20:25:07 +02:00
|
|
|
import com.keylesspalace.tusky.entity.Instance
|
2018-08-15 20:47:09 +02:00
|
|
|
import com.keylesspalace.tusky.util.*
|
|
|
|
import com.keylesspalace.tusky.viewmodel.EditProfileViewModel
|
|
|
|
import com.mikepenz.google_material_typeface_library.GoogleMaterial
|
|
|
|
import com.mikepenz.iconics.IconicsDrawable
|
2018-02-12 22:04:18 +01:00
|
|
|
import com.theartofdev.edmodo.cropper.CropImage
|
|
|
|
import kotlinx.android.synthetic.main.activity_edit_profile.*
|
|
|
|
import kotlinx.android.synthetic.main.toolbar_basic.*
|
2018-03-27 19:47:00 +02:00
|
|
|
import javax.inject.Inject
|
2018-02-12 22:04:18 +01:00
|
|
|
|
2018-08-15 20:47:09 +02:00
|
|
|
class EditProfileActivity : BaseActivity(), Injectable {
|
2018-02-12 22:04:18 +01:00
|
|
|
|
2018-08-15 20:47:09 +02:00
|
|
|
companion object {
|
|
|
|
const val AVATAR_SIZE = 400
|
2018-09-06 22:48:19 +02:00
|
|
|
const val HEADER_WIDTH = 1500
|
|
|
|
const val HEADER_HEIGHT = 500
|
2018-02-12 22:04:18 +01:00
|
|
|
|
2018-08-15 20:47:09 +02:00
|
|
|
private const val AVATAR_PICK_RESULT = 1
|
|
|
|
private const val HEADER_PICK_RESULT = 2
|
|
|
|
private const val PERMISSIONS_REQUEST_READ_EXTERNAL_STORAGE = 1
|
|
|
|
private const val MAX_ACCOUNT_FIELDS = 4
|
2018-12-06 22:34:36 +01:00
|
|
|
|
|
|
|
private const val BUNDLE_CURRENTLY_PICKING = "BUNDLE_CURRENTLY_PICKING"
|
2018-08-15 20:47:09 +02:00
|
|
|
}
|
2018-02-12 22:04:18 +01:00
|
|
|
|
2018-08-15 20:47:09 +02:00
|
|
|
@Inject
|
|
|
|
lateinit var viewModelFactory: ViewModelFactory
|
2018-02-12 22:04:18 +01:00
|
|
|
|
2018-08-15 20:47:09 +02:00
|
|
|
private lateinit var viewModel: EditProfileViewModel
|
2018-02-12 22:04:18 +01:00
|
|
|
|
|
|
|
private var currentlyPicking: PickType = PickType.NOTHING
|
|
|
|
|
2018-08-15 20:47:09 +02:00
|
|
|
private val accountFieldEditAdapter = AccountFieldEditAdapter()
|
2018-03-27 19:47:00 +02:00
|
|
|
|
2018-02-12 22:04:18 +01:00
|
|
|
private enum class PickType {
|
|
|
|
NOTHING,
|
|
|
|
AVATAR,
|
|
|
|
HEADER
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun onCreate(savedInstanceState: Bundle?) {
|
|
|
|
super.onCreate(savedInstanceState)
|
2018-12-06 22:34:36 +01:00
|
|
|
|
|
|
|
savedInstanceState?.getString(BUNDLE_CURRENTLY_PICKING)?.let {
|
|
|
|
currentlyPicking = PickType.valueOf(it)
|
|
|
|
}
|
|
|
|
|
2018-02-12 22:04:18 +01:00
|
|
|
setContentView(R.layout.activity_edit_profile)
|
|
|
|
|
2018-08-15 20:47:09 +02:00
|
|
|
viewModel = ViewModelProviders.of(this, viewModelFactory)[EditProfileViewModel::class.java]
|
|
|
|
|
2018-02-12 22:04:18 +01:00
|
|
|
setSupportActionBar(toolbar)
|
|
|
|
supportActionBar?.run {
|
|
|
|
setTitle(R.string.title_edit_profile)
|
2018-08-15 20:47:09 +02:00
|
|
|
setDisplayHomeAsUpEnabled(true)
|
|
|
|
setDisplayShowHomeEnabled(true)
|
2018-02-12 22:04:18 +01:00
|
|
|
}
|
|
|
|
|
2018-08-15 20:47:09 +02:00
|
|
|
avatarButton.setOnClickListener { onMediaPick(PickType.AVATAR) }
|
|
|
|
headerButton.setOnClickListener { onMediaPick(PickType.HEADER) }
|
|
|
|
|
|
|
|
fieldList.layoutManager = LinearLayoutManager(this)
|
|
|
|
fieldList.adapter = accountFieldEditAdapter
|
|
|
|
|
|
|
|
val plusDrawable = IconicsDrawable(this, GoogleMaterial.Icon.gmd_add).sizeDp(12).color(Color.WHITE)
|
|
|
|
|
2018-12-03 11:22:57 +01:00
|
|
|
addFieldButton.setCompoundDrawablesRelativeWithIntrinsicBounds(plusDrawable, null, null, null)
|
2018-08-15 20:47:09 +02:00
|
|
|
|
|
|
|
addFieldButton.setOnClickListener {
|
|
|
|
accountFieldEditAdapter.addField()
|
|
|
|
if(accountFieldEditAdapter.itemCount >= MAX_ACCOUNT_FIELDS) {
|
|
|
|
it.isEnabled = false
|
2018-02-12 22:04:18 +01:00
|
|
|
}
|
2018-08-15 20:47:09 +02:00
|
|
|
|
|
|
|
scrollView.post{
|
|
|
|
scrollView.smoothScrollTo(0, it.bottom)
|
2018-02-12 22:04:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-15 20:47:09 +02:00
|
|
|
viewModel.obtainProfile()
|
2018-02-12 22:04:18 +01:00
|
|
|
|
2018-08-15 20:47:09 +02:00
|
|
|
viewModel.profileData.observe(this, Observer<Resource<Account>> { profileRes ->
|
|
|
|
when (profileRes) {
|
|
|
|
is Success -> {
|
|
|
|
val me = profileRes.data
|
|
|
|
if (me != null) {
|
2018-02-12 22:04:18 +01:00
|
|
|
|
2018-08-15 20:47:09 +02:00
|
|
|
displayNameEditText.setText(me.displayName)
|
|
|
|
noteEditText.setText(me.source?.note)
|
|
|
|
lockedCheckBox.isChecked = me.locked
|
|
|
|
|
|
|
|
accountFieldEditAdapter.setFields(me.source?.fields ?: emptyList())
|
2018-08-20 14:49:23 +02:00
|
|
|
addFieldButton.isEnabled = me.source?.fields?.size ?: 0 < MAX_ACCOUNT_FIELDS
|
2018-08-15 20:47:09 +02:00
|
|
|
|
|
|
|
if(viewModel.avatarData.value == null) {
|
2019-04-16 21:39:12 +02:00
|
|
|
Glide.with(this)
|
2018-08-15 20:47:09 +02:00
|
|
|
.load(me.avatar)
|
|
|
|
.placeholder(R.drawable.avatar_default)
|
2019-05-26 08:46:08 +02:00
|
|
|
.transform(
|
|
|
|
FitCenter(),
|
|
|
|
RoundedCorners(resources.getDimensionPixelSize(R.dimen.avatar_radius_80dp))
|
|
|
|
)
|
2018-08-15 20:47:09 +02:00
|
|
|
.into(avatarPreview)
|
|
|
|
}
|
|
|
|
|
|
|
|
if(viewModel.headerData.value == null) {
|
2019-04-16 21:39:12 +02:00
|
|
|
Glide.with(this)
|
2018-08-15 20:47:09 +02:00
|
|
|
.load(me.header)
|
|
|
|
.into(headerPreview)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2018-02-12 22:04:18 +01:00
|
|
|
}
|
2018-08-15 20:47:09 +02:00
|
|
|
is Error -> {
|
2018-11-16 13:31:03 +01:00
|
|
|
val snackbar = Snackbar.make(avatarButton, R.string.error_generic, Snackbar.LENGTH_LONG)
|
2018-08-15 20:47:09 +02:00
|
|
|
snackbar.setAction(R.string.action_retry) {
|
|
|
|
viewModel.obtainProfile()
|
|
|
|
}
|
|
|
|
snackbar.show()
|
|
|
|
|
2018-02-12 22:04:18 +01:00
|
|
|
}
|
|
|
|
}
|
2018-08-15 20:47:09 +02:00
|
|
|
})
|
2018-02-12 22:04:18 +01:00
|
|
|
|
2019-08-04 20:25:07 +02:00
|
|
|
viewModel.obtainInstance()
|
|
|
|
viewModel.instanceData.observe(this, Observer<Resource<Instance>> { result ->
|
|
|
|
when (result) {
|
|
|
|
is Success -> {
|
|
|
|
val instance = result.data
|
|
|
|
if (instance?.maxBioChars != null && instance.maxBioChars > 0) {
|
|
|
|
noteEditTextLayout.counterMaxLength = instance.maxBioChars
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2019-05-26 08:46:08 +02:00
|
|
|
observeImage(viewModel.avatarData, avatarPreview, avatarProgressBar, true)
|
|
|
|
observeImage(viewModel.headerData, headerPreview, headerProgressBar, false)
|
2018-08-15 20:47:09 +02:00
|
|
|
|
|
|
|
viewModel.saveData.observe(this, Observer<Resource<Nothing>> {
|
|
|
|
when(it) {
|
|
|
|
is Success -> {
|
|
|
|
finish()
|
|
|
|
}
|
|
|
|
is Loading -> {
|
|
|
|
saveProgressBar.visibility = View.VISIBLE
|
|
|
|
}
|
|
|
|
is Error -> {
|
|
|
|
onSaveFailure(it.errorMessage)
|
|
|
|
}
|
2018-02-12 22:04:18 +01:00
|
|
|
}
|
|
|
|
})
|
2018-08-15 20:47:09 +02:00
|
|
|
|
2018-02-12 22:04:18 +01:00
|
|
|
}
|
|
|
|
|
2018-12-06 22:34:36 +01:00
|
|
|
override fun onSaveInstanceState(outState: Bundle) {
|
|
|
|
super.onSaveInstanceState(outState)
|
|
|
|
outState.putString(BUNDLE_CURRENTLY_PICKING, currentlyPicking.toString())
|
|
|
|
}
|
|
|
|
|
2018-08-15 20:47:09 +02:00
|
|
|
override fun onStop() {
|
|
|
|
super.onStop()
|
|
|
|
if(!isFinishing) {
|
|
|
|
viewModel.updateProfile(displayNameEditText.text.toString(),
|
|
|
|
noteEditText.text.toString(),
|
|
|
|
lockedCheckBox.isChecked,
|
|
|
|
accountFieldEditAdapter.getFieldData())
|
2018-02-12 22:04:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-26 08:46:08 +02:00
|
|
|
private fun observeImage(liveData: LiveData<Resource<Bitmap>>,
|
|
|
|
imageView: ImageView,
|
|
|
|
progressBar: View,
|
|
|
|
roundedCorners: Boolean) {
|
2018-08-15 20:47:09 +02:00
|
|
|
liveData.observe(this, Observer<Resource<Bitmap>> {
|
|
|
|
|
|
|
|
when (it) {
|
|
|
|
is Success -> {
|
2019-05-26 08:46:08 +02:00
|
|
|
val glide = Glide.with(imageView)
|
|
|
|
.load(it.data)
|
|
|
|
|
|
|
|
if (roundedCorners) {
|
|
|
|
glide.transform(
|
|
|
|
FitCenter(),
|
|
|
|
RoundedCorners(resources.getDimensionPixelSize(R.dimen.avatar_radius_80dp))
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
glide.into(imageView)
|
|
|
|
|
2018-08-15 20:47:09 +02:00
|
|
|
imageView.show()
|
|
|
|
progressBar.hide()
|
|
|
|
}
|
|
|
|
is Loading -> {
|
|
|
|
progressBar.show()
|
|
|
|
}
|
|
|
|
is Error -> {
|
|
|
|
progressBar.hide()
|
|
|
|
if(!it.consumed) {
|
|
|
|
onResizeFailure()
|
|
|
|
it.consumed = true
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
2018-02-12 22:04:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private fun onMediaPick(pickType: PickType) {
|
|
|
|
if (currentlyPicking != PickType.NOTHING) {
|
|
|
|
// Ignore inputs if another pick operation is still occurring.
|
|
|
|
return
|
|
|
|
}
|
|
|
|
currentlyPicking = pickType
|
|
|
|
if (ContextCompat.checkSelfPermission(this, Manifest.permission.READ_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) {
|
|
|
|
ActivityCompat.requestPermissions(this, arrayOf(Manifest.permission.READ_EXTERNAL_STORAGE), PERMISSIONS_REQUEST_READ_EXTERNAL_STORAGE)
|
|
|
|
} else {
|
|
|
|
initiateMediaPicking()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun onRequestPermissionsResult(requestCode: Int, permissions: Array<String>,
|
|
|
|
grantResults: IntArray) {
|
|
|
|
when (requestCode) {
|
|
|
|
PERMISSIONS_REQUEST_READ_EXTERNAL_STORAGE -> {
|
|
|
|
if (grantResults.isNotEmpty() && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
|
|
|
|
initiateMediaPicking()
|
|
|
|
} else {
|
|
|
|
endMediaPicking()
|
|
|
|
Snackbar.make(avatarButton, R.string.error_media_upload_permission, Snackbar.LENGTH_LONG).show()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private fun initiateMediaPicking() {
|
|
|
|
val intent = Intent(Intent.ACTION_GET_CONTENT)
|
|
|
|
intent.addCategory(Intent.CATEGORY_OPENABLE)
|
|
|
|
intent.type = "image/*"
|
|
|
|
when (currentlyPicking) {
|
2019-04-20 22:36:44 +02:00
|
|
|
PickType.AVATAR -> {
|
2018-02-12 22:04:18 +01:00
|
|
|
startActivityForResult(intent, AVATAR_PICK_RESULT)
|
|
|
|
}
|
2019-04-20 22:36:44 +02:00
|
|
|
PickType.HEADER -> {
|
2018-02-12 22:04:18 +01:00
|
|
|
startActivityForResult(intent, HEADER_PICK_RESULT)
|
|
|
|
}
|
2019-04-20 22:36:44 +02:00
|
|
|
PickType.NOTHING -> { /* do nothing */ }
|
2018-02-12 22:04:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun onCreateOptionsMenu(menu: Menu): Boolean {
|
|
|
|
menuInflater.inflate(R.menu.edit_profile_toolbar, menu)
|
|
|
|
return super.onCreateOptionsMenu(menu)
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun onOptionsItemSelected(item: MenuItem): Boolean {
|
|
|
|
when (item.itemId) {
|
|
|
|
android.R.id.home -> {
|
|
|
|
onBackPressed()
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
R.id.action_save -> {
|
|
|
|
save()
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return super.onOptionsItemSelected(item)
|
|
|
|
}
|
|
|
|
|
|
|
|
private fun save() {
|
2018-08-15 20:47:09 +02:00
|
|
|
if (currentlyPicking != PickType.NOTHING) {
|
|
|
|
return
|
2018-02-12 22:04:18 +01:00
|
|
|
}
|
|
|
|
|
2018-08-15 20:47:09 +02:00
|
|
|
viewModel.save(displayNameEditText.text.toString(),
|
|
|
|
noteEditText.text.toString(),
|
|
|
|
lockedCheckBox.isChecked,
|
|
|
|
accountFieldEditAdapter.getFieldData(),
|
|
|
|
this)
|
2018-02-12 22:04:18 +01:00
|
|
|
}
|
|
|
|
|
2018-08-15 20:47:09 +02:00
|
|
|
private fun onSaveFailure(msg: String?) {
|
|
|
|
val errorMsg = msg ?: getString(R.string.error_media_upload_sending)
|
|
|
|
Snackbar.make(avatarButton, errorMsg, Snackbar.LENGTH_LONG).show()
|
2018-02-12 22:04:18 +01:00
|
|
|
saveProgressBar.visibility = View.GONE
|
|
|
|
}
|
|
|
|
|
|
|
|
private fun beginMediaPicking() {
|
|
|
|
when (currentlyPicking) {
|
2019-04-20 22:36:44 +02:00
|
|
|
PickType.AVATAR -> {
|
2018-02-12 22:04:18 +01:00
|
|
|
avatarProgressBar.visibility = View.VISIBLE
|
|
|
|
avatarPreview.visibility = View.INVISIBLE
|
|
|
|
avatarButton.setImageDrawable(null)
|
|
|
|
|
|
|
|
}
|
2019-04-20 22:36:44 +02:00
|
|
|
PickType.HEADER -> {
|
2018-02-12 22:04:18 +01:00
|
|
|
headerProgressBar.visibility = View.VISIBLE
|
|
|
|
headerPreview.visibility = View.INVISIBLE
|
|
|
|
headerButton.setImageDrawable(null)
|
|
|
|
}
|
2019-04-20 22:36:44 +02:00
|
|
|
PickType.NOTHING -> { /* do nothing */ }
|
2018-02-12 22:04:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private fun endMediaPicking() {
|
|
|
|
avatarProgressBar.visibility = View.GONE
|
|
|
|
headerProgressBar.visibility = View.GONE
|
|
|
|
|
|
|
|
currentlyPicking = PickType.NOTHING
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
|
|
|
|
super.onActivityResult(requestCode, resultCode, data)
|
|
|
|
when (requestCode) {
|
|
|
|
AVATAR_PICK_RESULT -> {
|
|
|
|
if (resultCode == Activity.RESULT_OK && data != null) {
|
|
|
|
CropImage.activity(data.data)
|
|
|
|
.setInitialCropWindowPaddingRatio(0f)
|
2018-08-15 20:47:09 +02:00
|
|
|
.setOutputCompressFormat(Bitmap.CompressFormat.PNG)
|
2018-02-12 22:04:18 +01:00
|
|
|
.setAspectRatio(AVATAR_SIZE, AVATAR_SIZE)
|
|
|
|
.start(this)
|
|
|
|
} else {
|
|
|
|
endMediaPicking()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
HEADER_PICK_RESULT -> {
|
|
|
|
if (resultCode == Activity.RESULT_OK && data != null) {
|
|
|
|
CropImage.activity(data.data)
|
|
|
|
.setInitialCropWindowPaddingRatio(0f)
|
2018-08-15 20:47:09 +02:00
|
|
|
.setOutputCompressFormat(Bitmap.CompressFormat.PNG)
|
2018-02-12 22:04:18 +01:00
|
|
|
.setAspectRatio(HEADER_WIDTH, HEADER_HEIGHT)
|
|
|
|
.start(this)
|
|
|
|
} else {
|
|
|
|
endMediaPicking()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
CropImage.CROP_IMAGE_ACTIVITY_REQUEST_CODE -> {
|
|
|
|
val result = CropImage.getActivityResult(data)
|
|
|
|
when (resultCode) {
|
|
|
|
Activity.RESULT_OK -> beginResize(result.uri)
|
|
|
|
CropImage.CROP_IMAGE_ACTIVITY_RESULT_ERROR_CODE -> onResizeFailure()
|
|
|
|
else -> endMediaPicking()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private fun beginResize(uri: Uri) {
|
|
|
|
beginMediaPicking()
|
2018-08-15 20:47:09 +02:00
|
|
|
|
2018-02-12 22:04:18 +01:00
|
|
|
when (currentlyPicking) {
|
2019-04-20 22:36:44 +02:00
|
|
|
PickType.AVATAR -> {
|
2018-08-15 20:47:09 +02:00
|
|
|
viewModel.newAvatar(uri, this)
|
2018-02-12 22:04:18 +01:00
|
|
|
}
|
2019-04-20 22:36:44 +02:00
|
|
|
PickType.HEADER -> {
|
2018-08-15 20:47:09 +02:00
|
|
|
viewModel.newHeader(uri, this)
|
2018-02-12 22:04:18 +01:00
|
|
|
}
|
|
|
|
else -> {
|
|
|
|
throw AssertionError("PickType not set.")
|
|
|
|
}
|
|
|
|
}
|
2018-04-22 14:11:26 +02:00
|
|
|
|
2018-08-15 20:47:09 +02:00
|
|
|
currentlyPicking = PickType.NOTHING
|
2018-02-12 22:04:18 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
private fun onResizeFailure() {
|
|
|
|
Snackbar.make(avatarButton, R.string.error_media_upload_sending, Snackbar.LENGTH_LONG).show()
|
|
|
|
endMediaPicking()
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|