android:theme设置宽度随内容撑开
时间: 2024-03-09 22:47:54 浏览: 47
Android系统自带样式 (android:theme)
您可以使用 `wrap_content` 属性来设置宽度随内容撑开。这可以在 XML 中实现,如下所示:
```xml
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
android:theme="@style/ThemeOverlay.AppCompat.Light" />
```
在上面的示例中,按钮的宽度将根据按钮的文本内容自动调整。请注意,`android:theme` 属性用于设置按钮的主题,而不是设置宽度。
阅读全文