4

J'ai utilisé recycleur Voir pour afficher CardView. Je l'ai fait dans le tiroir de navigation Activité principale. Mais ma vue de carte est affichée sur la barre d'action.Android: CardView à venir sur la barre d'action

app_bar_main

<RelativeLayout xmlns:android= 
"http://schemas.android.com/apk/res/android" 
xmlns:app="http://schemas.android.com/apk/res-auto" 
xmlns:tools="http://schemas.android.com/tools" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
tools:context="kb.niranjan.tvseries.MainActivity"> 

<android.support.v7.widget.Toolbar 
    android:id="@+id/toolbar" 
    android:layout_width="match_parent" 
    android:layout_height="?attr/actionBarSize" 
    android:background="?attr/colorPrimary" 
    app:popupTheme="@style/AppTheme.PopupOverlay" /> 

    <include layout="@layout/content_main" /> 

</RelativeLayout> 

content_menu

<android.support.v7.widget.CardView android:layout_width="match_parent" 
android:layout_height="wrap_content" 
xmlns:card_view="http://schemas.android.com/apk/res-auto" 
android:id="@+id/cv" 
card_view:cardCornerRadius="4dp" 
card_view:cardElevation="5dp" 
android:layout_margin="08dp" 
xmlns:android="http://schemas.android.com/apk/res/android" 
card_view:cardBackgroundColor="#263238" 
> 

<RelativeLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:padding="06dp" 
    > 

    <ImageView 
     android:layout_width="41dp" 
     android:layout_height="58dp" 
     android:id="@+id/person_photo" 
     android:layout_alignParentLeft="true" 
     android:layout_alignParentTop="true" 
     android:layout_marginRight="16dp" 
     /> 

    <TextView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:id="@+id/person_name" 
     android:layout_toRightOf="@+id/person_photo" 
     android:layout_alignParentTop="true" 
     android:textSize="30sp" 
     /> 

    <TextView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:id="@+id/person_age" 
     android:layout_toRightOf="@+id/person_photo" 
     android:layout_below="@+id/person_name" 
     /> 

</RelativeLayout> 

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

Je veux montrer mes cartes ci-dessous ActionBar

+0

je trouve une solution pour elle. Ajoutez une barre d'outils explicitement et utilisez noactionbar comme thème –

Répondre

1

Modifier votre app_bar_main

<LinearLayout xmlns:android= 
    "http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:orientation="vertical" 
    android:layout_height="match_parent"> 

<android.support.v7.widget.Toolbar 
    android:id="@+id/toolbar" 
    android:layout_width="match_parent" 
    android:layout_height="?attr/actionBarSize" 
    android:background="?attr/colorPrimary" /> 

<include layout="@layout/content_main" /> 

</LinearLayout> 
1

d'abord ajouter inclu de id mise en page: Pour exemple

<include android:id="@+id/card_layout layout="@layout/content_main" />" 

et dans la barre d'outils ajouter layout_above

<android.support.v7.widget.Toolbar 
    android:id="@+id/toolbar" 
    android:layout_width="match_parent" 
    android:layout_height="?attr/actionBarSize" 
    android:layout_above="@+id/card_layout" 
    android:background="?attr/colorPrimary"/>