如何在dimens.xml中定义 match_parent 标志?
<dimen name="width">match_parent</dimen>
我在这里Value equals to match_parent or fill_parent in dimens.xml?尝试了这些方法,但是没有用。
我使用Android> 27 API。
答案 0 :(得分:0)
首先创建attribs.xml:
<resources>
<item name="match_parent" type="dimen">-1</item>
</resources>
第二次使用您的调光器:
<dimen name="account_width">@dimen/match_parent</dimen>