New app on Google Play to create hacker avatars

By | 13.09.2021

Post Views: 3,692 The app is called Avatar Maker: Hackers. The maker contains elements for creating an avatar of both famous hackers of the world, and for creating a character similar to himself or an abstract programmer. Some of the character pictures are very similar to real people and attract with their unique style. For… Read More »

Text Recognition from image with ML Kit on Android

By | 10.06.2020

Post Views: 15,294 Machine learning is currently gaining popularity. Since training models is labor-intensive, its application in Android is considered with reluctance. However, Google has made this task easier for us with the introduction of ML Kit. In this article, we will briefly look at the capabilities of ML Kit and write an application that… Read More »

WebView Interaction with JavaScript

By | 10.06.2020

Post Views: 52,992 WebView is a component with which you can display web pages. However, we are not only interested in showing the content of the page, we also need to interact with this content. In this article, we will try to explain some of the details of this process. Important! First of all, if… Read More »

Moving images on the screen in Android

By | 09.06.2020

Post Views: 21,624 Moving various objects is often used in mobile games and various multimedia applications. In this article, we will look at how to add images to the screen and move them freely. To do this, we need to perform the following steps: Create layout with the FrameLayout component. Create an ImageView programmatically for… Read More »

Comparison of the Binary Preferences library with standard Shared Preferences

By | 31.07.2017

Post Views: 6,470 In the Android system, key-value pairs are used to store information. With their help, you can store the values of variables, or various information that the application may need in the future. And although the SDK already has a ready interface, called SharedPreferences, which provides methods for saving and reading settings in… Read More »