Run Unity Project Directly on Your Android Mobile

Run Unity Project Directly on Your Android Mobile

Tiempo de lectura: 3 minutos Reading Time: 2 minutes Yes, we want to run our Unity project directly on our mobile device or tablet. First, we need to enable developer options and USB debugging on our Android device. Connect the device to the computer using a USB cable. Enable USB Debugging (Developer Options) on your Android device. Once configured, we … Read more

How to pass parameters between two Activitis on Android

Tiempo de lectura: < 1 minuto Reading Time: < 1 minute In today’s article, I’m going to show you how to pass parameters between two Activities in Android using Java. We can pass all types of variables from one Activity to another, including objects. The first thing we need to do is create the intent to open a new Activity as … Read more

How to load images uploaded from internet using RecyclerView in Android

Tiempo de lectura: 2 minutos Reading time: 2 minutes Hello everyone, this time I’m going to explain how to load images from a URL into a RecyclerView in Android. If you don’t know how to create a RecyclerView, I recommend you visit the previous post on How to Create a RecyclerView in Android. Now, let’s get started. The first thing … Read more

How to Create a RecyclerView in Android

How to Create a RecyclerView in Android

Tiempo de lectura: 3 minutos Reading time: 3 minutes Hello everyone, this time I want to show you how to create a RecyclerView in Android. List created with RecyclerView A RecyclerView allows us to efficiently create a list interface in Android. This object can build a composite view of multiple elements given an input list or array. It also performs … Read more

Create an Object in Android with Included View to Add to Any Activity

Create an Object in Android with Included View to Add to Any Activity

Tiempo de lectura: 3 minutos Reading time: 3 minutes Many times we want to create an object that has an included view (referring to a layout). For example, a bottom menu that we want to display in all activities or a layer. In this tutorial, I’m going to show you how to create a reusable object for any project and … Read more

Fixing Refresh Issue in RecyclerViews

Fixing Refresh Issue in RecyclerViews

Tiempo de lectura: 2 minutos Reading time: 3 minutes Sometimes when using a RecyclerView in Android, we may encounter the problem of it not “clearing the buffer” of content from the corresponding Row for an item in a list. In other words, an item in the list retains the same properties as the item below or the previous item. To … Read more

How to Create a Kanban Board and Custom Labels in GitLab

How to Create a Kanban Board and Custom Labels in GitLab

Tiempo de lectura: 2 minutos Reading Time: 2 minutes How to Create a Kanban Board and Custom Labels in GitLab Photo by Linda Eller-Shein on Pexels To create a work board, we need to access our GitLab profile, select the project where we want to create the board, and then follow a few simple steps that we will see below. … Read more

Use your own Android device to run apps in development with Android Studio.

Tiempo de lectura: < 1 minuto Use your own Android device to run apps in development with Android Studio. Photo by Noah Erickson on Pexels Did you know that you can use your own mobile device to debug and run apps developed in Android directly with Android Studio? This is very useful if you want to test the app before publishing … Read more