自定義控制項時使用自定義屬性

来源:http://www.cnblogs.com/qynprime/archive/2017/12/21/8079010.html
-Advertisement-
Play Games

這裡以自定義一個可以控制圓角顯示的ImageView控制項UpRoundImageView為例,展開說明。 1、/res/values/arrrs.xml 其中declare-styleable標簽的屬性name最好是自定義控制項的類名。 標簽attr的屬性name是自定義的;format:類型值,有多 ...


  這裡以自定義一個可以控制圓角顯示的ImageView控制項UpRoundImageView為例,展開說明。

1、/res/values/arrrs.xml

其中declare-styleable標簽的屬性name最好是自定義控制項的類名。

  標簽attr的屬性name是自定義的;format:類型值,有多種可選,並且可以指定多種類型值,將在後面進行詳細說明。

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <declare-styleable name="UpRoundImageView">
        <attr name="leftup_radius_l" format="float"/>
        <attr name="leftup_radius_r" format="float"/>
        <attr name="rightup_radius_l" format="float"/>
        <attr name="rightup_radius_r" format="float"/>
        <attr name="rightdown_radius_l" format="float"/>
        <attr name="rightdown_radius_r" format="float"/>
        <attr name="leftdown_radius_l" format="float"/>
        <attr name="leftdown_radius_r" format="float"/>
    </declare-styleable>
</resources>

  2、UpRoundImageView: 

package com.example.qyn.projectqyn.customviews;

import android.annotation.SuppressLint;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Path;
import android.graphics.RectF;
import android.util.AttributeSet;
import android.widget.ImageView;

/**
 * 自定義圓角的ImageView
 * Created by Administrator on 2017/9/25.
 */

@SuppressLint("AppCompatCustomView")
public class UpRoundImageView extends ImageView {

    /*圓角的半徑,依次為左上角xy半徑,右上角,右下角,左下角*/
//    private float[] rids = {5.0f,5.0f,5.0f,5.0f,0.0f,0.0f,0.0f,0.0f};
    private float[] rids ;

//    public UpRoundImageView(Context context) {
//        super(context);
//    }

    public UpRoundImageView(Context context, AttributeSet attrs) {
        super(context, attrs);
        /**
         * AttributeSet控制項的屬性集合,已鍵值對的形式存在。
         * attrs.getAttributeFloatValue(String urlres,String keystr,float default);其中urlstr:attrs資源文件被引用地址,與佈局文件中的保持一直;keystr:自定義屬性的name;default:預設值。該方法輸出為單精度浮點小數。
         */
        float leftup_radius_l = attrs.getAttributeFloatValue("http://schemas.android.com/apk/res-auto","leftup_radius_l",0.0f);
        float leftup_radius_r = attrs.getAttributeFloatValue("http://schemas.android.com/apk/res-auto","leftup_radius_r",0.0f);
        float rightup_radius_l = attrs.getAttributeFloatValue("http://schemas.android.com/apk/res-auto","rightup_radius_l",0.0f);
        float rightup_radius_r = attrs.getAttributeFloatValue("http://schemas.android.com/apk/res-auto","rightup_radius_r",0.0f);
        float rightdown_radius_l = attrs.getAttributeFloatValue("http://schemas.android.com/apk/res-auto","rightdown_radius_l",0.0f);
        float rightdown_radius_r = attrs.getAttributeFloatValue("http://schemas.android.com/apk/res-auto","rightdown_radius_r",0.0f);
        float leftdown_radius_l = attrs.getAttributeFloatValue("http://schemas.android.com/apk/res-auto","leftdown_radius_l",0.0f);
        float leftdown_radius_r = attrs.getAttributeFloatValue("http://schemas.android.com/apk/res-auto","leftdown_radius_r",0.0f);
        rids = new float[]{leftup_radius_l,leftup_radius_r,rightup_radius_l,rightup_radius_r,rightdown_radius_l,rightdown_radius_r,leftdown_radius_l,leftdown_radius_r};
    }

//    public UpRoundImageView(Context context, AttributeSet attrs, int defStyleAttr) {
//        super(context, attrs, defStyleAttr);
//    }


    /**
     * 畫圖
     * @param canvas
     */
    protected void onDraw(Canvas canvas) {
        Path path = new Path();
        int w = this.getWidth();
        int h = this.getHeight();
        /*向路徑中添加圓角矩形。radii數組定義圓角矩形的四個圓角的x,y半徑。radii長度必須為8*/
        path.addRoundRect(new RectF(0,0,w,h),rids,Path.Direction.CCW);
        canvas.clipPath(path);
        super.onDraw(canvas);
    }
}

  3、佈局文件activity_seconed.xml

