91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android中如何自定義xml屬性

發布時間:2022-04-15 16:46:44 來源:億速云 閱讀:450 作者:zzz 欄目:編程語言

這篇“Android中如何自定義xml屬性”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“Android中如何自定義xml屬性”文章吧。

1. 首先創建一個新的android application.

2. 創建屬性
在res/values/ 下創建一個attr.xml 文件,定義好需要的attributes

<?xml version="1.0" encoding="utf-8"?>   <resources>       <declare-styleable name="custom">           <attr name="text" format="string" />           <attr name="size" format="integer"/>           <attr name="color" format="reference|color"/>       </declare-styleable>   </resources>

3. 創建自定義的View

創建一個View, CustomView 繼承自View(根據具體的情況,如果需求和已經存在的widget或者layout相差不大,就繼承,重寫一些方法)

package com.hualu.androidview;   import android.content.Context;   import android.content.res.TypedArray;   import android.graphics.Canvas;   import android.graphics.Paint;   import android.util.AttributeSet;   import android.view.View;   public class CustomView extends View {       private  Paint p = null;       private String text =  null;       public CustomView(Context context) {           super(context);           initCustomView() ;       }       public CustomView(Context context, AttributeSet attrs){           super(context, attrs ) ;           initCustomView() ;           TypedArray a = context.obtainStyledAttributes(attrs,R.styleable.custom) ;           int indexCount = a.getIndexCount() ;           for(int i = 0 ; i < indexCount ; i ++){               int index = a.getIndex(i) ;               switch (index) {               case R.styleable.custom_text:                   text = a.getString(index) ;                   break;               case R.styleable.custom_size:                   p.setTextSize(a.getInt(index, 0));                    break;               case R.styleable.custom_color:                   p.setColor(a.getColor(index, 0xFF000000)) ;                   break;               }           }           a.recycle() ;       }      void initCustomView(){            p = new Paint();            p.setAntiAlias(true);       } ;       @Override       protected void onDraw(Canvas canvas) {           super.onDraw(canvas);           canvas.drawText(text, 10, 10, p) ;       }   }

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

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"       xmlns:custom="http://schemas.android.com/apk/res/com.hualu.androidview"       xmlns:tools="http://schemas.android.com/tools"       android:layout_width="match_parent"       android:layout_height="match_parent"       tools:context=".MainActivity" >       <TextView           android:layout_width="wrap_content"           android:layout_height="wrap_content"           android:layout_centerHorizontal="true"           android:layout_centerVertical="true"           android:text="@string/hello_world" />       <com.hualu.androidview.CustomView           android:layout_width="wrap_content"           android:layout_height="wrap_content"           custom:text="custom view"           custom:color="#00FF00"           custom:size="18"           />   </RelativeLayout>

以上就是關于“Android中如何自定義xml屬性”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

家居| 乳山市| 平度市| 溆浦县| 灵武市| 宁河县| 新丰县| 饶平县| 阳朔县| 兴义市| 临泽县| 宜都市| 浏阳市| 榆林市| 北安市| 库尔勒市| 红安县| 高台县| 台安县| 武清区| 玉林市| 绥芬河市| 磐石市| 扬中市| 博罗县| 汉寿县| 南昌县| 铅山县| 湘潭县| 斗六市| 朝阳市| 漳州市| 蓬溪县| 漠河县| 永城市| 无棣县| 灌南县| 邢台县| 文化| 武清区| 大埔区|