Difference between Button with image, ImageButton, and clickable ImageView?

后端 未结 5 1785
一向
一向 2021-02-01 12:14

Is there any difference between Button with image, ImageButton and clickable ImageView?

5条回答
  •  刺人心
    刺人心 (楼主)
    2021-02-01 12:22

    button instanceof ImageButton == false;
    imageButton instanceof Button == false;
    button instanceof TextView == true;
    imageButton instanceof ImageView == true;
    

提交回复
热议问题