-
Notifications
You must be signed in to change notification settings - Fork 92
Home
Peter Yoon edited this page Jun 7, 2020
·
16 revisions
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]'
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>