xmlns:qiradius="http://schemas.android.com/apk/res-auto",其中的“qiradius”是自定義。
“res-auto”在低版本中可以替換成“你的包名”。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:qiradius="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center">

    <com.example.qyn.projectqyn.customviews.UpRoundImageView
        android:layout_width="60dp"
        android:layout_height="60dp"
        qiradius:leftup_radius_l="6.0"
        qiradius:leftup_radius_r="6.0"
        qiradius:rightup_radius_l="6.0"
        qiradius:rightup_radius_r="6.0"
        qiradius:rightdown_radius_l="6.0"
        qiradius:rightdown_radius_r="6.0"
        qiradius:leftdown_radius_l="6.0"
        qiradius:leftdown_radius_r="6.0"
        android:src="@mipmap/shouye"
        android:scaleType="fitXY"/>

    <TextView
        android:layout_width="60dp"
        android:layout_height="60dp"
        android:text="@string/app_name"
        android:layout_marginTop="10dp" />

</LinearLayout>

  至此,對自定義控制項和屬性的介紹已然完成。下麵將對format所擁有的類型值詳細說明,以及多種類型值疊加的使用。

1. reference:參考某一資源ID。

(1)屬性定義:

代碼如下:


<declare-styleable name = "名稱">

 

   <attr name = "background" format = "reference" />

</declare-styleable>

 

(2)屬性使用:

代碼如下:


<ImageView

 

android:layout_width="42dip"
android:layout_height="42dip"
android:background="@drawable/圖片ID"
/>

 

2.color:顏色值。

(1)屬性定義:

代碼如下:
<declare-styleablename="名稱">

 

<attrname="textColor"format="color"/>

</declare-styleable>

 

(2)屬性使用:

代碼如下:
<TextView
android:layout_width="42dip"
android:layout_height="42dip"
android:textColor="#00FF00"
/>

 

3.boolean:布爾值。

(1)屬性定義:

代碼如下:
<declare-styleablename="名稱">

 

<attrname="focusable"format="boolean"/>

</declare-styleable>

 

(2)屬性使用:

代碼如下:
<Button
android:layout_width="42dip"
android:layout_height="42dip"
android:focusable="true"
/>

 

4.dimension:尺寸值。

(1)屬性定義:

代碼如下:
<declare-styleablename="名稱">

 

<attrname="layout_width"format="dimension"/>

</declare-styleable>

 

(2)屬性使用:

代碼如下:
<Button
android:layout_width="42dip"
android:layout_height="42dip"
/>

 

5.float:浮點值。

(1)屬性定義:

代碼如下:
<declare-styleablename="AlphaAnimation">
<attrname="fromAlpha"format="float"/>
<attrname="toAlpha"format="float"/>
</declare-styleable>

 

(2)屬性使用:

代碼如下:
<alpha
android:fromAlpha="1.0"
android:toAlpha="0.7"
/>

 

6.integer:整型值。

(1)屬性定義:

代碼如下:
<declare-styleablename="AnimatedRotateDrawable">
<attrname="visible"/>
<attrname="frameDuration"format="integer"/>
<attrname="framesCount"format="integer"/>
<attrname="pivotX"/>
<attrname="pivotY"/>
<attrname="drawable"/>
</declare-styleable>

 

(2)屬性使用:

代碼如下:
<animated-rotate
xmlns:android="http://schemas.android.com/apk/res/android"
android:drawable="@drawable/圖片ID"
android:pivotX="50%"
android:pivotY="50%"
android:framesCount="12"
android:frameDuration="100"
/>

 

7.string:字元串。

(1)屬性定義:

代碼如下:
<declare-styleablename="MapView">
<attrname="apiKey"format="string"/>
</declare-styleable>

 

(2)屬性使用:

代碼如下:
<com.google.android.maps.MapView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:apiKey="0jOkQ80oD1JL9C6HAja99uGXCRiS2CGjKO_bc_g"
/>

 

8.fraction:百分數。

(1)屬性定義:

代碼如下:
<declare-styleablename="RotateDrawable">
<attrname="visible"/>
<attrname="fromDegrees"format="float"/>
<attrname="toDegrees"format="float"/>
<attrname="pivotX"format="fraction"/>
<attrname="pivotY"format="fraction"/>
<attrname="drawable"/>
</declare-styleable>

 

(2)屬性使用:

代碼如下:
<rotate
xmlns:android="http://schemas.android.com/apk/res/android"
  android:interpolator="@anim/動畫ID"

 

android:fromDegrees="0"
android:toDegrees="360"

android:pivotX="200%"

android:pivotY="300%"
android:duration="5000"

android:repeatMode="restart"

