Я создал пользовательскую клавиатуру, где пользователь может вводить значение в самой клавиатуре, проблема в том, что я не могу получить фокус для редактирования текста в представлении клавиатуры. Предоставьте некоторые предложения.
Вот XML-файл, в котором на пользовательской клавиатуре я добавил нужный пользовательский интерфейс. А также пользователь должен иметь возможность перемещаться между полем внутри клавиатуры и текущим полем фокуса
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white"
android:orientation="vertical">
<RelativeLayout
android:id="@+id/rl_login_home"
android:layout_width="match_parent"
android:layout_height="65dp"
android:background="@color/keyboard_grey"
android:visibility="visible">
<RelativeLayout
android:id="@+id/rl_pre_login"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="5dp"
android:layout_marginLeft="7dp"
android:layout_marginRight="7dp"
android:layout_marginTop="5dp"
android:background="@drawable/keyboard_rounded_bg"
android:visibility="visible">
<ImageView
android:id="@+id/imv_mfs"
android:layout_width="45dp"
android:layout_height="45dp"
android:layout_centerVertical="true"
android:layout_marginLeft="15dp"
android:background="@drawable/logo_mode_fin" />
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_toLeftOf="@+id/btn_login"
android:layout_toRightOf="@+id/imv_mfs">
<TextView
android:id="@+id/txv_msg1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:text="@string/welcome_to_mfs"
android:textColor="@color/black"
android:textSize="12dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/txv_msg1"
android:layout_centerHorizontal="true"
android:text="@string/login_to_continue_fund_transfer"
android:textColor="@color/black"
android:textSize="12dp" />
</RelativeLayout>
<Button
android:id="@+id/btn_login"
android:layout_width="65dp"
android:layout_height="30dp"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="7dp"
android:background="@drawable/button_background"
android:text="@string/login"
android:textAllCaps="false"
android:textColor="@color/white"
android:textSize="14dp" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/rl_login"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="5dp"
android:layout_marginLeft="7dp"
android:layout_marginRight="7dp"
android:layout_marginTop="5dp"
android:background="@drawable/keyboard_rounded_bg"
android:visibility="gone">
<RelativeLayout
android:id="@+id/rl_back"
android:layout_width="45dp"
android:layout_height="match_parent">
<ImageView
android:layout_width="20dp"
android:layout_height="18dp"
android:layout_centerInParent="true"
android:background="@drawable/left_arrow" />
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerVertical="true"
android:layout_toLeftOf="@+id/btn_login_next"
android:layout_toRightOf="@+id/rl_back">
<EditText
android:id="@+id/edt_login_mobile_number"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="5dp"
android:background="@null"
android:hint="@string/enter_mobile_number"
android:inputType="number"
android:textColorHint="@color/edittext_hint"
android:textSize="14dp" />
</RelativeLayout>
<Button
android:id="@+id/btn_login_next"
android:layout_width="65dp"
android:layout_height="30dp"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="7dp"
android:background="@drawable/button_background"
android:text="@string/next"
android:textAllCaps="false"
android:textColor="@color/white"
android:textSize="14dp" />
</RelativeLayout>
</RelativeLayout>
<com.mode.customkeyboard.LatinKeyboardView
android:id="@+id/keyboard"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="@color/white"
android:keyBackground="@drawable/key_background"
android:keyPreviewLayout="@layout/preview"
android:keyTextColor="@color/black"
android:paddingTop="0dp"
android:popupLayout="@layout/keyboard_popup_layout"
android:shadowRadius="0.0"
android:visibility="gone">
</com.mode.customkeyboard.LatinKeyboardView>
</LinearLayout>