我正在创建一个使用GridView显示一组项目的应用。每个项目定义如下:
<?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">
<com.example.myapp.customviews.Tile
android:layout_width="wrap_content"
android:layout_weight="1"
android:scaleType="fitCenter"
android:layout_height="match_parent"
android:id="@+id/tile" />
</LinearLayout>
在我的OnItemClickHandler
我想检查ID为R.id.tile
的视图类型(我上面提到的我自定义的View类)是com.example.myapp.customviews.EmptyTile
。这个类是Tile类的一个孩子。
目前我正在检查该类是否为EmptyTile,如下所示:
LinearLayout tileLayout = (LinearLayout) gridView.getChildAt(position);
if (EmptyTile.class.isInstance(tileLayout.findViewById(R.id.tile))) {
Log.d("myappDebug", "Correct instance!");
}
我尝试使用instanceof
和tileLayout.findViewById(position).getClass() == EmptyTile.class
进行检查,但这些也无效。在运行时,我的视图只是一个Tile View而不是EmptyTile View。
如何检查我的View是否实际上是EmptyTile类的实例?
答案 0 :(得分:0)
instanceof必须工作。但是,在您的XML中,您将视图定义为com.example.myapp.customviews.Tile类型,那么为什么您希望它是EmptyTile? 如果您在XML中使用EmptyTile(当然包含正确的包),则instanceof检查和其他选项将起作用。