android:repeatCount="infinite"

/>

 

9.enum:枚舉值。

(1)屬性定義:

代碼如下:
<declare-styleablename="名稱">
<attrname="orientation">
<enumname="horizontal"value="0"/>
<enumname="vertical"value="1"/>
</attr>
</declare-styleable>

 

(2)屬性使用:

代碼如下:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
</LinearLayout>

 

10.flag:位或運算。

(1)屬性定義:

代碼如下:
<declare-styleablename="名稱">
<attrname="windowSoftInputMode">
<flagname="stateUnspecified"value="0"/>
<flagname="stateUnchanged"value="1"/>
<flagname="stateHidden"value="2"/>
<flagname="stateAlwaysHidden"value="3"/>
<flagname="stateVisible"value="4"/>
<flagname="stateAlwaysVisible"value="5"/>
<flagname="adjustUnspecified"value="0x00"/>
<flagname="adjustResize"value="0x10"/>
<flagname="adjustPan"value="0x20"/>
<flagname="adjustNothing"value="0x30"/>
</attr>
</declare-styleable>

 

(2)屬性使用:

代碼如下:
<activity
android:name=".StyleAndThemeActivity"
android:label="@string/app_name"
android:windowSoftInputMode="stateUnspecified|stateUnchanged | stateHidden">
<intent-filter>
<actionandroid:name="android.intent.action.MAIN"/>
<categoryandroid:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>

 

特別要註意:

屬性定義時可以指定多種類型值。

(1)屬性定義:

代碼如下:
<declare-styleablename="名稱">
<attrname="background"format="reference|color"/>
</declare-styleable>

 

(2)屬性使用:

代碼如下:
<ImageView
android:layout_width="42dip"
android:layout_height="42dip"
android:background="@drawable/圖片ID|#00FF00"
/>   參考文獻:    1、http://www.jb51.net/article/48962.htm

    2、自定義UpRoundImageView控制項很早以前找的,現在找不到出處了。

有更多有趣的用法請留言。


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 項目分為三部分,這裡分為三個maven項目(基於web,所以最後一個為maven創建的web項目) 1.介面定義以及實體類定義(api+pojo) maven創建java項目,打包成jar 2.dubbo的服務提供方:定義介面實現,底層使用mybatis持久層框架,mysql資料庫 在這裡配置map ...
  • Passbook 是iOS6的新功能,只能在iPhone和iPod touch設備中使用,它可以幫助管理商家發放的電子會員卡,積分卡,優惠券等。 一,Passbook 與 Pass. Passbook是我們的“卡包”,而Pass是裡面的“卡”和“券”。 二,Pass的內部結構。 每一個Pass裡面是 ...
  • 轉載請註明原文地址:http://www.cnblogs.com/yanyojun/p/8082391.html 代碼已經上傳至Github:https://github.com/YanYoJun/ViewPagerDemo 先看效果 1、佈局文件 2、代碼實現 這裡需要註意點,需要先將setupW ...
  • 四、Activity的更新(旋轉) sendNewConfiguration()會調用到ActivityManagerService的updateConfiguration()來update Configuration,並根據應用的配置來判斷是否要重新lunch應用。 先看一下總體時序圖,後面詳細展 ...
  • 應用場景:有時候我們的項目會導入一些第三方.a文件,但是當我們在svn上check out下來的時候,會發現少了一些.a文件。於是乎項目就報錯了。 針對這種情況,我們應該怎麼辦呢? 1.先打開Cornerstone的偏好設置,你會發現,他的預設設置會過濾.a文件,於是乎,你把.a文件刪除了,不讓他過 ...
  • 避免誤導,先加一句:首先,得公眾號綁定開放平臺 這個問題困擾了我一早上,我嘗試了很多次獲取unionid都失敗。 微信的開發文檔上有說: 關於特殊場景下的靜默授權 1、上面已經提到,對於以snsapi_base為scope的網頁授權,就靜默授權的,用戶無感知; 2、對於已關註公眾號的用戶,如果用戶從 ...
  • 申請 Let’s Encrypt證書的原因: 現在阿裡雲等都有免費的 https 證書,為什麼還要申請這個呢(估計也是因為阿裡雲這些有免費證書的原因,所以 Let’s Encrypt 知道的人其實並不算太多)? 原因是公司最近接了很多微信小程式的單子,而小程式是必須要 https 的,申請了幾個後阿 ...
  • 1 導入之前先修改工程下相關文件 1.1 只需修改如下三個地方1.2 修改build.gradle文件 1.3 修改gradle/wrapper/gradle-wrapper.properties 1.4 修改app/build.gradle 2 導入修改後的工程 2.1 選擇File|New|Im ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...