IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> 自定义View之 获取属性 -> 正文阅读

[移动开发]自定义View之 获取属性

以ProgressBar为例,如果我们需要自己实现一个ProgressBar,那么我们需要自定义一些属性在xml中提供给用户使用。
比如下面的自定义View,我们需要radius这个属性作为圆形进度条的半径。有一个style属性用来设置进度条的样式,可能是圆形,直线形,或者其它形状。

    <com.xzh.viewdemos.ProgressBar
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        app:style="circle"
        app:radius="100"
   />

这些属性需要在res/attrs.xml中,没有这个文件需要新建一个。

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <declare-styleable name="ProgressView">
        <attr name="style" format="enum">
            <enum name="circle" value="0"/>
            <enum name="line" value="1"/>
        </attr>
        <attr name="radius" format="float"/>
    </declare-styleable>
</resources>

这里最重要的就是format,表示定义属性的类型。根据需要来选择。
在这里插入图片描述
这是所有支持的类型,float,integer,boolean,string没什么好解释的。剩下的几个需要解释一下。这些属性其实在xml中你都见过。
在这之前,我们需要知道在java代码中如何获取这些数值。一般通过下面的代码获取。通过TypedArray这个类的对象就能够获取到我们定义的所有属性。

 public ProgressView(Context context, @Nullable AttributeSet attrs) {
        super(context, attrs);
        initView();
        TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.ProgressView);
        style = typedArray.getInt(R.styleable.ProgressView_style, 0);
        mRadius=typedArray.getFloat(R.styleable.ProgressView_radius,0);
        typedArray.recycle();
    }

1.dimension

dimension:就是我们最常用的dp。

<com.xzh.viewdemos.ProgressView
        android:layout_height="100dp"
        android:layout_width="100dp"
 />

2.color

color:其实在java代码中接收的就是int,区别就是你可以在xml文件中可以使用“#fffccc”这种颜色格式。

   <com.xzh.viewdemos.ProgressView
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:background="#fffccc"
/>

3.reference

reference:引用id,也就是我们常用的R.layout.xxx或者R.drawable.xxx等资源文件

<ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/ic_launcher"/>

或者一些自定义或者系统自带的属性。

<ProgressBar
        android:id="@+id/progressBar"
        style="?android:attr/progressBarStyle"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"/>

4.flags

flags:或运算 在属性需要同时支持多个值的时候可以使用这个。在View对齐的时候非常常见

  <LinearLayout
        android:gravity="right|top"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">

5.fraction

fraction:百分数,一般也可以用float替代

android:pivotX = "200%"
android:pivotY = "300%" 

6.enum

enum 枚举 例如orientation属性,只能垂直或者水平方向二选一。

<LinearLayout
            android:orientation = "vertical"
            android:layout_width = "fill_parent"
            android:layout_height = "fill_parent"
            >
</LinearLayout>
  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2022-02-04 11:08:59  更:2022-02-04 11:09:02 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 14:04:41-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码