反编译styleable的问题

源码:

attrs.xml

<declare-styleable name="MultiPaneChallengeLayout_Layout">

      <attr name="layout_centerWithinArea" format="float" />

<attr name="layout_maxWidth" format="dimension" />
        <attr name="layout_maxHeight" />
</declare-styleable>

反编译:

attrs.xml

    <attr name="layout_maxHeight" format="dimension" />
    <attr name="layout_centerWithinArea" format="float" />
    <attr name="layout_maxWidth" format="dimension" />

public.xml

    <public type="attr" name="layout_maxHeight" id="0x7f010009" />
    <public type="attr" name="layout_centerWithinArea" id="0x7f01000a" />
    <public type="attr" name="layout_maxWidth" id="0x7f01000b" />

R$styleable.smali

.field public static final MultiPaneChallengeLayout_Layout:[I
.field public static final MultiPaneChallengeLayout_Layout_layout_centerWithinArea:I = 0x1
.field public static final MultiPaneChallengeLayout_Layout_layout_maxHeight:I = 0x0
.field public static final MultiPaneChallengeLayout_Layout_layout_maxWidth:I = 0x2


你可能感兴趣的:(反编译styleable的问题)