是的,adjustViewBounds
可以自定义。adjustViewBounds
是 Android 中一个非常有用的属性,它用于自动调整视图的边界以适应其内容。默认情况下,这个属性值为 true
,这意味着视图会自动调整其宽度和高度以适应其内容。
如果你想要自定义 adjustViewBounds
的行为,可以通过以下方法实现:
adjustViewBounds
属性为 true
或 false
。例如:<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="true" />
adjustViewBounds
属性。例如:Java:
TextView textView = findViewById(R.id.textView);
textView.setAdjustViewBounds(true);
Kotlin:
val textView = findViewById<TextView>(R.id.textView)
textView.adjustViewBounds = true
通过自定义 adjustViewBounds
的值,你可以控制视图是否应根据其内容自动调整边界。