如果在CardView中使用,则会标记LinearLayout

时间:2014-12-12 09:48:25

标签: android android-layout android-linearlayout android-cardview

我在CardView中使用了一个LinearLayout来获得一种社交媒体登录按钮外观,它运行良好,但Android Studio标记为Element LinearLayout is not allowed here。我想知道为什么会这样呢?我的xml是这样的:

<android.support.v7.widget.CardView
            xmlns:card_view="http://schemas.android.com/apk/res-auto"
            android:layout_below="@id/cv_fb"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            card_view:cardElevation="3dp"
            >

            <LinearLayout

                android:id="@+id/ll_entitlement_extend_google"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="horizontal"
                android:background="@color/white"
                android:clickable="true"
                android:gravity="center"
                android:paddingTop="10dp"
                android:paddingBottom="10dp"
                >

                <ImageView
                    android:layout_weight="1"
                    android:layout_width="75dp"
                    android:layout_height="75dp"
                    android:src="@drawable/google_icon"/>

                <TextView
                    android:layout_weight="1"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Connect with Google +"/>

                <ImageView
                    android:layout_weight="1"
                    android:layout_width="25dp"
                    android:layout_height="25dp"
                    android:src="@drawable/ic_chevron_right_black"/>


            </LinearLayout>
        </android.support.v7.widget.CardView>

2 个答案:

答案 0 :(得分:26)

只是得到一个正确的答案,正如@Blacklight在评论中所说,这是一个IDE问题,所以重新启动它应该可以解决问题。

答案 1 :(得分:2)

除了其他建议和上述答案外,如果我没有将支持库升级到AndroidX(在本例中为CardView),也会发生此问题。所以从

android.support.v7.widget.CardView

将需要更改为

androidx.cardview.widget.CardView

警告将消失。

enter image description here