前言
LevelListDrawable是通过改变层级值来显示对应的图片,除了下面的开关灯,还有WiFi的状态显示,电池状态的显示也可以用这种。
在公司好像没发现有人使用过LevelListDrawable(或者我看代码太少了哈)。
自己懒得写了,摘抄一些网友写的,以便自己学习。
以下内容都是摘抄的。
LevelListDrawable的语法简介
<?xml version="1.0" encoding="utf-8"?>
<level-list
xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:drawable="@drawable/drawable_resource"
android:maxLevel="integer"
android:minLevel="integer" />
</level-list>
这必须是根元素。包含一个或多个<item>元素。
属性:
xmlns:android
字符串。必备。定义 XML 命名空间,其必须是 "http://schemas.android.com/apk/res/android"。
<item>
定义要在某特定级别使用的可绘制对象。
属性:
android:drawable
可绘制对象资源。必备。引用要插入的可绘制对象资源。
android:maxLevel
整型。此项目允许的最高级别。
android:minLevel
整型。此项目允许的最低级别。
LevelListDrawable的例子
一:在drawablw文件夹下:
<?xml version="1.0" encoding="utf-8"?>
<level-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/lamp_on" //灯亮的图片
android:minLevel="12"
android:maxLevel="20"/>
<item android:drawable="@drawable/lamp_off" //灯灭的图片
android:minLevel="6"
android:maxLevel="10"/>
</level-list>
二:布局文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:src="@drawable/bitmap"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/iv_drawable"/>
<Button
android:id="@+id/btn_on"
android:text="light on"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<Button
android:id="@+id/btn_off"
android:text="light off"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
三:MainActivity
package com.example.kirito.myapplication.testdrawable;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
import com.example.kirito.myapplication.R;
/**
* Created by kirito on 2016.10.31.
*/
public class TestDrawable extends AppCompatActivity implements View.OnClickListener{
private Button on,off;
private ImageView iv;
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.testdrawable);
on = (Button) findViewById(R.id.btn_on);
off = (Button) findViewById(R.id.btn_off);
on.setOnClickListener(this);
off.setOnClickListener(this);
iv = (ImageView) findViewById(R.id.iv_drawable);
iv.setImageLevel(8);
}
@Override
public void onClick(View v) {
if (v.getId() == R.id.btn_off){
//设置的level值必须在6-10之间
iv.setImageLevel(8);
}else if (v.getId() == R.id.btn_on){
//设置的level值必须在12-20之间
iv.setImageLevel(18);
}
}
}
