Published inFloBiz Blog·Jun 21, 2021Garbage Collector : An Android StoryBefore going to how GC works in Android, we need to understand how memory allocation works in Android public class HomeActivity extends AppCompatActivity { private MyObject myObject; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); myObject = new MyObject(); } }Android4 min readAndroid4 min read
Published inFloBiz Blog·Jun 7, 2021Create resizable bitmaps (9-Patch files)What is 9-patch image A NinePatchDrawable graphic is a stretchable bitmap image that you can use as the background of a view. A NinePatch graphic is a standard PNG image that includes an extra 1-pixel border. It must be saved with the 9.png extension in the res/drawable/ directory of your project.Android4 min readAndroid4 min read
Published inFloBiz Blog·Jun 1, 2021Connect your Android device without USB Connector 😉😉😉As an Android developer we are running the app many times in a day while developing/ testing in our mobile for the instant result. But we all have faced issue related to USB disconnected. Sometimes broken / loose / non-functional cables ruin our whole development day. To solve this issue…Android2 min readAndroid2 min read
Published inFloBiz Blog·Mar 25, 2021Create your own Android Library & Publish itI always wonder how android dependency works. An Android library is structurally the same as an Android app module. It can include everything needed to build an app, including source code, resource files, and an Android manifest. …Android5 min readAndroid5 min read