標題:
Android App - apps啟動時editText 不顯示軟鍵盤
[打印本頁]
作者:
admin
時間:
2013-9-6 21:37
標題:
Android App - apps啟動時editText 不顯示軟鍵盤
在 XML 檔中加入 android:focusableInTouchMode="true" 即可
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:focusableInTouchMode="true">
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<EditText
android:id="@+id/editText1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="20"
android:hint="在此輸入中文字">
</EditText>
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="1dp"
android:background="#FFB400"
android:clickable="true"
android:height="40sp"
android:text="清除"
android:textColor="#000000"
android:textSize="18dp"
android:width="60sp" />
</LinearLayout>
複製代碼
歡迎光臨 How2Do (http://forum.how2do.com.hk/)
Powered by Discuz! 7.2