Skip to main content

Mobile Development Collective

A collective for developers who want to share their knowledge and learn more about mobile development practices and platforms
2.1m Questions
+126
26.1k Members
+169
Contact

Pinned content

View all 2 collections

Mobile Development admins have deemed these posts noteworthy.

Pinned
20 votes
10k views
Collection

Android Frequently Asked Questions

The Android-related questions that get asked repeatedly, gathered together in one place. What does a new developer always ask at some point? What are the most common questions when someone is ...
Berthold's user avatar
  • 101

Can you answer these questions?

View all unanswered questions

These questions still don't have an answer

0 votes
0 answers
18 views

Android Java Surfaceview, declaring and hiding

I have a main activity with a button. When I press the button a hidden Surfaceview get visible and an animation shows. It's working really well. I have two problems. What is the proper way to declare ...
0 votes
0 answers
11 views

LiveData update does not trigger recompostion

I am developing an android application, which in the viewModel updates a loginResponse of LiveData. In my mainActivity i observe this variable with observeAsState function. However when i update the ...
0 votes
0 answers
8 views

Compose SwipeToDismiss threshold is ignored and executed action when user lift finger

I am implementing SwipeToDismissBox using Jetpack Compose Material 3. I have two specific requirements: Custom Threshold: The swipe action should be triggered when the user drags more than 25% of the ...
0 votes
0 answers
32 views

How can I read the setting of the Liquid Glass design mode?

In iOS 26.1, a new system setting allows users to toggle the Liquid Glass design between 'Tinted' and 'Clear' modes. I need to programmatically read this preference to adapt my UI. Which specific ...
0 votes
0 answers
41 views

How to List pdf filenames [duplicate]

I cannot get a list of files ending with .pdf, I have tried everything, it lists everything else in the folder, except for the pdf's, what is wrong with this. The program then displays the list in a ...

Looking for an extra challenge?

View all bountied questions

These questions have a bounty on them

4 votes
1 answer
119 views
+50

RealityKit's custom light entity causes a black artifact on my 3D model

I’m working with RealityKit and I’m seeing a strange black artifact appear in the center of my rendered model. Here’s the relevant code: let camera = PerspectiveCamera() camera.transform = ...

Learn something new
These are the most recent articles in Mobile Development Collective
13 votes
926 views
2 minute read
Knowledge article

Basics of Kotlin coroutines

Basics of Kotlin coroutines What is a coroutine? A coroutine is a concurrency design pattern that you can use on Android to simplify code that executes asynchronously. They are“lightweight threads”. ...
amodkanthe's user avatar
  • 4,540
13 votes
1k views
1 minute read
How-to guide

Using SwiftData with SwiftUI

One thing we iOS developers should rejoice about is the development of SwiftData, at least if you are coding for a very new project and can forget about iOS versions below 17. We finally have an ...
otaviokz's user avatar
  • 392