0
我想開發一個應用程序,其中用戶將在Android觸摸屏設備的屏幕上編寫並提示單詞將在上面的小部件中生成。當用戶點擊一個提示時,它將被放置在文本視圖中。我計劃使用gestureoverlayview類來設計寫作區域。使用Android的文本預測
我有我自己的識別器module.Hence我不會使用三星android目前的預測模塊。
我的問題是,我應該使用哪個小部件來顯示提示?
<?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>
你已經從你的身邊做了什麼? – Garry 2013-02-20 13:35:07
他問SO的問題... – Selvin 2013-02-20 13:40:27
@Garry我已經爲此目的開發了一個初始佈局。我已經創建了按鈕和文字瀏覽。我已經搜索了我需要使用的那種小部件。我不知道它的ListView。那正是我問這個問題的原因。可能是我沒有能夠正確地提出我的問題。希望你能建議一個類名? – 2013-02-20 14:09:44