问题标签 [android-compose-button]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
android - Jetpack Compose 中按钮的背景颜色
我不知道为什么我不能在Button
.
我遵循了 Compose Layout 代码实验室。
Image()中存在问题backgroundColor
和资产。
android - 如何自定义 IconButton 的颜色
我想自定义 IconButton 的颜色,而不是使用 TopAppBar 上设置的默认值,但是在android.compose.material中没有插槽 api 可以更改它。
android - 如何在单击按钮时更改按钮背景颜色
我正在尝试在 Android jetpack compose 中单击该按钮时更改按钮背景颜色。
android-view - 单击按钮后可组合消失,如果后台有 SurfaceView
这基本上是我在活动的 onCreate 函数中的设置。启动活动正常,但是一旦单击按钮,可组合的列就不再可见(无论它是没有被绘制还是隐藏在 SurfaceView 后面,我都不知道..)。
将 zIndex 修饰符添加到 AndroidView 和 Column 都没有帮助。此外,问题(或者甚至可能是 Jetpack Compose 中的错误?)只能通过 AndroidView 内的 SurfaceView 观察到,其他视图似乎正在工作。
android - setting button background color bug?
I've tried to set the background color of buttons with custom hex values:
colors.xml:
but that results in:
and (as you can guess) isn't either the color nor the way I would like it to look like I've found other way to change the background color ("backgroundColor = Color(0xFFF67070)")
but this bit of code looks confusing, how can I change the background color of that button using resources?
thanks in advance :)
android - 如何从文本按钮中删除填充?
我正在尝试从中删除填充,TextButton
但它不起作用。
我也尝试设置height
and size
inModifier
属性,但填充仍然存在
android - 防止在Android Compose中重复单击按钮的好方法是什么?
假设您在单击按钮时调用注册 API。
获取 API 响应并转到主屏幕。
在这种情况下,当快速重复按下按钮时,会多次调用 api。
在使用 compose 之前,我使用 Rxjava 在一定程度上解决了这个问题。
compose如何解决这个问题?