2012-07-10 51 views
0

我正在嘗試設置給一個文本編輯reqeust焦標誌通過佈局文件是這樣的:用monodroid指定編輯文本的requestfocus標誌?

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical" > 

    <EditText 
     android:id="@+id/etEditText1" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:ems="10"> 
     <requestfocus /> 
    </EditText> 
</LienarLayout> 

的問題是,Visual Studio中抱怨說我不能使用那裏。我怎麼能做到這一點?

在此先感謝。

回答

0

有兩件事情,這裏要注意:

  1. 只是因爲Visual Studio顯示的XML警告並不意味着實際上存在一個問題。爲AXML文檔提供的模式僅僅是爲了提供基本的智能感知,但不是100%。在這種情況下,如果您編譯並運行應用程序,您會發現它實際上按預期工作。
  2. 但是,您的XML存在一個實際問題。您的關閉LinearLayout標記拼寫錯誤,將觸發構建錯誤。更新到</LinearLayout>將解決此問題。