Questions tagged [d-pad]

A Directional Pad is a controller with directional keys, usually up right down left.

A Directional Pad is a controller with directional keys, usually up right down left.

See also:

85 questions
3
votes
0 answers

CollapsingToolbarLayout + NestedScrollView with D-Pad

I have a CollapsingToolbarLayout with a NestedScrollView that contains a TextView with a lot of content. Everything works fine on touch devices, but I'm unable to scroll the view using a D-Pad controller. In fact I can scroll the layout up and down…
Androidicus
  • 1,688
  • 4
  • 24
  • 36
3
votes
1 answer

Recyclerview and D-pad navigation

I'm developing an app that needs to use D-pad navigation in a RecyclerView. My problem is that although I set android:focusable=true in the items.xml(news_items), it doesn't seems to work. My question is: how should I implement D-pad navigation in…
Carlos Hernández Gil
  • 1,853
  • 2
  • 22
  • 30
3
votes
0 answers

Clear selection in ListView

I am trying to implement an appropriate behavior in my Android app if it runs on a device with dPad. There is an activity with a ListView. The selected item changes properly as a user presses dPad buttons. However, I am trying to set the selected…
Cimlman
  • 3,404
  • 5
  • 25
  • 35
3
votes
1 answer

How to call Android TV soft keyboard for edittext?

I'm developing an android TV app. I would like to SHOW soft keyboard input while Edittext in focus. I found the below code for common usage InputMethodManager imm = (InputMethodManager)…
frans84
  • 81
  • 1
  • 7
3
votes
1 answer

Android TV - How to stop D-pad auto navigate to next focus?

All the Android experts, I'm working on Android TV app. I face problem on Dpad navigation. i would like to stop auto Dpad navigate while KeyDown UP and DOWN. i wrote a listener on a focusable TextView, if TextView on key UP then scroll UP the…
frans84
  • 81
  • 1
  • 7
3
votes
1 answer

How to use DPAD to navigate through action menu item on Android 5

I am trying to add DPAD navigation support for my app. However, I found it is not possible to move the focus to the action menu items on Android 5. But it works fine on Android 4.4.4, see attached screenshot below, the robot icon is focused and…
Robin
  • 10,052
  • 6
  • 31
  • 52
3
votes
1 answer

surf in two listviews and lost focused

I have one fragment activity include two list fragments. I use D-pad to moving through lists. For example, when I click on listview1->tv, in listview2 shows tv channels . When I click listview1->movie, in listview2 shows movies list and so on. So…
Mohsen
  • 61
  • 1
  • 5
2
votes
0 answers

Jetpack Compose: Move focus between TextFields using D-Pad without onKeyEvent

I am building a data-entry application in Jetpack Compose that is intended to be used on a device with a physical keypad. In the traditional view system, Android's built-in focus traversal works in such a way where, for example, pressing the right…
2
votes
1 answer

Handle Talkback in a Xamarin app using a virtual DPAD

I have a Xamarin app that was not meant to handle the talkback functionality of android, because for it to work well it had to be build in a specific way. My app is a little order, and I simply can't make a do-over of the whole thing. So, what is…
Elydasian
  • 2,016
  • 5
  • 23
  • 41
2
votes
7 answers

Flutter Android TV app unable to select using D Pad

I'm developing an Android TV app using Flutter. I am able to run the app(the sample app for now). But I can't select anything using d pad select button. I found that I have to use something like this inorder to achieve this Shortcuts( shortcuts:…
2
votes
0 answers

Disable sound effects in a RecyclerView when swithcing between items using D-PAD

I want to disable the annoying sound effects when switching between items in a RecyclerView with a D-PAD and just get rid of them if possible in the whole application. I tried setting false in the…
someone
  • 300
  • 1
  • 9
2
votes
0 answers

Navigation with Remote on EPG

this is the method to scroll and navigate on my EPG, but i need to navigate with Remote on AndroidTV. I've read few things about setClickable, setFocusable but its working only on the main screen and i need to give inside to access each cells. So…
jboisjoli
  • 99
  • 1
  • 10
2
votes
1 answer

android OnkeyListener with filter stop onItemClicklistener from DPAD

This is my custom-dialog layout. I want to move the selector of days and load respective items in the grid below it. I could perform it via filter as said here But because of the filter I am not being able to perform the action that should be…
A_rmas
  • 784
  • 2
  • 10
  • 26
2
votes
1 answer

Android Keyboard - not reachable in cordova app

I am writing a kiosk application for a rooted Android 4.4 tablet. For this I am using cordova. This application can only be controlled with a bluetooth remote control. Unfortunetely there is no Touch, Mouse or Keyboard available. Using the app with…
Michael B
  • 1,660
  • 3
  • 28
  • 59
2
votes
1 answer

How to perform a fake DPAD click on Android?

I know how to identifie the DPAD click, but i want perform a DPAD click using the Volume UP and Down buttons. How can i do this? Thanks!