我定義我的應用 它的按鈕EditText上看起來是這樣:爲什麼android鍵盤覆蓋我的EditText?
但是,當我專注於票據的EditText鍵盤是開放的,包括我所有的EditText,我不能看看我在EditText中輸入的內容。
當我隱藏鍵盤我知道我在輸入正確的文本
的EditText上的LinearLayout中的XML:
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Notes:"
android:id="@+id/textView"
android:textColor="#000000" />
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/editText"
android:focusable="true" />
</LinearLayout>
不..但UI設計是我做的。 – Yanshof
必須有其他解決方案 - 我這樣在其他一些應用程序。 – Yanshof