这是我的问题。我已经在相关的.xml文件中定义了自定义主题和样式,以便自定义各种视图。以下是一些代码摘录:
themes.xml:
...
<style name="Legacy" parent="android:Theme.NoTitleBar">
<item name="android:buttonStyle">@style/Legacy.Button</item>
...
</style>
styles.xml:
...
<style name="Legacy.Button" parent="@android:style/Widget.Button">
<item name="android:textColor">#ffffff</item>
<item name="android:background">@drawable/button_selector_blue</item>
<item name="android:textSize">15dp</item>
</style>
假设我将应用程序的主题设置为Legacy。如果我在布局中使用按钮,它将获得我的自定义默认参数(白色文本,背景为@drawable/Button_selector_blue,等等)。
现在,假设我想保留这些参数以适应文本大小:我想要一些文本大小更大的按钮,这些按钮将在attrs.xml:中的titleSize属性中定义
...
<attr name="titleSize" format="reference|dimension" />
以及为我的themes.xml文件中的每个主题设置了哪个值。
所以我的布局会包含这样的内容:
<Button
android:id="@+idmyButtonId"
android:drawableRight="@drawable/aDrawable"
android:text="@string/someText"
android:textSize="?titleSize"
android:layout_width="fill_parent" android:layout_height="wrap_content">
</Button>
启动我的应用程序时,我收到以下错误:java.lang.UnsupportedOperationException:无法转换为维度:type=0x2
所以我似乎无法使用属性来调整自定义样式——至少不能这样。这样的事情可能吗?如果没有,你会用什么来达到这样的结果?
我想让用户能够在不同的主题中进行选择,这样我就不能只定义一个附加的ButtonWithLargeText样式并直接在我的布局中使用它。
谢谢你的帮助!
我终于开始工作了。我没有在attrs.xml中定义标题的大小,而是使用了dimens.xml
<Button
android:id="@+idmyButtonId"
android:drawableRight="@drawable/aDrawable"
android:text="@string/someText"
android:textSize="@dimen/titleSize"
android:layout_width="fill_parent" android:layout_height="wrap_content">
</Button>
当我在按钮上使用以下内容获得我的常规文本大小(我在styles.xml中定义了它)时:
<Button
android:id="@+id/idRegularButton"
android:text="@string/regularSizeText"
android:layout_width="wrap_content" android:layout_height="wrap_content">
</Button>