ich möchte icon mit name in cardview setzen. Aber nicht in der Lage, dies zu tun.cardView icon und name alignment issue in xml
Die Ausrichtung ist nach der Verwendung dieses XML nicht korrekt.
activity_home
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/test_image"
android:src="@drawable/test"
android:layout_width="match_parent"
android:layout_height="240dp"
android:scaleType="fitXY" />
<android.support.v7.widget.CardView
android:id="@+id/card_view"
android:layout_width="match_parent"
android:layout_height="170dp"
android:layout_gravity="center"
android:layout_margin="@dimen/card_margin"
android:elevation="3dp"
card_view:cardCornerRadius="@dimen/card_album_radius">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<ImageView
android:id="@+id/location"
android:src="@drawable/location"
android:layout_width="80dp"
android:layout_height="100dp"
android:paddingLeft="20dp"
android:paddingTop="30dp"
android:text="Location" />
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="20dp"
android:paddingTop="10dp"
android:layout_below="@+id/location"
android:text="Location"
android:textSize="15dp"
android:textColor="#01458e"
android:textStyle="bold"
/>
<ImageView
android:id="@+id/deals"
android:src="@drawable/deals"
android:layout_width="80dp"
android:layout_height="100dp"
android:paddingLeft="40dp"
android:layout_toRightOf="@+id/location"
android:text="Deals"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="40dp"
android:paddingTop="10dp"
android:layout_toRightOf="@+id/location"
android:layout_below="@+id/deals"
android:text="Deals"
android:textSize="15dp"
android:textColor="#01458e"
android:textStyle="bold" />
<ImageView
android:id="@+id/cuisine"
android:src="@drawable/cuisine"
android:layout_width="60dp"
android:layout_height="80dp"
android:paddingTop="10dp"
android:paddingLeft="40dp"
android:layout_toRightOf="@+id/deals"
android:text="Cuisine"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="20dp"
android:paddingTop="10dp"
android:layout_alignParentRight="true"
android:layout_toRightOf="@+id/cuisine"
android:layout_below="@+id/cuisine"
android:text="Cuisine"
android:textSize="15dp"
android:textColor="#01458e"
android:textStyle="bold" />
</RelativeLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >
</LinearLayout>
</android.support.v7.widget.CardView>
</LinearLayout>
wie dieses Bild sein, die ich nach der Verwendung dieser wie Bild bin immer die unter
ist