Skip to content
Peter Yoon edited this page Jun 7, 2020 · 16 revisions

Usage

Screen resolution : 1280x720

Keymap with generic PC keyboard

  • F1 : Home
  • F2 : Back

ADB connection

  • Boot the android image and connect ethernet.
  • Check IP address of the board at Settings->Network & Internet
  • At host do 'adb connect [IP address]'

Use GuidedActionEditText for TvSettings password input

To enable Keyboard enter-key for Wifi password entrance,

Apply following patch under packages/apps/TvSettings

Settings/res/layout/setup_password_item.xml
@@ line 35
-   <EditText
+   <androidx.leanback.widget.GuidedActionEditText
        android:id="@+id/guidedactions_item_title"
        style="@style/Setup.Action.TextInput"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:focusable="true"
        android:gravity="center_vertical"
        android:imeOptions="actionNext|flagNoExtractUi"
+       android:inputType="text" />
-       android:inputType="text">
-   </EditText>
Clone this wiki locally