如何修复怪异的Designer视图错误?

时间:2019-05-03 07:22:05

标签: android xaml xamarin package android-support-library

由于我已更新为目标Android Pie,因此在设计器视图中出现了这个奇怪的错误,该错误似乎影响了support.v7软件包。 经过一段时间尝试自己弄清楚并搜索该问题后,我仍然无法解决。

构建工作正常,但没有设计人员来查看UI中的更改很麻烦

设计器错误的屏幕截图:

enter image description here

我尝试返回Oreo版本并重新下载所有软件包,以查看是否可以成功解决问题。

<!--Removed TextView and similar component information to reduce lines-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        app:title="ITM"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:minHeight="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        android:elevation="4dp"
        android:theme="@style/ThemeOverlay.AppCompat"/>
    <!--Main View-->
    <ScrollView
        android:layout_weight="1"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <android.support.v7.widget.GridLayout
            app:columnCount="2"
            app:orientation="horizontal"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:padding="20dp">
            <android.support.v7.widget.GridLayout
                app:columnCount="2"
                app:orientation="horizontal"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                app:layout_columnSpan="2"
                android:layout_marginLeft="20dp"
                android:layout_marginRight="20dp">
                <TextView/>
                <TextView/>
                <TextView/>
                <TextView/>
                <TextView/>
                <TextView/>
                <TextView/>
                <TextView/>
                <TextView/>
            </android.support.v7.widget.GridLayout>
            <View/>
            <TextView/>
            <Switch/>
            <TextView/>
            <TextView />
            <Switch/>
            <TextView/>
            <TextView/>
            <Switch/>
            <TextView/>
        </android.support.v7.widget.GridLayout>
    </ScrollView>
<!--Only part that shows is here-->
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <TextView/>
        <Button/>
    </LinearLayout>
</LinearLayout>

1 个答案:

答案 0 :(得分:0)

在我放弃在Visual Studio 2017上修复它之后,我发现安装2019版本可以完全解决此问题。

很难过,他们强迫您使用最新版本,但这是我能找到的唯一可行的选择