11

Użyłem LinearLayout w CardView, aby uzyskać wygląd przycisku logowania do mediów społecznościowych i wszystko działa dobrze, ale flagi Android Studio Element LinearLayout is not allowed here. Zastanawiałem się, dlaczego tak się dzieje? Mój xml jest taka:FlagarLayout oflagowane, jeśli używane w CardView

<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> 
+0

prawdopodobnie niektóre sdk hitches. oczyść swój projekt i spróbuj ponownie. –

+6

To jest bardziej podnośnik IDE. Czyszczenie nie działa, ale po prostu zrestartowanie Androida Studio to naprawił. – Blacklight

+0

Ah dziękuję :) – AmaJayJB

Odpowiedz

26

Wystarczy mieć właściwą odpowiedź, jak @Blacklight powiedział w komentarzach, to jest problem IDE więc ponowne uruchomienie powinno rozwiązać problem.

+2

jest to powiązany problem: https://code.google.com/p/ android/issues/detail? id = 81362 – gian1200

Powiązane problemy