部署我的应用程序时出现此错误:您必须提供layout_width属性

时间:2016-10-18 16:02:11

标签: c# android xamarin

我要在我的应用程序中构建一个搜索选项卡,我的布局代码在这里:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout >
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:orientation="vertical"
</LinearLayout>
<EditText
android:id="@+id/etSearch"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:background="@drawable/edit_text_style"
android:hint="Search Friends"
android:textColor="#0000"/>
</FrameLayout>

我的Main.axml

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout >
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:orientation="vertical"
 </LinearLayout>
 <EditText
 android:id="@+id/etSearch"
 android:layout_height="wrap_content"
 android:layout_width="match_parent"
 android:background="@drawable/edit_text_style"
 android:hint="Search Friends"
 android:textColor="#0000"/>
 </FrameLayout>

当我部署我的应用程序时出现此错误:     您必须提供layout_width属性 任何人都可以帮助我吗?

1 个答案:

答案 0 :(得分:0)

您的LinearLayoutmatch_parentEditText

没有空格