当我添加到布局中时,xamarin中的EditText问题

时间:2018-12-04 14:57:32

标签: xamarin xamarin.android

我有导航菜单Xamarin解决方案。将编辑文本添加到布局中时出现问题... 那是我的代码:

<FrameLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:showIn="@layout/app_bar_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:id="@+id/linea1">
        <LinearLayout
            android:id="@+id/linear21"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:orientation="vertical">
                <EditText
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:hint="جستجو..."
                    android:id="@+id/TXT_Search" />
                <GridView 
                    xmlns:android="http://schemas.android.com/apk/res/android"
                    android:id="@+id/gridview1"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:numColumns="2"
                    android:verticalSpacing="0dp"
                    android:horizontalSpacing="0dp"
                android:stretchMode="columnWidth"/>
        </LinearLayout>
        <android.support.v4.widget.ContentLoadingProgressBar
            android:id="@+id/progressbar1"
            style="?android:attr/progressBarStyleLarge"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
             android:layout_gravity="center"/>
</FrameLayout>

运行时出现错误:Android.Views.InflateException:

但我删除了“编辑文本”功能。在我的代码中编辑文本有问题... 而且我在空解决方案中测试我的代码是否有效。

0 个答案:

没有答案