Java: binary to text translator

In this post about Java I am going to teach you how to convert text to binary, and binary to text. That is, make a type of text - binary translator in Java to be able to convert between both formats. Another way to call this is to say “Binary to English translator” for example. For example, convert 1110000 1100001 1110010 1111010 1101001 1100010 1111001 1110100 1100101 101110 1101101 1100101 to “parzibyte.me” and vice versa. All this programmed in Java with manual methods and custom logic. ...

August 21, 2020 · 6 min · 1164 words · Parzibyte

Custom alert dialog in Android

Dialog and AlertDialog with custom layout on Android In this post I will show you how to create custom dialog on Android using a layout created by us, that is, create a custom alert by adding elements such as EditText, Button, etc. Custom alerts on Android serve to display an alert that is not a confirmation alert, since we can define a custom layout. To achieve this we will use the Dialog and AlertDialog.Builder classes. ...

August 28, 2019 · 4 min · 812 words · Parzibyte