如何查看父母姓名

时间:2019-04-02 02:26:52

标签: java android

我知道我可以在android中获取视图名称。但是如何比较名称?请告诉我

那是我的logcat输出:

android.support.constraint.ConstraintLayout{e888acb V.E...... ........ 0,939-1080,1458 #7f0d00bd app:id/menuCust}

这是我尝试过的:

if(view.getParent.toString().equals("myConstraintLayoutName")){

}

1 个答案:

答案 0 :(得分:0)

视图实际上没有名称。它们具有不使用字符串表示形式的ID(它们使用整数表示速度)。因此,您需要执行类似view.getParent()。getId()== R.id.myConstraintLayoutName

的操作