android 怎么在xml文件
发布网友
发布时间:2022-04-28 22:07
我来回答
共1个回答
热心网友
时间:2022-06-23 18:58
使用字符串 颜色 尺寸 ,它们对应的xml 文件都位于 /res/values/目录下,
字符串资源 /res/values/strings.xml R.string
颜色资源 /res/values/colors.xml R.color
尺寸资源 /res/values/dimens.xml R.dimen\
colors.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="black_overlay">#66000000</color>
<color name="none_color">#00000000</color>
</resources>
strings.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="myservers">应用</string>
<string name="myaid">助理</string>
</resources>
dimens.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- 底部菜单 -->
<dimen name="bottom_tab_padding_drawable">0.0dip</dimen>
<dimen name="bottom_tab_padding_up">5.0dip</dimen>
<dimen name="bottom_tab_font_size">12.0dip</dimen>
<dimen name="activity_vertical_margin">16dp</dimen>
<dimen name="activity_horizontal_margin">16dp</dimen>
</resources>
在其他XML文件中使用
<TextView
android:id="@+id/login_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/black_overlay"
/>
在java文件中使用 R.color.** R.string.** R.dimen.**