Visual Studio,XML:Android:layout_weight没有突然声明?

时间:2018-06-05 10:27:43

标签: xml visual-studio

我现在正在布局一段时间,我很确定我知道如何使用重量或重力。但是从今天开始,VS似乎无法再对layout_weight或layout_gravity做任何事情了。它得到一个绿色下划线,它表示"属性未声明":

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="400dp">
        <LinearLayout
            android:layout_width="match_parent"
            android:orientation="horizontal"
            android:layout_height="50dp"
            android:background="#ffffff">
            <LinearLayout
                android:layout_width="0dp"
                android:layout_weight="100"
                android:background="#345543"
                android:layout_height="match_parent">
                <ImageButton
                    android:id="@+id/btn_profilepic_recview_chats"
                    android:background="@drawable/ripple"
                    android:src="@drawable/general_btn_magnefier"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content" />
            </LinearLayout>
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_weight="323"
                android:background="#123321"
                android:layout_height="0dp" />
        </LinearLayout>
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="100dp"
            android:background="#afebff" />
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:background="#ffffff" />
    </LinearLayout>
</android.support.v7.widget.CardView>

...另外,我注意到在我之前构建的xml文件中,这些属性现在也得到了绿色下划线。

此外,设计师现在只是忽略了所有的重量,因此设计现在变成了你知道的痛苦。

我做错了什么,或者VS有问题吗?我该如何解决这个问题?

由于

1 个答案:

答案 0 :(得分:0)

...构建并重新启动应用程序和程序似乎可以解决问题。它仍然强调属性,但它现在在设计师中构建它们......