我开始使用Xamarin工作室,我已经构建了最基本的表单项目。在教程中,它展示了如何编辑Main.xml
中的布局,该布局应该在我的解决方案中缺少的Resources/layout
中。因此,当我手动添加它时,它会失败并显示错误消息The layout contains malformed XML
和另一个Root element is missing
。当我在记事本中打开Main.xml
时,我可以看到内容为<?xml version="1.0" encoding="UTF-8" ?>
。
适当的空白Main.xml的内容应该是什么样的?
答案 0 :(得分:1)
检查标记是否正确开始和关闭;例如,
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:background="@drawable/fondomizzou" **/>**
NOT
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:background="@drawable/fondomizzou"
**</RelativeLayout> />**
答案 1 :(得分:0)