如果我有很多 TextViews 作为项目标签,我想我可以将它们的所有共同点提取到一个样式中,并且在布局中只使用
<TextView style="@style/label" android:text="Foo"/>
<TextView style="@style/label" android:text="Bar"/>
风格如下:
<style name="label">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
</style>
但是当我这样做时,它在模拟器和设备上运行良好,但 Android XML 编辑器抱怨"<TextView>" does not set the required layout_height attribute.
它报告这个警告有什么原因吗?