Using the deprecated AbsoluteLayout class in Android?

The AbsoluteLayout class is deprecated, but can still write it to code, and it works. Will there be problems if I use this class? Will the application work correctly after deploying it to the phone?

thank

+3
source share
2 answers

When a part of the code is indicated as obsolete, it means that it will still work for now, but in the future the code update will be disabled.

This means that you will eventually have to come up with a different solution to the problem. It is also possible to do it now.

, , , .

+3

Source: https://habr.com/ru/post/1733170/


All Articles