Android在Dimens XML中定义Match_Parent

时间:2018-09-14 07:14:51

标签: android android-layout android-layoutparams

如何在dimens.xml中定义 match_parent 标志?

<dimen name="width">match_parent</dimen>

我在这里Value equals to match_parent or fill_parent in dimens.xml?尝试了这些方法,但是没有用。

我使用Android> 27 API。

1 个答案:

答案 0 :(得分:0)

首先创建attribs.xml:

<resources>
    <item name="match_parent" type="dimen">-1</item>
</resources>

第二次使用您的调光器:

  <dimen name="account_width">@dimen/match_parent</dimen>