我想使用变量在drawable
中指定dp
的宽度/高度
赞:
<dp name="width">30</dp>
使用width
时:
android:layout_width=width
就像说android:layout_width="30dp"
有什么办法吗?
答案 0 :(得分:8)
在dp
中创建您的dimens.xml
值,如下所示:
<resources>
<!-- Default screen margins, per the Android Design guidelines. -->
<dimen name="width">16dp</dimen>
</resources>
并使用
<ImageView
android:layout_width="@dimen/width"
android:layout_height="match_parent" />