2014-09-03 37 views

回答

0

你正在尋找被稱爲focusable...財產,你需要設置它

<EditText 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:inputType="phone" 
    android:ems="10" 
    android:id="@+id/PhoneNumberInput" 
    android:hint="Numero telefonico" 
    android:layout_below="@+id/textView" 
    android:layout_centerHorizontal="true" 
    android:layout_marginTop="36dp" 
    android:focusable="true"/> 
+0

還不行。 – 2014-09-03 14:54:32

0
//Hide the Keyboard 
     InputMethodManager imm = (InputMethodManager)getSystemService(
       Context.INPUT_METHOD_SERVICE); 
     imm.hideSoftInputFromWindow(serverURL.getWindowToken(), 0); 

//Show the Keyboard 
imm.showSoftInputFromInputMethod(serverURL.getWindowToken(), 0); 

但在後可運行在視圖。

1

您可以在佈局中添加basise <requestFocus />(如描述here),或使用的EditText的功能requestFocus()上的活動/片段的onCreate方法(如描述here