0

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

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

我尝试了这里的方法Value equals to match_parent or fill_parent in dimens.xml? 但没有一个工作。

我正在使用 Android > 27 API。

4

1 回答 1

0

首先创建attribs.xml:

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

第二次使用你的尺寸:

  <dimen name="account_width">@dimen/match_parent</dimen>
于 2020-04-27T09:44:09.550 回答