Skip to content

Tag: java

how to draw prespctive image in android canvas

i have searched about how to draw prespctive image in canvas like in the picture but i dont find anything thing. if its not possible using canvas, how i can make something like it? i find this:- but this cut the image. Answer This is possible by magic method of canvas drawBitmapMesh. This is example from my p…

How to correct the string returned based on a regex

Here is the message and Type message Type IND SMD 0402 1.2nH 50pH 390mA 100MOHM MAG What i’m trying to return is the 1.2nH For that i created a function as below This is returning me 50pH but actually i’m trying to return 1.2nH How could i correct my function ? Answer If you use the code to check …

How can I override object methods inside interface?

All classes in java extend the Object class implicitly. But that doesn’t concern interfaces. Interfaces can only extend other interfaces, but no classes. However, I can override object class methods inside my interface. Can you please explain in simple words how is this even possible? Is there any use c…