未声明'http://schemas.android.com/apk/res/android:layout_centerInParent'属性

时间:2017-01-26 02:19:25

标签: android xml android-layout xamarin

我在Xamarin为Android编程。 我试图将进度条集中在相对布局中。但是,我收到此消息:未声明“http://schemas.android.com/apk/res/android:layout_centerInParent”属性。

看下面的代码:

    <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="35"
            android:minWidth="25px"
            android:minHeight="25px">
            <ProgressBar
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/progressBar1"
                android:layout_centerInParent="true" />
        </RelativeLayout>

有人可以帮助我吗?

1 个答案:

答案 0 :(得分:0)

您的布局文件缺少android xml命名空间。 在布局中添加xmlns:android属性

xmlns:android="http://schemas.android.com/apk/res/android