我有一个用AbstractComposeView
Package 的组合视图,要在XML中使用。如何设置这个视图的值。
例如,
- 可组合和抽象组合视图**
class MyComposeView @JvmOverloads constructor(
context: Context,
attrs: AttributeSet? = null,
defStyleAttr: Int = 0,
) : AbstractComposeView(context, attrs, defStyleAttr) {
private var titleText by mutableStateOf("Default text")
var titleValue: String
get() = titleText
set(value) {
titleText = value
}
@Composable
override fun Content() {
ListItem(
text = titleText,
)
}
}
@Composable
fun ListItem(
text: String,
) {
Row(
modifier = Modifier,
) {
Text(
text = text,
)
}
}
- 可扩展标记语言**
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ViewActivity">
<com.example.android.MyComposeView
android:id="@+id/my_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
- 活动**
findViewById<MyComposeView>(R.id.my_view).titleValue = "From Activity"
这给出了预期的结果,但是如何在不对活动进行任何代码更改的情况下实现相同的结果呢?
类似app:titleText
的东西?(尝试过这个没有用)。
1条答案
按热度按时间xghobddn1#
对于常规的自定义视图,您将需要依赖于属性集。
首先在
res > values > attrs.xml
中创建它类似于:然后将其应用到MyComposeView类中
参考文献:https://developer.android.com/develop/ui/views/layout/custom-views/create-view#customattr
https://developer.android.com/develop/ui/views/layout/custom-views/create-view#applyattr