完成自定义软键盘的编写以及软键盘上面的备注和时间
在记录页面的代码底下加上下面的代码
<android.inputmethodservice.KeyboardView
android:id="@+id/frag_record_keyboard"
android:layout_width="match_parent" android:layout_height="wrap_content"
android:keyBackground="@color/grey0"
android:keyTextColor="@color/black"
android:focusable="true"
android:focusableInTouchMode="true"
android:paddingTop="1dp"
android:layout_alignParentBottom="true"
android:shadowColor="@color/white"
android:shadowRadius="0.0"/>
<RelativeLayout
android:layout_above="@id/frag_record_keyboard"
android:layout_width="match_parent" android:layout_height="wrap_content"
android:background="@color/white">
<TextView
android:id="@+id/frag_record_tv_time"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:text="2024年2月3日 16:59"
android:layout_alignParentRight="true"
android:padding="10dp"/>
<TextView
android:id="@+id/frag_record_tv_beizhu"
android:layout_width="match_parent" android:layout_height="wrap_content"
android:text="添加备注"
android:layout_toLeftOf="@id/frag_record_tv_time"
android:padding="10dp"/>
</RelativeLayout>
标签:frag,layout,安卓,笔记,content,记账,wrap,android,id From: https://www.cnblogs.com/czfznb/p/18027948