返回列表 發帖

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>
複製代碼
Bill Tang     MSN:billtang@openplatform.com.hk
Openplatform Technology Co.,Ltd. 資訊坊科技有限公司  
無線工程施工、方案設計、無線產品、天饋材料、終端設備綜合供應商
Tel: 852-27491011  Fax: 852-81483532

返回列表