mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-29 13:53:54 +01:00
Suppressed deprecated and added TODO for lint
This commit is contained in:
parent
1cc2316660
commit
d679b4f2c7
1 changed files with 4 additions and 0 deletions
|
|
@ -23,6 +23,8 @@ class FeedbackDialog(
|
|||
private val onFeedbackSubmitCallback: OnFeedbackSubmitCallback) : Dialog(context) {
|
||||
private var _binding: DialogFeedbackBinding? = null
|
||||
private val binding get() = _binding!!
|
||||
// TODO("Remove Deprecation") //'fromHtml(String!): Spanned!' is deprecated. Deprecated in Java
|
||||
@Suppress("DEPRECATION")
|
||||
private var feedbackDestinationHtml: Spanned = Html.fromHtml(
|
||||
context.getString(R.string.feedback_destination_note))
|
||||
|
||||
|
|
@ -33,6 +35,8 @@ class FeedbackDialog(
|
|||
setContentView(binding.root)
|
||||
binding.feedbackDestination.text = feedbackDestinationHtml
|
||||
binding.feedbackDestination.movementMethod = LinkMovementMethod.getInstance()
|
||||
// TODO("DEPRECATION") // 'SOFT_INPUT_ADJUST_RESIZE: Int' is deprecated. Deprecated in Java
|
||||
@Suppress("DEPRECATION")
|
||||
window?.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE)
|
||||
binding.btnSubmitFeedback.setOnClickListener {
|
||||
submitFeedback()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue