本文介绍了如何访问勾绘在Android操作系统?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想用,而不是提供我自己的Andr​​oid操作系统可绘制。
如何进入复选标记图标?
我在寻找对号没有rectagnle以防万一。

I want to use Android OS drawables instead of providing my own.How to access check mark icon?I'm looking for check mark without rectagnle arround.

推荐答案

要访问系统提供的资源,只是访问的Andr​​oid R.java文件。

To access system provided resource, just access R.java file of Android.

例如:

android.R.drawable.checkbox_on_background  // To access drawable resource
android.R.color.black      // To access color resources
android.R.dimen.colorstrip_height;   // To acess dimension resources

更新:

如果您使用的是Android 2.3的姜饼,那么你可以在下面访问内置的绘图资源:

Update:

If you are using Android 2.3 Gingerbread then you can access below in-built drawables:


  1. btn_check_buttonless_off.png

  2. btn_check_buttonless_on.png

这篇关于如何访问勾绘在Android操作系统?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 16:55