Board logo

標題: Android App - apps啟動時editText 不顯示軟鍵盤 [打印本頁]

作者: admin    時間: 2013-9-6 21:37     標題: Android App - apps啟動時editText 不顯示軟鍵盤

在 XML 檔中加入 android:focusableInTouchMode="true" 即可

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2.     android:layout_width="fill_parent"
  3.     android:layout_height="fill_parent"
  4.     android:orientation="vertical"
  5.     android:focusableInTouchMode="true">
  6.     <LinearLayout
  7.         android:id="@+id/linearLayout1"
  8.         android:layout_width="match_parent"
  9.         android:layout_height="wrap_content" >

  10.         <EditText
  11.             android:id="@+id/editText1"
  12.             android:layout_width="wrap_content"
  13.             android:layout_height="wrap_content"
  14.             android:layout_weight="20"
  15.             android:hint="在此輸入中文字">
  16.         </EditText>

  17.        <Button
  18.             android:id="@+id/button1"
  19.             android:layout_width="wrap_content"
  20.             android:layout_height="wrap_content"
  21.             android:layout_margin="1dp"
  22.             android:background="#FFB400"
  23.             android:clickable="true"
  24.             android:height="40sp"
  25.             android:text="清除"
  26.             android:textColor="#000000"
  27.             android:textSize="18dp"
  28.             android:width="60sp" />

  29.     </LinearLayout>
複製代碼





歡迎光臨 How2Do (http://forum.how2do.com.hk/) Powered by Discuz! 7.2