mirror of
https://github.com/element-hq/element-android
synced 2024-11-28 13:38:49 +03:00
Handle rich content from app (WIP not compiling)
This commit is contained in:
parent
8e3234d188
commit
2c8cd89533
4 changed files with 58 additions and 3 deletions
|
@ -0,0 +1,55 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2019 New Vector Ltd
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
package im.vector.riotx.features.home.room.detail.composer
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import android.os.Build
|
||||||
|
import android.util.AttributeSet
|
||||||
|
import android.view.inputmethod.EditorInfo
|
||||||
|
import android.view.inputmethod.InputConnection
|
||||||
|
import androidx.appcompat.widget.AppCompatEditText
|
||||||
|
import androidx.core.view.inputmethod.EditorInfoCompat
|
||||||
|
import androidx.core.view.inputmethod.InputConnectionCompat
|
||||||
|
|
||||||
|
class TextComposerEditText @JvmOverloads constructor(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0)
|
||||||
|
: AppCompatEditText(context, attrs, defStyleAttr) {
|
||||||
|
|
||||||
|
override fun onCreateInputConnection(editorInfo: EditorInfo): InputConnection {
|
||||||
|
val ic: InputConnection = super.onCreateInputConnection(editorInfo)
|
||||||
|
EditorInfoCompat.setContentMimeTypes(editorInfo, arrayOf("image/png"))
|
||||||
|
|
||||||
|
val callback =
|
||||||
|
InputConnectionCompat.OnCommitContentListener { inputContentInfo, flags, opts ->
|
||||||
|
val lacksPermission = (flags and
|
||||||
|
InputConnectionCompat.INPUT_CONTENT_GRANT_READ_URI_PERMISSION) != 0
|
||||||
|
// read and display inputContentInfo asynchronously
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N_MR1 && lacksPermission) {
|
||||||
|
try {
|
||||||
|
inputContentInfo.requestPermission()
|
||||||
|
} catch (e: Exception) {
|
||||||
|
return@OnCommitContentListener false // return false if failed
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// read and display inputContentInfo asynchronously.
|
||||||
|
// call inputContentInfo.releasePermission() as needed.
|
||||||
|
true // return true if succeeded
|
||||||
|
}
|
||||||
|
return InputConnectionCompat.createWrapper(ic, editorInfo, callback)
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -143,7 +143,7 @@
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintStart_toEndOf="@id/attachmentButton" />
|
app:layout_constraintStart_toEndOf="@id/attachmentButton" />
|
||||||
|
|
||||||
<EditText
|
<im.vector.riotx.features.home.room.detail.composer.TextComposerEditText
|
||||||
android:id="@+id/composerEditText"
|
android:id="@+id/composerEditText"
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
|
|
|
@ -153,7 +153,7 @@
|
||||||
app:layout_constraintTop_toBottomOf="@id/composer_preview_barrier"
|
app:layout_constraintTop_toBottomOf="@id/composer_preview_barrier"
|
||||||
app:layout_constraintVertical_bias="1" />
|
app:layout_constraintVertical_bias="1" />
|
||||||
|
|
||||||
<EditText
|
<im.vector.riotx.features.home.room.detail.composer.TextComposerEditText
|
||||||
android:id="@+id/composerEditText"
|
android:id="@+id/composerEditText"
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
|
|
|
@ -114,7 +114,7 @@
|
||||||
android:tint="?attr/colorAccent"
|
android:tint="?attr/colorAccent"
|
||||||
tools:ignore="MissingConstraints" />
|
tools:ignore="MissingConstraints" />
|
||||||
|
|
||||||
<EditText
|
<im.vector.riotx.features.home.room.detail.composer.TextComposerEditText
|
||||||
android:id="@+id/composerEditText"
|
android:id="@+id/composerEditText"
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
|
|
Loading…
Reference in a new issue