如何提取Theme.DeviceDefault.Light.NoActionBar的源代码?

时间:2016-09-12 11:48:38

标签: android android-styles

如何提取或查看Theme.DeviceDefault.Light.NoActionBar的源代码?我需要这个用于samsumg galaxy note 3,他们可以通过任何方式查看设备中的定制内容吗?

2 个答案:

答案 0 :(得分:0)

基本上答案必须是:你不能。 样式的名称暗示它是特定于设备的。每个设备制造商都决定这种风格的内容。

答案 1 :(得分:0)

这是一个人想要的,但它只是链接到Material Light NoActionBar主题

<!-- Variant of {@link #Theme_DeviceDefault_Light} with no action bar -->
<style name="Theme.DeviceDefault.Light.NoActionBar" parent="Theme.Material.Light.NoActionBar"  />

看起来像这样

<!-- Variant of the material (light) theme with no action bar. -->
<style name="Theme.Material.Light.NoActionBar">
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>
</style>

Github Marshmallow MR2 - core/res/values