Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android圖像圖像處理——自定義組件的屬性

android圖像圖像處理——自定義組件的屬性

編輯:關於Android編程

自定義組件的屬性

步驟如下

【1】在Values資源文件下新建myview.xml

這裡寫圖片描述


    
        
        
    

自定義兩個屬性背景圖、畫筆筆觸大小;

【2】在布局文件中使用自定義屬性

首先引入然後使用
這裡寫圖片描述

【3】在Java文件中獲取自定義組件信息

我們知道在在自定義組件Java文件中,的構造函數

public MyBitmapView2(Context context, AttributeSet attrs){}

attrs就是用來解析XML文件的
解析代碼

public MyBitmapView2(Context context, AttributeSet attrs) {
        super(context, attrs);
        final TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.myview);
        BitmapDrawable dra = (BitmapDrawable) a.getDrawable(R.styleable.myview_myview_background);
        Log.d(,得到背景圖);
        if (dra != null) {
            Log.d(drawable,  + dra.getIntrinsicWidth());
            bitmapBackground = dra.getBitmap();
        } else {
            bitmapBackground = BitmapFactory.decodeResource(getResources(), R.mipmap.cc);
        }


        int paintWidth=a.getDimensionPixelOffset(R.styleable.myview_myview_paintwidth,100);
        paintRect.setStrokeWidth(paintWidth);

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved