2,174 Topics

Member Avatar for
Member Avatar for tarun Nagar

Dear community members, I'm exploring the development of a real estate app and would love to tap into your expertise. In your experience, which programming languages and frameworks have you found to be most effective for building robust and feature-rich real estate apps? Your insights and recommendations will be greatly …

Member Avatar for Gulshan_6
0
98
Member Avatar for tarun Nagar

**I am looking for resources for medical delivery app developers. I am particularly interested in learning about: ** * The different technologies that can be used to develop medical delivery apps. * The regulatory requirements for medical delivery apps. * The best practices for designing and developing a user-friendly medical …

Member Avatar for rproffitt
0
49
Member Avatar for Mindmade
Member Avatar for yddevelopers
-1
88
Member Avatar for Mindmade
-2
23
Member Avatar for Mindmade
Member Avatar for graycelltech
-2
144
Member Avatar for Mr.M

Hi DW, I'm having an issue on my Android studio I'm getting this error `Unable to resolve dependency for ':app@debug/compileClasspath': Could not resolve com.google.gms:play-services-measurement-api:[16.0.3].` Does anyone know how to solve this error?

Member Avatar for Mr.M
0
47
Member Avatar for AnuragJain12

The cost to build an app like BBC News will vary depending on many factors, including the complexity of the features, the platform compatibility, the design requirements, the rates of the mobile app development company, and even the geographical location of the news app development services. We’ll break down some …

0
33
Member Avatar for Mindmade
Member Avatar for Houssem Eddine

Hello everyone I have problem when I want to Add Project Dependency for my Palette's Components such as GridLayout, it tells me that : "This operation requires the library androidx.gridlayout:gridlayout:+. Problem: Inconsistencies in the existing project dependencies found. Version incompatibility between: - com.google.android.material:material:1.9.0@aar and: - androidx.appcompat:appcompat-resources:1.6.1@aar With the dependency: - …

0
46
Member Avatar for Mindmade

Hi Guyz, Why is Include high-grade encryption and a reliable SSL in your list of mobile app development security practices is important?

Member Avatar for rproffitt
-1
20
Member Avatar for Kare12

Hi, I am a beginner. I am trying to get a audio notification when the Android battery is full and low. I understand the logic. As in, check battery status, then if battery_full run Android Media Player. I am trying to use it for my home needs. This is the …

Member Avatar for Kare12
0
81
Member Avatar for Mindmade
Member Avatar for Toro_1

Hello! I have created a project on Android studio, and i use java as langage, i want to create a biometric system with fingerprint, what i mean is that i want to use android fingerprint device to get fingerprint id and store it in MySQL with some personal informations, so …

Member Avatar for vincentlnalls
0
247
Member Avatar for carlojay94

I am working as a Business Executive at UberDoo, a well-known mobile app development company specializing in Uber clone development. As an experienced IT specialist, I works relentlessly to give his clients the best mobile app solutions.

Member Avatar for Akira350lth
0
28
Member Avatar for Mindmade
Member Avatar for Mindmade
Member Avatar for Mindmade
Member Avatar for rproffitt
-2
23
Member Avatar for tarun Nagar

To hire an android app developer, you must consider the following steps: 1. Prepare a technical description of your project 2. Choose the most suitable model 3. Carry out technical interviews 4. Finalize the agreement and sign the contract Following these steps, you can easily hire an android app developer …

0
21
Member Avatar for Joshua_Jackson

A standard Android strategy includes various testing types: integration testing, system testing, operation testing and unit testing subject to the features of the tested mobile applications. Other types of tests would also be done if needed, based on the application’s features.

Member Avatar for rproffitt
0
38
Member Avatar for talhacharagh

I was trying to make an app On Android Studio. During the making of the app on Android studio, it gives an error. The error was about the Gradle bundle failing. I neglected this error while creating. I thought this might be due to the slow process and net speed. …

Member Avatar for rproffitt
0
149
Member Avatar for Ricky_13
Member Avatar for dimitrilc

## Introduction ## In a previous tutorial, we learned [how to set an exact alarm](https://www.daniweb.com/programming/mobile-development/tutorials/537920/android-native-how-to-launch-activity-from-an-exact-alarm). A permission called `SCHEDULE_EXACT_ALARM` was used in that tutorial. Initially, I thought that it was only a normal install-time permission, but I have recently found out that this specific permission also belongs to a rare …

2
425
Member Avatar for dimitrilc

## Introduction ## When working with ViewModels, instead of using the default, it is best practice that we inject coroutine dispatchers instead of hard-coding them. The reasoning behind this is that it is easier to switch to a testable dispatcher in tests. In this tutorial, we will learn how to …

2
1K
Member Avatar for dimitrilc

## Introduction ## When working with RecyclerView, sometimes we are required to scroll the RecyclerView in code, especially after addition of a list item. In this tutorial, we will learn how to scroll to specific positions on a RecyclerView. ## Goals ## At the end of the tutorial, you would …

1
831
Member Avatar for kesavan_2
Member Avatar for sinil.jacob

Hi, I am Pallav Das, an experienced mobile app developer with an experience in deriving apps using modern-day technologies.

Member Avatar for Dani
1
22
Member Avatar for Reverend Jim

In the last two weeks I renewed my cable package (TV/internet/phone) and in the process got upgraded to a new, faster modem. Three months ago I bought a new ChromeCast device and was able to connect it to my old modem/network using my existing Android 6 cell phone. Today I …

Member Avatar for Reverend Jim
3
218
Member Avatar for getfontfree

I have created a new website on Google but I am having problem using it on mobile. can you help me? here is the link of website https://getfontfree.com/

Member Avatar for Dani
0
26
Member Avatar for dimitrilc

## Introduction ## Taking what we already learned from the previous tutorials about drawing custom shapes and animating along elements along a Path. In this tutorial, we will combine what we learned about animation so far to create an alternating Yin Yang symbol. To those unfamiliar with the Yin Yang …

1
183
Member Avatar for dimitrilc

This is the second part of a series. The first part can be found [here](https://www.daniweb.com/programming/mobile-development/tutorials/538948/android-native-animate-alternating-yin-yang-symbol-part-1). ## Draw The Yin ## Now that we have the Yang drawn, we will continue onto the Yin. 1. Add the Paint for the Yin into the YingYang class. We will use a *stroke* style …

1
148
Member Avatar for dimitrilc

## Animation Strategy ## Welcome to part three of the tutorial; part two can be found [here](https://www.daniweb.com/programming/mobile-development/tutorials/538947/android-native-animate-alternating-yin-yang-symbol-part-2). For this animation, I have chosen to redraw the YinYang Drawable at each frame. This means recreating the YinYang object with different constructor parameters on every frame (the current YinYang implementation has a …

1
129
Member Avatar for dimitrilc

## Introduction ## Welcome to part two of the tutorial. Let us continue to learn how to animate views along a Path. Part one can be found [here](https://www.daniweb.com/programming/mobile-development/tutorials/538944/android-native-animate-view-along-path-part-1). ## Important Coordinates ## Both the sun and the moon in our app can occupy any one of the three important coordinates …

1
105
Member Avatar for dimitrilc

## Introduction ## In the last tutorial, we learned [how to draw complex shapes](https://www.daniweb.com/programming/mobile-development/tutorials/538943/android-native-draw-complex-shapes-using-the-path-class#post2288657) using a Path object. Using the concepts from the previous tutorial, we will now attempt to animate Views to move along a custom Path. ## Goals ## At the end of the tutorial, you would have …

1
156
Member Avatar for dimitrilc

## Introduction ## In the last tutorial, we learned [how to draw basic shapes](https://www.daniweb.com/programming/mobile-development/tutorials/538942/android-native-draw-basic-shapes-on-canvas) on Android using premade methods from the graphics library. In this tutorial, we step up the difficulty a notch by learning how to draw using the Path class. The Path class allows for drawing of technically …

1
469
Member Avatar for dimitrilc

## Introduction ## Even though the built-in vector library included in Android Studio contains many icons readily for use, you might eventually run into a situation where a custom icon is needed. In this tutorial, we will learn how to create our own icons from basic shapes drawn on a …

1
478
Member Avatar for dimitrilc

## Introduction ## Android includes many options to add animations to your app. In this tutorial, we will learn how to add a type of animation called frame-by-frame animation into our Android app. ## Goals ## At the end of the tutorial, you would have learned: 1. How to add …

1
414
Member Avatar for adnanfarooq518

I am using kadence theme on my websites one ishttps://inshotapps.com/ and second one is https://freefirebattles.com/ I build my these website on kadence theme the problem is when i open my website on desktop the view is normal but when i open it on mobile the text is spread i change …

Member Avatar for gce517
0
13
Member Avatar for Williams Brown
Member Avatar for Williams Brown
Member Avatar for dimitrilc

## Introduction ## Every Android View has a `layoutParams` property. This property tells the parent ViewGroup how a View wants to be laid out; it is also often used to change the size of a View. In this tutorial, we will learn how to animate Views while modifying their `layoutParams`. …

2
292
Member Avatar for dimitrilc

## Introduction ## Cards are a common widget for Material 3-themed applications. Expanding a card after the user performs a click action is a very common behavior. While Android can automatically render the new expanded card automatically, we will have to implement our own animation if we want a smooth, …

2
610
Member Avatar for dimitrilc

## Introduction ## When working on Espresso tests, you might have run into a situation where you need to verify what your app does when an activity is in a specific [**Lifecycle**](https://developer.android.com/reference/androidx/lifecycle/Lifecycle) state. In this tutorial, we will learn how to achieve this by using the **ActivityScenario** class. ## Goals …

2
115
Member Avatar for rajat_15

coding can be helpful in making a kid’s future more simplified, even if they do not want to pursue it as a career. People have been reaching out to do these online courses and there has been an increase in online programmes since the onset of COVID. The following courses …

Member Avatar for odeskavita
0
42
Member Avatar for Pekja

Hi! I'm here to ask for an opinion as someone who want to develop an Android app for the first time. Can someone suggest to me whether I should use Java or Kotlin to write my code? My app will constantly need to fetch and submit data to phpmyadmin which …

Member Avatar for logandavid
0
142
Member Avatar for 奇_925
Member Avatar for dimitrilc

## Introduction ## When following tutorials on Daniweb, you might have run into one that requires knowledge about **Dependency Injection** as a prerequisite. People might also sometimes use the term **Inversion of Control** interchangeably with DI. These terms are related to one another, but they are not the same. In …

2
287
Member Avatar for tyresebro1

I am currently a web developer and its the only thing I am good at in many fields of software development/programming. When starting as a web developer you should learn the three building blocks of web development such as HTML, CSS and JavaScript and also some server side language like …

Member Avatar for NehaPande
0
152
Member Avatar for Sydul2000

Hello, I am developing android java filemanager app.. I used checkbox to check 1/file.mp4 2/folder(files+sub folders) . How can i add copy paste feature for checked 1, 2 file folder fully at same time ?like -google filemanager app.. Advance Thanks

0
25
Member Avatar for Pekja

Hi! Can anyone tell me will it be different if I install android studio first then only I install JDK

Member Avatar for rproffitt
0
50
Member Avatar for Pekja

Can anyone help me on how can I fetch data of only current login user using Retrofit? For web development I do it like this "SELECT * FROM job_register WHERE job_assign ='{$_SESSION['username']}' AND job_status = '' " How can I implement this using Retrofit in Android?

Member Avatar for rproffitt
0
40

The End.