0

我正在尝试以这种方式通过布局文件设置文本编辑请求焦点标志:

<?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 抱怨我不能在那里使用。我怎么能做到这一点?

提前致谢。

4

1 回答 1

0

这里有两点需要注意:

  1. 仅仅因为 Visual Studio 在 XML 中显示警告并不意味着实际上存在问题。为 AXML 文档提供的模式只是为了帮助提供基本的智能感知,但不是 100%。在这种情况下,如果您编译并运行该应用程序,您会发现它实际上按预期工作。
  2. 但是,您的 XML 存在实际问题。您的结束 LinearLayout 标记拼写错误,这将触发构建错误。将其更新为</LinearLayout>将解决此问题。
于 2012-07-10T13:31:45.950 回答