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中抱怨說我不能使用那裏。我怎麼能做到這一點?
在此先感謝。