1,416,809 questions
3
votes
0
answers
37
views
Android "paddingHorizontal" Doesn't Work on TextInputEdieText
XML:
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/name_inputLayout"
android:layout_width="match_parent"
android:layout_height="...
0
votes
0
answers
27
views
How i change height of DropdownMenuItem?
I am creating an auto-complete TextField using ExposedDropdownMenuBox in Jetpack Compose. I am using a custom component, SpotifyTextField that has a fixed height of 48.dp.
My goal is to make each ...
0
votes
1
answer
32
views
Cannot get the current swiped position in grid with onGloballyPositioned
I am trying to trigger functions while user is swiping on cells in a grid.
However, functions are triggered in random positions, even outside of the grid bounds.
What do I need to change to fix?
@...
1
vote
0
answers
20
views
Samsung Calendar : empty event when opened with ACTION_VIEW intent
To open an existing event from its ID, I use an Intent to open the phone's default calendar app.
Since November 2025, I have had many users with Samsung devices who have encountered an issue with ...
2
votes
0
answers
56
views
Android (Linux) libc problems when creating an execuatable shared object
I have 2 files:
crt.c:
const char service_interp[] __attribute__((section(".interp"))) = "${LD_SO}";
extern void _exit (int __status) __attribute__ ((__noreturn__));
int main();
...
0
votes
0
answers
39
views
Translate escaped string from XML file
Let's assume I have the string "F%c3%bcr%20alle" in a xml file. It should translate to "Für alle". I can do the unescaping with JavaScript:
let decoded = decodeURIComponent("F%...
1
vote
1
answer
36
views
Manifest Merge Error when using Blueline Kotlin lIbrary
I'm currently learning on how to use thermal printer, and found a library named Blueline. But when i implement it, app can't compile due to Manifest merger failed with multiple errors, see logs
This ...
1
vote
0
answers
41
views
Firestore only updates when accessed through a specific Android activity
I'm working on an Android app where users can add and remove restaurants from their favourites via the RestaurantPage activity. When I access the RestaurantPage activity from the UserFavourites ...
0
votes
0
answers
23
views
Firebase Firestore Enterprise edition - Set rules for users in the database
How to create the rules and connect (read / write using the firestore database) from an android app?
Google Firestore Editions Overview
val db = Firebase.firestore
val userData = hashMapOf(
"...
0
votes
0
answers
30
views
Kotlin/Android app: RTMP streaming not working with WebSocket trigger, import issues
I'm trying to build a simple Android app in Kotlin that connects to a WebSocket server and starts an RTMP stream when I send a command. I want the app to stay idle until the user tells it to start ...
0
votes
0
answers
33
views
Android Material3 Outlined Button Looks Different from Guideline
XML:
<Button
android:id="@+id/send_button"
style="@style/Widget.Material3.Button.OutlinedButton"
android:layout_width="wrap_content"
android:...
1
vote
1
answer
143
views
How to avoid duplicated Compose Multiplatform resources (strings & drawables) across core and feature modules?
I'm working on a Compose Multiplatform project (CMP) with multiple feature modules.
Each feature module contains a composeResources folder with drawable and values (strings,...) inside.
The issue is ...
2
votes
1
answer
122
views
Is it possible to load a function symbol from an executable
I have 2 files:
foo.c:
#include <stdio.h>
int Main(int a) {
printf("A%dB",a);
}
int main() {
return Main(1);
}
bar.c:
extern int Main(int);
int main() {
return Main(2);
}
...
-3
votes
0
answers
38
views
mesibo Compilation Error: Unresolved reference 'MessageParams' in Mesibo Android SDK 2.7.19 (Kotlin)
I am integrating the Mesibo Android SDK (version 2.7.19) into my Kotlin application. I need to implement the Mesibo.MessageListener interface to receive real-time messages, but I am facing a ...
0
votes
1
answer
35
views
How to debug an app once it's in the field
I've used log messages extensively for debugging my app during development using Android Studio. It concerns me how I will debug problems users may report when the app published and out there in the ...