Android: Where to find the RadioButton Drawable?(Android:在哪里可以找到 RadioButton Drawable?)
问题描述
好的,我正在尝试创建一个名为 CheckedRelativeLayout
的自定义视图.
Ok, I am trying to create a custom view called CheckedRelativeLayout
.
它的用途与 CheckedTextView
相同,以便能够在要选择的项目列表或 Spinner
中使用它.
It's purpose is the same as a CheckedTextView
, to be able to use it in a list of items you want selected or in a Spinner
.
现在一切正常,我扩展了 RelativeLayout
并实现了 Checkable
接口.
It's all working fine now, I extended RelativeLayout
and implemented Checkable
interface.
但是,我遇到了一个非常简单的问题:在哪里可以找到 CheckedTextView
和 RadioButton
使用的 Drawable
?
However, I am stuck on a quite simple problem: Where can I find the Drawable
that CheckedTextView
and RadioButton
use?
我查看了两者的源代码,它们似乎使用 com.android.internal.R
.嗯……这是内部的东西.所以我无法访问它.
I looked at the sourcecode of both, and they seem to use com.android.internal.R
. Well... that's internal stuff. So I can't access it.
有什么方法可以获取这些 Drawable 或以某种方式解决问题?
Any way to get these Drawables or solve the problem somehow?
推荐答案
查看SDK文件夹/platforms/android-2.0/data/res/您可以通过 android.R.drawable (如果是公共的)访问它们,或者需要将它们作为可绘制对象复制到您的项目中
look under SDK folder /platforms/android-2.0/data/res/ you can access them by either android.R.drawable ( if public ) or need to copy them as drawable to your project
这篇关于Android:在哪里可以找到 RadioButton Drawable?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Android:在哪里可以找到 RadioButton Drawable?
基础教程推荐
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01