compare two images is same or not

后端 未结 3 382
孤街浪徒
孤街浪徒 2020-12-20 00:59

I know how to compare two string is same or not.this is coding for compare two strings TextView t,t1;

String s,s1;
s=t.getText().toString();
s1=t1.setText().         


        
3条回答
  •  感情败类
    2020-12-20 01:06

    If you want to check if the two images are absolutely equal then get the bytes from both, and compare two arrays with element-by-element check.

提交回复
热议问题