All Questions
281,018 questions
Advice
0
votes
1
replies
35
views
Is the intent:// URI scheme a standard Android feature or a browser-specific implementation?
I am researching how deep linking works across different Android browsers. I noticed that using the intent:// syntax allows one browser to launch another or trigger specific app actions.
For example: ...
-3
votes
0
answers
64
views
Trying to understand the activity lifecycle of android [closed]
I am writing a simple pressure sensing android app that uses android 13+. The app senses pressure, and keeps track of it in a text file.
Not able to understand if it uses Java awt to manage its ...
0
votes
1
answer
100
views
how to programmatically get a photo from the device's memory
How to set image from download directory automatically?
I know image name and location, but I don't know what the URI should be.
Something like:
getImageUri(String imageName){
Uri uri = Uri.parse(&...
-1
votes
0
answers
68
views
React Native Android error: java.lang.String cannot be cast to java.lang.Boolean [closed]
I am building a React Native app (Expo) and my app crashes on Android with the following error:
java.lang.String cannot be cast to java.lang.Boolean
The error appears on the main screen (HomeScreen) ...
0
votes
0
answers
131
views
libxposed API 101: "cannot find symbol" for getModuleContext() despite extending XposedModule
Suggested Answer:
Headline: Use getModuleApplicationInfo() instead of getModuleContext() in API 101
In libxposed API 101, the method getModuleContext() is indeed deprecated or removed from the base ...
Best practices
0
votes
2
replies
76
views
Too many views in a scrollview
I need some good advice please. I have a scrollview with a TableLayout. The table consists of 5 columns so every TableRow consists of 5 Textviews. It's working very well, but I would like to add more ...
1
vote
0
answers
53
views
Termux Run command service doesn't return results bundle
I have an Android app and need to run termux commands from it and get results. I have this code in <package>/Utils/TermuxUtils.java
package com.example.myapplication3.Utils;
import android.app....
0
votes
0
answers
75
views
Query 4 Firebase Realtime DB nodes asynchronously and then transform the data in Android Java app
Here is my dilemma, I need to query ALL 4 nodes in Firebase Realtime DB in an Android Java app (I have this working fine in iOS):
PlayerInGroup
Users
PlayerPicks
Teams
I start by getting the ...
0
votes
0
answers
125
views
Android OpenGL ES 3.0: SIGSEGV in libGLESv2_adreno.so during texture type switching (2D & OES) after long-running sessions
Problem Description
I am experiencing a native crash (SIGSEGV) on an Android device (Qualcomm Adreno GPU) when rendering stickers using OpenGL ES 3.0. The crash occurs inside the Adreno driver (...
0
votes
1
answer
96
views
I'm trying to zoom in on the user's location but it doesn't work
It's for a school project. No matter how much i've tried changing the value or the command it just loads the map and move only a little bit (not even zooming) it's suppoesd to be a running app that ...
0
votes
1
answer
94
views
Viewpager2 (Horizontal and vertikal) doesn't refresh the view when calling notifyDataSetChanged()
Helo,
I have a Horizontal Aadapter for a ViewPager:
public class HorizontalAdapter extends FragmentStateAdapter { ... }
Inside the HorizontalAdapter I have creating 3 VerticalContainerFragments, ...
Tooling
0
votes
1
replies
87
views
Newland N950 POS SDK — UnsatisfiedLinkError on release build in Flutter plugin (extracted from system APK)
I'm building a Flutter app for the Newland N950 POS device that needs to print receipts using the device's built-in thermal printer. Since Newland doesn't publicly distribute their SDK, I extracted ...
-1
votes
0
answers
106
views
How to exclude packages from build
I want to use a part of my Java project as a module for Android app.
My settings.gradle include:
rootProject.name = "APref"
include ':AndroidPref'
include ':JPref'
project(':JPref')....
0
votes
0
answers
100
views
How to override onPermissionRequest on Cordova Android app
Quick context: The onPermissionRequest callback used for the Cordova Android WebView has some issues, which was already reported here. However, while that issue is not fixed, I'm trying to build a ...
1
vote
0
answers
102
views
Can't build Flutter apps behind corporate proxy
I'm having trouble building Android Flutter apps behind my organisation's proxy server on Windows. Flutter installed correctly and flutter doctor reports no issues. I've got my http_ and https_proxy ...