android:layout_width = "42dip"
android:layout_height = "42dip"
android:background = "@drawable/图片ID|#00FF00"
/>
自定义属性必须和自定义的view结合使用,即是自定义的属性就是为自定义的控件服务的。而自定义样式或主题是将项目中常用的系统属性抽取出来,减少代码的重复。样式用于view主题用于Activity或Application。
一,自定义属性时命名空间中res与res-auto的区别
通常我们在布局文件中使用自定义属性的时候会这样写xmlns:app="http://schemas.android.com/apk/res/包路径"但如果你当前工程是做为lib使用,那么你如上所写 ,会出现找不到自定义属性的错误 。这时候你就必须 写成xmlns:app="http://schemas.android.com/apk/res-auto/包路径"
Android 可以自定义View,同时我们也可以为我们的自定义的View添加自定义属性,对系统的控件实现扩展,使用方式如同系统控件在xml布局文件中的使用形式。
扩展方式:自定义属性,然后再布局文件中使用这些属性,在自定义View中获取这些自定义属性的值。
具体方式如下:
1.定义属性:在res/values目录下创建attrs.xml文件
其中name为该属性集的名字,在第三部获取属性值时roundWidth = a.getDimensionPixelSize(R.styleable.RoundAngleImageView_roundWidth, roundWidth);需要在每个参数名前面添加这个name和下划线(如:RoundAngleImageView_roundWidth)。
属性的类型即format有string , integer , dimension , reference , color , enum.,如果可以同时使用不同的类型。用”|“分割。
枚举类型的设置略有不同
2.在布局文件中使用属性
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="@drawable/control_bar"
android:gravity="center"
app:roundWidth = "5dp"
app:roundHeight="10dp"/>
首先需要
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns后边的app这个名字可以任意取,属性设置就是使用这个名字开头。
3. 在自定义组件中的构造函数中获取设置的属性值
public RoundCornerImageView(Context context) {
super(context);
init(context, null);
}
public RoundCornerImageView(Context context, AttributeSet attrs) {
super(context, attrs);
init(context, attrs);
}
public RoundCornerImageView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
init(context, attrs);
}
第一个构造函数没有AttributeSet参数,我们需要设置默认值。
在获取属性值得时候,需要设置默认值,在用户没有设置本属性时,使用默认值。
private void init(Context context, AttributeSet attributeSet) {
if (attributeSet != null) {
TypedArray a = context.obtainStyledAttributes(attributeSet, R.styleable.RoundAngleImageView);
assert a != null;
roundWidth = a.getDimensionPixelSize(R.styleable.RoundAngleImageView_roundWidth, roundWidth);
roundHeight = a.getDimensionPixelSize(R.styleable.RoundAngleImageView_roundHeight, roundHeight);
} else {
float density = context.getResources().getDisplayMetrics().density;
roundWidth = (int) (roundWidth * density);
roundHeight = (int) (roundHeight * density);
}
paint = new Paint();
paint.setColor(Color.WHITE);
paint.setAntiAlias(true);
paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.DST_OUT));
paint2 = new Paint();
paint2.setXfermode(null);
a.recycle();//为了保持以后使用的一致性,需要回收
注意最后调用TypedArray的recycle方法。
以上三步,搞定。
参考:http://blog.csdn.net/caesardadi/article/details/20387645
二,Android 自定义主题和风格
样式和主题也是可以继承和引用的,类似于方法的引用。
样式的继承的格式:
style中有一个父类属性parent, 这个属性是说明当前的这个style是继承自那个style的
android:id="@+id/myEditText"
android:layout_width="match_parent"
android:layout_height="match_parent"
style="@style/MyText" //引用自定义的样式
android:text="测试一下下"/>
说完了style,下面就说说Theme,
Theme跟style差不多,但是Theme是应用在Application或者Activity里面的,而Style是应用在某一个View里面的,还是有区别的。 //需要注意的地方
- #987456
- 24sp
- true
- @drawable/icon
- ?android:windowFrame
可以看到这里写了一个继承自系统默认的Theme的主题,里面有3个属性,这里强调一下第三个属性的值的问题,
这里打个问号,然后加前面的一个item的名字表示引用的是那个名字的值,也就是那个名字对应的图片。
然后我们在Manifest.xml里面的Application里面加一个Theme的属性,这个属性对应的就是我们上面写的Them。
android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@style/CustomTheme"> //在Manifest.xml中引用自定义的主题
当然也可以在代码中设置主题:
@Override
protected void onCreate (Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setTheme(R.style.CustomTheme); //在代码中引用自定义的主题
setContentView(R.layout.test_style);
}
尽管在定义上,样式和主题基本相同,但是它们使用的地方不同。样式用在单独的 View ,如: EditText 、TextView 等;主题通过 AndroidManifest.xml 中的 和 用在整个应用或者某个 Activity,主题对整个应用或某个 Activity 进行全局性影响。如果一个应用使用了主题,同时应用下的 view 也使用了样式,那么当主题与样式属性发生冲突时,样式的优先级高于主题。
参考:http://www.cnblogs.com/shang53880/archive/2011/06/20/2085102.html
http://blog.csdn.net/piglite/article/details/46510745
三, 如何在android style文件中使用自定义属性
前几天我在项目中遇到了这样一个问题:我为项目编写了一个自定义控件,这个控件会被大量复用,所以我准备在style.xml文件中定义一个style来减少重复xml布局内容的编写,但是里面有一个自定义的控件属性,问题出现在这里,虽然自定义属性在layout布局xml中可以使用正常,但是却无法在style中定义,本来这个控件是大量服用的,style也是为了复用减少xml内容写的,我可以把自定义属性内容直接写死在自定义控件中,但是考虑到项目未来可能出现的变数,我还是准备将这个自定义属性写到style中,这样即便有其他不同样式的复用,我也只需再写一个style即可。
在layout布局中使用自定义属性是非常简单,我们只需要在xml根节点xmlns:Android="http://schemas.android.com/apk/res/android" 的后面加上我们自定义控件的命名空间(栗子:xmlns:test="http://schemas.android.com/apk/res/packagename),然后就可以在自定义控件节点里自由使用自定义属性了。
我在编写style的时候,起初也以为style.xml也应该是这种使用方式,于是就在根节点添加了自定义控件的命名空间,然后就在style中开始使用自定义属性,如下:
xmlns:test="http://schemas.android.com/res/com.zhufuing" >
但是这样并不起作用,style.xml反而出现错误,报错提示如下:
error: Error: No resource found that matches the given name: attr 'test:name_text'.
我在网上搜索之后得到了正确的答案,其实我们在style.xml中使用自定义属性的话,不需要写自定义控件的命名空间,我们只需要在style中使用命名控件的地方换成自定义控件的包名即可(注意:是包名,不带自定义控件的名字),如下:
这样就可以在style文件中使用自定义属性了。
参考:http://blog.csdn.net/dl6655/article/details/47334087
http://blog.csdn.net/waidazhengzhao/article/details/45771503 讲解的很全面详细