mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-26 07:00:02 +01:00
fix warnings
Signed-off-by: parneet-guraya <gurayaparneet@gmail.com>
This commit is contained in:
parent
bb81da23a1
commit
665711afa5
@ -62,10 +62,12 @@ class FullScreenImageActivity : AppCompatActivity() {
|
||||
}
|
||||
|
||||
override fun onOptionsItemSelected(item: MenuItem): Boolean {
|
||||
return if (item.itemId == android.R.id.home) {
|
||||
return when (item.itemId) {
|
||||
android.R.id.home -> {
|
||||
onBackPressedDispatcher.onBackPressed()
|
||||
true
|
||||
} else if (item.itemId == R.id.share) {
|
||||
}
|
||||
R.id.share -> {
|
||||
val shareUri = FileProvider.getUriForFile(
|
||||
this,
|
||||
BuildConfig.APPLICATION_ID,
|
||||
@ -81,10 +83,12 @@ class FullScreenImageActivity : AppCompatActivity() {
|
||||
startActivity(Intent.createChooser(shareIntent, resources.getText(R.string.send_to)))
|
||||
|
||||
true
|
||||
} else {
|
||||
}
|
||||
else -> {
|
||||
super.onOptionsItemSelected(item)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
override fun onCreate(savedInstanceState: Bundle?) {
|
||||
super.onCreate(savedInstanceState)
|
||||
@ -96,7 +100,7 @@ class FullScreenImageActivity : AppCompatActivity() {
|
||||
WindowCompat.setDecorFitsSystemWindows(window, false)
|
||||
initWindowInsetsController()
|
||||
applyWindowInsets()
|
||||
binding.photoView.setOnPhotoTapListener { view, x, y ->
|
||||
binding.photoView.setOnPhotoTapListener { _, _, _ ->
|
||||
toggleFullscreen()
|
||||
}
|
||||
binding.photoView.setOnOutsidePhotoTapListener {
|
||||
@ -185,7 +189,7 @@ class FullScreenImageActivity : AppCompatActivity() {
|
||||
}
|
||||
|
||||
companion object {
|
||||
private val TAG = "FullScreenImageActivity"
|
||||
private const val TAG = "FullScreenImageActivity"
|
||||
private const val HUNDRED_MB = 100 * 1024 * 1024
|
||||
private const val MAX_SCALE = 6.0f
|
||||
private const val MEDIUM_SCALE = 2.45f
|
||||
|
@ -73,10 +73,12 @@ class FullScreenMediaActivity : AppCompatActivity() {
|
||||
}
|
||||
|
||||
override fun onOptionsItemSelected(item: MenuItem): Boolean {
|
||||
return if (item.itemId == android.R.id.home) {
|
||||
return when (item.itemId) {
|
||||
android.R.id.home -> {
|
||||
onBackPressedDispatcher.onBackPressed()
|
||||
true
|
||||
} else if (item.itemId == R.id.share) {
|
||||
}
|
||||
R.id.share -> {
|
||||
val shareUri = FileProvider.getUriForFile(
|
||||
this,
|
||||
BuildConfig.APPLICATION_ID,
|
||||
@ -92,10 +94,12 @@ class FullScreenMediaActivity : AppCompatActivity() {
|
||||
startActivity(Intent.createChooser(shareIntent, resources.getText(R.string.send_to)))
|
||||
|
||||
true
|
||||
} else {
|
||||
}
|
||||
else -> {
|
||||
super.onOptionsItemSelected(item)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@OptIn(UnstableApi::class)
|
||||
override fun onCreate(savedInstanceState: Bundle?) {
|
||||
|
Loading…
Reference in New Issue
Block a user