我想开发一个应用程序,用户将在 android 触摸屏设备的屏幕上书写,并在上面的小部件中生成单词提示。当用户单击提示时,它将被放置在 Textview 的上方。我打算使用gestureoverlayview类来设计书写区域。
我有自己的识别器模块。因此我不会使用三星安卓中的预测模块。
我的问题是,我应该使用哪个小部件来显示提示?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="10">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:weightSum="5"
android:layout_weight="3">
<TextView
android:id="@+id/textView1"
android:layout_width="0dip"
android:layout_height="0dip"
android:layout_weight="2"
android:text="Hello"
/>
<ListView
android:id="@+id/ListView1"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_weight="3">
</ListView>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="5"
android:layout_weight="6">
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="6"
android:layout_weight="1">
</LinearLayout>
</LinearLayout>