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?


- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01
- android 4中的android RadioButton问题 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- Android - 拆分 Drawable 2022-01-01
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01
- 想使用ViewPager,无法识别android.support.*? 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01