1,414 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
-4
votes
0
answers
77
views
Android TV of version 9 API 28 getting the issue of row support fragment's text is getting overlap [closed]
While scrolling in the Android TV the text is getting overlapped this issue is only observed in Android 9 API level 28 , In the rest Android version's TV it is working fine.
0
votes
0
answers
76
views
Android TV : LazyColumn and focus [closed]
I started a new app dedicated to Android TV platform.
I try to display an Activity containing 2 or 3 columns using LazyColumn components. Each column are displayed correctly with the data in my lists....
0
votes
0
answers
21
views
How can I get search messages from Android TV when pairing is successful (using androidtvremote2)?
After conneting, I called msg.hasRemoteImeShowRequest() but when I turn on search on TV, it gives no response although other functions works
private suspend fun startListening(ip: String) = ...
0
votes
0
answers
46
views
Change brightness on zkdigimax monitor
I'm using kotlin on my android app, and i have this code to change the screen brightness, when I'm trying it on a tablet or phone, it works fine, but when i try it on a zk digimax monitor (Digital ...
0
votes
0
answers
69
views
Flutter (Android TV) — soft keyboard overlap/hides TextFormField
Problem:
I'm building a login screen for an Android TV app. The layout is a two-column panel (left: QR, right: email/password form). When the on-screen keyboard appears, the email field stays visible ...
0
votes
0
answers
58
views
Android TV Remote v2 Protocol: Backspace Not Working When Sending Single Characters
I'm implementing an Android TV Remote v2 protocol in Flutter/Dart. My goal is to send keyboard input from a mobile app to the TV. For most characters, everything works fine. However, the backspace key ...
0
votes
1
answer
69
views
Convert anonymous Firebase Auth session on TV client to a signed‐in user via a separate authenticated client?
I’m building a multi-platform healthcare app where:
Mobile & Web portal share the same Firebase backend and allow individual doctors to view a single patient stream at a time.
Android TV client (...
0
votes
0
answers
19
views
Why does context.getContentResolver().query throws "CursorWindowAllocationException: Could not create CursorWindow...." on some Android TV devices?
Uri uri
...
if (uri.getScheme() != null
&& (uri.getScheme().equals("content") || uri.getScheme().equals("file"))) {
try {
cursor = getActivity()....
0
votes
0
answers
42
views
Logcat spam from RHWC2 / rtk_gdma_post on TCL G60B Android TV when using SurfaceView
I'm developing an Android app that runs on a TCL G60B Android TV (chipset: Realtek RTD1319).
When my app uses a SurfaceView (or anything that involves hardware rendering like VideoView or WebView), I ...
1
vote
1
answer
220
views
Android TV Compose: How to auto-focus selected NavigationDrawerItem when ModalNavigationDrawer opens
Problem:
I'm developing an Android TV app using Jetpack Compose with ModalNavigationDrawer. When the drawer opens, I want the focus to automatically move to the currently selected NavigationDrawerItem ...
0
votes
2
answers
91
views
Android TV app shows 0 device support after submission
Edited the Post/Question for better understanding and with more information
I have uploaded an app update with android tv support and correctly included all manifest tag..
Still Play Console saying 0 ...
0
votes
0
answers
171
views
How to manage focus (and restore it) between TVLazyRow/LazyRow and focusable buttons in Android TV app?
I am developing an Android TV app using Jetpack Compose and D-pad navigation.
My main screen UI looks like this:
A Column as the main container
The first item is a TVLazyRow or a normal LazyRow (...
1
vote
0
answers
91
views
AbstractMethodError when using Java 8 default interface methods with minSdk below 24
I'm encountering the same issue as described in the following question:
AbstractMethodError when use Java 8 default interface methods and implementation
However, since my reputation is below 50, I ...
0
votes
0
answers
110
views
Jetpack Compose TV: Card click not working after returning from long press + fragment navigation
I'm working on an Android TV app using Jetpack Compose inside Fragments.
Here's my setup:
I have Fragment A that contains a TvLazyColumn with multiple custom Card Composables (which wrap a Material3 ...
0
votes
2
answers
395
views
Jetpack Compose - Is it possible to use focusRestorer in a LazyRow with changing content?
I am working on a TV app with many LazyRows of content. Most are static, but some can be changed depending on the user's actions. For example, a Keep Watching row with Cards that lead to content the ...