4

我已使用recycler View显示CardView。我在导航抽屉主要活动中完成了这项工作。但是我的卡片视图正在操作栏上显示。Android:CardView即将登场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> 

我想下面的ActionBar

显示我的卡
+0

我为它找到一个解决方案。显式添加一个工具栏并使用noactionbar作为主题 –

回答

1

更改您的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

首先添加inclu德布局ID:例如

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

和工具栏添加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"/>