大约有 930 项符合查询结果(耗时:0.0118秒) [XML]
How to make a edittext box in a dialog
...n parent layout and then add edittext in that layout.
This is my working kotlin code...
val alert = AlertDialog.Builder(context!!)
val edittext = EditText(context!!)
edittext.hint = "Enter Name"
edittext.maxLines = 1
val layout = FrameLayout(context!!)
//set padding in parent layout
layout.se...
Formula px to dp, dp to px android
...
nice. should be marked as best answer. kotlin: private fun dpToPx(dp: Int) = (dp * Resources.getSystem().displayMetrics.density).toInt()
– Raphael C
Jan 16 at 14:13
...
Remove underline from links in TextView - Android
...
Here is Kotlin extension function:
fun TextView.removeLinksUnderline() {
val spannable = SpannableString(text)
for (u in spannable.getSpans(0, spannable.length, URLSpan::class.java)) {
spannable.setSpan(object : URLS...
Google Gson - deserialize list object? (generic type)
... @leguminator did you import TypeToken correct? and you are using java or kotlin. I will try to test again
– Phan Van Linh
Feb 20 at 10:00
...
Circular gradient in android
...need more control, for example multiple colors and positioning. Here is my Kotlin snippet to create a drawable radial gradient:
object ShaderUtils {
private class RadialShaderFactory(private val colors: IntArray, val positionX: Float,
val positionY: Float, ...
java.lang.NoClassDefFoundError: Could not initialize class XXX
...
How to do this in kotlin?
– Marlon
Oct 11 '19 at 8:12
Thanks ...
How to increase heap size of an android application?
...
@NitZRobotKoder No. The heap size is for the Java/Kotlin world, where you can get OOM exception if you use too much. For the rest, it's the native memory.
– android developer
Dec 12 '17 at 8:36
...
Android TextView Justify Text
...tification (new typographic alignment) itself.
You just need to do this:
Kotlin
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
textView.justificationMode = JUSTIFICATION_MODE_INTER_WORD
}
Java
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
textView.setJustificationM...
Getting activity from context in android
...
And in Kotlin:
tailrec fun Context.activity(): Activity? = when {
this is Activity -> this
else -> (this as? ContextWrapper)?.baseContext?.activity()
}
...
Pythonic way to combine FOR loop and IF statement
...nic results. I can code functionally in every other language I use (scala, kotlin, javascript, R, swift, ..) but difficult/awkward in python
– javadba
May 30 at 16:20
...
