Android Studio, How to

How to factorize layer code in Android development

Hello ! I'm Xavier Jouvenot and in this small post, we are going to see how to factorize layer code in Android development. Self promotion: You can find other articles on my website 😉 Problematic When developing an application, you may have some Activities, looking a lot alike, and this can, and will lead to… Lire la suite How to factorize layer code in Android development

Android Studio, How to

How to open a new Activity in a Android App

Hello ! I'm Xavier Jouvenot and in this small post, we are going to see how to open a new Activity in a Android App. Self promotion: You can find other articles on my website 😉 Problematic An activity is a single, focused thing that the user can do. This quote from the Activity class… Lire la suite How to open a new Activity in a Android App

Android Studio, How to, TipsAndTricks

Quick Tip – How to set the visibility of a button

Hello ! I'm Xavier Jouvenot and in this small post, I am going to explain how to set the visibility of a button. Self promotion: You can find other articles on Android development on my website 😉 Statically To specify the visibility of a Button, there are several solutions And the first one we are… Lire la suite Quick Tip – How to set the visibility of a button

Android Studio, TipsAndTricks

Quick Tip – How to convert a Java jintArray to a C++ std::vector

Hello ! I'm Xavier Jouvenot and in this small post, I am going to explain how to convert a Java jintArray to a C++ std::vector. Self promotion: You can find other articles on Android development on my website 😉 Solution For the people who only want the solution, to quickly copy-paste it in there code,… Lire la suite Quick Tip – How to convert a Java jintArray to a C++ std::vector

Android Studio

The Modern Cpp Challenge on Mobile – Abundant numbers

Hello ! I'm Xavier Jouvenot and here is the sixth part of a long series on The Modern C++ Challenge. In this article, I am going to explain how I solved the sixth problem in C++, and how I integrated the solution in an Android project. The objective of this sixth problem is simple. We… Lire la suite The Modern Cpp Challenge on Mobile – Abundant numbers

AdventOfCode, How to

Quick Tip – How to bind a function to a button ?

Hello ! I'm Xavier Jouvenot and in this small post, I am going to explain how to bind a function to a button. Self promotion: You can find other articles on Android development on my website 😉 Handling your buttons click in the activity There are two ways to handle your buttons click in your… Lire la suite Quick Tip – How to bind a function to a button ?

Android Studio

The Modern Cpp Challenge on Mobile – Sexy prime pairs

Hello ! I'm Xavier Jouvenot and here is the fifth part of a long series on The Modern C++ Challenge. In this article, I am going to explain how I solved the fifth problem in C++, and how I integrated the solution in an Android project. The objective of this fifth problem is simple. We… Lire la suite The Modern Cpp Challenge on Mobile – Sexy prime pairs

Android Studio, How to

Quick Tip – How to specify a variable element in a resource string ?

Hello ! I'm Xavier Jouvenot and in this small post, I am going to explain how to specify a variable element in a resource string. Self promotion: You can find other articles on Android development on my website 😉 Strings resources When crafting you application, you may have encountered some problems when placing your string… Lire la suite Quick Tip – How to specify a variable element in a resource string ?

Android Studio

The Modern Cpp Challenge on Mobile – Largest prime smaller than given number

Hello ! I'm Xavier Jouvenot and here is the fourth part of a long series on The Modern C++ Challenge. In this article, I am going to explain how I solved the fourth problem in C++, and how I integrated the solution in an Android project. The objective of fourth third problem is simple. We… Lire la suite The Modern Cpp Challenge on Mobile – Largest prime smaller than given number

Android Studio, How to

Quick Tip – How to modify the name of your application ?

Hello ! I'm Xavier Jouvenot and in this small post, I am going to explain how to modify the name of your application. Self promotion: You can find other articles on Android development on my website 😉 Finding your application title To be able to change the title of an android application, we have to… Lire la suite Quick Tip – How to modify the name of your application ?