All Questions
361 questions
2
votes
1
answer
115
views
Jetpack Compose Painter draw text
In my Jetpack Compose Android app, I used to have a "letter icon" Drawable that basically just draws some text. Now I'm trying to migrate that Drawable to a Compose Painter, but I can't find ...
0
votes
0
answers
9
views
How to customize Split window width from 100% in Android Studio
At the morning when I started my Android Studio and continue to work, by mistake I made Preview window width 100% (for Split Mode). I have searched for lot of answeres but no one is showing me the ...
1
vote
1
answer
47
views
Android: WebView displaying blank page when html string contains <style> tag [closed]
I need to present a dialog with html content, and for that I'm using an AlertDialog.Builder to create a dialog based on a custom view which includes a WebView.
The WebView renders correctly inside the ...
0
votes
1
answer
55
views
Flutter setting orientation to landscappe resets activity in android
Edit: I have a solution that worked for me.
I had to change the androidmanifest
from:
<activity
android:name=".MainActivity"
android:configChanges="orientation|keyboardHidden|...
0
votes
1
answer
41
views
Rendering issues in Android Studio, code compiles fine
I'm trying to solve for the case here -
https://developer.android.com/codelabs/basic-android-kotlin-compose-composables-practice-problems?continue=https%3A%2F%2Fdeveloper.android.com%2Fcourses%...
0
votes
0
answers
16
views
What is the Best Way to Display 40+ AutoCompleteTextViews and EditTexts in UI? Android Studio - Kotlin
I have a fragment which can have 20+ AutoCompleteTextViews and 20+ TextInputEditTexts - all of these are wrapped within their own TextInputLayout. The top level is a NestedScrollView and all of the ...
1
vote
0
answers
337
views
Flutter mobile app rendering green problem on specific device - Samsung A12 SM-A125F
I am developping an app with flutter for both iOS and Android.
I have internal testers for both of the plateforms, and until today I had around 20 testers on Android and 10 on iOS. Nobody had any ...
1
vote
0
answers
300
views
Rendering error in Android's image view by using custom made png file
I have a very strange error related to custom image Views in Android using self-made png files. This error might be difficult to debug. Still I just wanted to ask you guys here before not using the ...
1
vote
1
answer
348
views
Design Page Disappeared in Android Studio when Using Tab Layout
I was trying to use Tab Layout in my project. Whenever I add a TabLayout to the linear layout the design page disappears. Refreshing doesn't work. I can't even see the tab items in the component tree. ...
2
votes
0
answers
161
views
UE 4.27 Mobile Vulkan Input Attachment Data assert on first subpass
I have an issue with vulkan in Unreal Engine 4.27 on android. Unreals VulkanPipeline.cpp has assertion:
if (RemappingInfo.InputAttachmentData.Num())
{
// input attachements can't exist in a first ...
2
votes
1
answer
542
views
Android WebView bad rendering of CSS linear background with text overlay
I'm working on Xamarin Forms targeting Android 13 and since 2 weeks I'm fighting against an annoying rendering problem on a WebView which as far as I understood (by Googling 24/7) is based on the ...
2
votes
1
answer
113
views
Android Paint why is width from getTextBounds for space 0
I have some code I'm using to detect whether a given font supports a set of characters by rendering the character and checking its width. In the process I discovered width for a space character is 0. ...
0
votes
2
answers
950
views
After updating my Android Studio the emulator renders colors very badly
I just updated my Android Studio. I updated:
Android SDK Build-Tools 34-rc1
NDK (Side by side)
Android Emulator (to version 32.1.11)
Android SDK Platform-Tools (to version 34.0.0)
After updating those ...
1
vote
1
answer
101
views
Android C4droid Sfml not rendering anything after minimizing and reopening program
I am using the Sfml library on C4droid which has official sfml support. Everything works just fine, I can run the program normally and it renders graphics normally. But after i like minimize the app ...
0
votes
0
answers
116
views
How to slow down Android UI rending?
How can I slow down UI rending in Android to get an idea of how UI is rending?
There is an option in Developer Tools where you can slow down animation speed.
My UI is changing with some flashing, but ...