盛年不重来,一日难再晨,及时当勉励,岁月不待人。这篇文章主要讲述Android如何检查对象的类型相关的知识,希望能为你提供帮助。
The instanceof operator compares an object to a specified type. You can use it to test if an object is an instance of a class, an instance of a subclass, or an instance of a class that implements a particular interface.
【Android如何检查对象的类型】示例代码:
void
checkforTextView(View
v)
{
if(v
instanceof
TextView)
{
//
This
is
a
TextView
control
}
else
{
//
This
is
not
a
TextView
control
} }
推荐阅读
- 基于Android的简单聊天工具-服务器端
- Android中Intent的相关用法
- Android活动运行方法
- Android Studio修改项目名和包名
- Android数据存储引擎---SQLite数据库
- Android项目中的config.xml文件 “config.xml”
- Android学习笔记(十三) Handler
- Android学习笔记 Intent
- Android(PowerManager类 电源管理)