是的,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
的值,你可以控制視圖是否應根據其內容自動調整邊界。