365Bloggy How to Get Screen Dimensions as Pixel in Android? Many times while building an Android application we can dynamically add components to the Android application. We can place elements in a particular position on the screen. We will need to get the dev...
365Bloggy How to Display HTML in Textview along in Android? There is some information displayed in HTML form on mobile applications. Android's inbuilt function doesn’t allow displaying HTML. when one needs to display rich formatted text in the app at times we ...
365Bloggy How to Create a Transparent Activity in Android? Many applications require transparent activity inside our Android application. In this article, we will take a look at creating transparent activity in Android application . What are we going to build...
365Bloggy How to Add Dividers in Android RecyclerView? In the article, we will learn how to implement Recyclerview in an android application. Recyclerview is the most common use in every application. Display data in the application while using recyclervie...
365Bloggy How to Call a Method After a Delay in Android? In Android, Handlers are used to handle and manage runnable objects. The Handler class is responsible for trigger execution. Handlers are used to manage processes that run in the background. A Handler...
365Bloggy How to Use a Static Method in Android? Static keyword in part of java language. Static works as a simple variable, method and static block in java. In this article ,we are going to see how we can implement static methods in android applica...
365Bloggy You need to use a Theme.AppCompat theme (or descendant) with this activity A theme must be used. When attempting to start an Android application, a typical error message shows the AppCompat theme (or descendant) with this activity. The activity of the program must utilize a ...
365Bloggy Different Ways to fix “cannot resolve symbol R” in Android Studio In an android application we can use kt or java class but both must have an import R file. Create new activity automatically import R file otherwise manually Alt + Enter to import file. R stands for t...
365Bloggy Cleartext HTTP Traffic Not Permitted in android. HTTP stands for hypertext transfer protocol. It transfers the data on the mobile applications network. Website uses the http protocol to send information on the internet, also called API. Difference b...
365Bloggy How to Send Data From One Activity to Second Activity in Android? This article shows how to send data from one activity to the second activity using intent . In this example , we have two activities. Activity_first is source activity, and activity_second which is th...
365Bloggy Center Text in a TextView Horizontally and Vertically of android Many android applications use text view for displaying text of android application There are different ways used to align the text view of XML layout. For aligning the textview for different sizes we ...
365Bloggy What is the Difference Between GRAVITY and LAYOUT_GRAVITY in Android Android application created using a layout with class. it is layout content with different layouts, linear layouts, relative layouts, etc. There are common attributes among all the layouts and there a...