Android自定义xml属性

Android 自定义组件

创新互联是一家专业的成都网站建设公司,我们专注网站设计、成都网站制作、网络营销、企业网站建设,买链接广告投放平台为企业客户提供一站式建站解决方案,能带给客户新的互联网理念。从网站结构的规划UI设计到用户体验提高,创新互联力求做到尽善尽美。

Android 提供了非常精致的和非常强大的组件化模型,能够更加方便的构建UI,这些UI组件都是基于基本的layout类:View 和 ViewGroup。

部分能够用的widgets包括:Button,TextView,EditText,ListView,CheckBox,RadioButton,Gallery,Spinner,和一些比较特殊用途的widgets(AutoCompleteTextView, ImageSwitcher, and TextSwitcher.)

布局组件有LinearLayout, FrameLayout, RelativeLayout,absoluteLayout,TabelLayout

如果预定义的widgets和布局组件都不符合您的需求,那就需要创建属于自己的view,如果只是需要对已有的widget和layout进行小部分的调整,那就可以通过重写部分一些方法来完成开发。

下面就举个例子讲解如何创建自定义的xml属性,以及如果使用。

1. 首先创建一个新的android application.

2. 创建属性
在res/values/ 下创建一个attr.xml 文件,定义好需要的attributes

 
 
 
 
  1.    
  2.    
  3.        
  4.            
  5.            
  6.            
  7.        
  8.   

 

3. 创建自定义的View

创建一个View, CustomView 继承自View(根据具体的情况,如果需求和已经存在的widget或者layout相差不大,就继承,重写一些方法)

 
 
 
 
  1. package com.hualu.androidview;   
  2. import android.content.Context;   
  3. import android.content.res.TypedArray;   
  4. import android.graphics.Canvas;   
  5. import android.graphics.Paint;   
  6. import android.util.AttributeSet;   
  7. import android.view.View;   
  8. public class CustomView extends View {   
  9.     private  Paint p = null;   
  10.     private String text =  null;   
  11.     public CustomView(Context context) {   
  12.         super(context);   
  13.         initCustomView() ;   
  14.     }   
  15.     public CustomView(Context context, AttributeSet attrs){   
  16.         super(context, attrs ) ;   
  17.         initCustomView() ;   
  18.         TypedArray a = context.obtainStyledAttributes(attrs,R.styleable.custom) ;   
  19.         int indexCount = a.getIndexCount() ;   
  20.         for(int i = 0 ; i < indexCount ; i ++){   
  21.             int index = a.getIndex(i) ;   
  22.             switch (index) {   
  23.             case R.styleable.custom_text:   
  24.                 text = a.getString(index) ;   
  25.                 break;   
  26.             case R.styleable.custom_size:   
  27.                 p.setTextSize(a.getInt(index, 0));    
  28.                 break;   
  29.             case R.styleable.custom_color:   
  30.                 p.setColor(a.getColor(index, 0xFF000000)) ;   
  31.                 break;   
  32.             }   
  33.         }   
  34.         a.recycle() ;   
  35.     }  
  36.     void initCustomView(){   
  37.          p = new Paint();   
  38.          p.setAntiAlias(true);   
  39.     } ;   
  40.     @Override   
  41.     protected void onDraw(Canvas canvas) {   
  42.         super.onDraw(canvas);   
  43.         canvas.drawText(text, 10, 10, p) ;   
  44.     }   
  45. }   

4. 在layout的文件使用自定义的view

 
 
 
 
  1.     xmlns:custom="http://schemas.android.com/apk/res/com.hualu.androidview"   
  2.     xmlns:tools="http://schemas.android.com/tools"   
  3.     android:layout_width="match_parent"   
  4.     android:layout_height="match_parent"   
  5.     tools:context=".MainActivity" >   
  6.     
  7.         android:layout_width="wrap_content"   
  8.         android:layout_height="wrap_content"   
  9.         android:layout_centerHorizontal="true"   
  10.         android:layout_centerVertical="true"   
  11.         android:text="@string/hello_world" />   
  12.     
  13.         android:layout_width="wrap_content"   
  14.         android:layout_height="wrap_content"   
  15.         custom:text="custom view"   
  16.         custom:color="#00FF00"   
  17.         custom:size="18"   
  18.         />   
  19.  

5. 运行应用

文章就到此结束,大家有什么疑问的,请留言,我会及时答复大家!谢谢~

当前题目:Android自定义xml属性
地址分享:http://www.gawzjz.com/qtweb/news39/183389.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联