作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我每天都使用 Android,我想避免 View 大小的规范。例如,如果我创建一个 TextView
,我必须分配 Height 和 Width 属性,如下所示:
<TextView
android:id="@+id/activity_lbl"
android:layout_width="wrap_content" <!-- Again -->
android:layout_height="wrap_content" <!--Again... --> />
<TextView
android:id="@+id/activity_lbl2"
android:layout_width="wrap_content" <!-- Again... -->
android:layout_height="wrap_content" <!--Again, for ever --> />
对于我创建的每个 View ,我都必须分配相同的尺寸规范。有没有办法避免它们?
最佳答案
在您将在布局文件中应用的样式中声明它,如下所示:
文件:res/values/styles.xml
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="wrapall">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
</style>
</resources>
然后像这样将它应用到您的布局中:
<TextView
android:id="@+id/activity_lbl"
style="@style/wrapall" />
<TextView
android:id="@+id/activity_lbl2"
style="@style/wrapall" />
关于android - 有没有办法避免 android 布局的尺寸规范?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21024570/
我是一名优秀的程序员,十分优秀!