如何让Android Cardview现在看起来像Android? (对齐底部)

时间:2015-07-06 19:05:01

标签: android xamarin android-cardview

我正在尝试创建一个Android视图,其中顶部有一个图像,文本位于底部,类似于Android现在的卡片。

我在使用“命令”按钮并将它们对齐所有文本时遇到问题,理想情况下用HR线分隔。

以下是我一直在使用的代码,无法使其看起来像android Now cards -

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
    android:id="@+id/card_view"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:layout_margin="5dp"
    card_view:cardCornerRadius="2dp"
    card_view:contentPadding="10dp">

    <LinearLayout
        android:id="@+id/card_view_inner_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="10dp">

            <TextView
                android:textColor="#0000FF"
                android:id="@+id/personaTextView1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentLeft="true"
                android:layout_alignParentStart="true"
                android:layout_toLeftOf="@+id/image_view"
                android:layout_toStartOf="@+id/image_view"
                android:textAppearance="?android:textAppearanceLarge"
                android:text="Some text here" />

            <TextView
                android:textColor="#00FFFF"
                android:id="@+id/personaTextView2"
                android:layout_below="@+id/personaTextView1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentLeft="true" 
                android:layout_toLeftOf="@+id/image_view"
                android:layout_toStartOf="@+id/image_view"
                android:text="Some text here" />

            <ImageView
                android:id="@+id/image_view"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:layout_alignParentEnd="true"
                android:src="@android:drawable/btn_radio" />

        </RelativeLayout>

        <View    
            android:layout_width="match_parent"
            android:layout_height="2dp"
            android:background="@android:color/darker_gray" />

        <RelativeLayout         android:layout_width="wrap_content"
                android:layout_height="wrap_content"  >

            <Button
                android:id="@+id/cardAction1"
                android:textColor="#00FFFF"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Action 1"
                android:layout_toLeftOf="@+id/cardAction2"
                style="?android:attr/borderlessButtonStyle"
            />

            <Button
                android:id="@+id/cardAction2"
                android:textColor="#00FFFF"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Action 2"
                style="?android:attr/borderlessButtonStyle"
            />

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

我(现在)遇到的问题是我无法让动作按钮起作用

enter image description here

2 个答案:

答案 0 :(得分:2)

您必须在视图中添加如下所示的平面按钮(请参阅this link):

<Button
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Your text"
    style="?android:attr/borderlessButtonStyle"
/>

然后,当然,由您来设计View

答案 1 :(得分:1)

这样的东西?

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
    android:id="@+id/card_view"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:layout_margin="5dp"
    card_view:cardCornerRadius="2dp"
    card_view:contentPadding="10dp">

    <LinearLayout
        android:id="@+id/card_view_inner_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="10dp">

            <TextView
                android:id="@+id/text_view1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentLeft="true"
                android:layout_alignParentStart="true"
                android:layout_toLeftOf="@+id/image_view"
                android:layout_toStartOf="@+id/image_view"
                android:textAppearance="?android:textAppearanceLarge"
                android:text="Some text here" />

            <TextView
                android:id="@+id/text_view2"
                android:layout_below="@+id/text_view1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentLeft="true"
                android:layout_alignParentStart="true"
                android:layout_toLeftOf="@+id/image_view"
                android:layout_toStartOf="@+id/image_view"
                android:text="Some text here" />

            <ImageView
                android:id="@+id/image_view"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:layout_alignParentEnd="true"
                android:src="@android:drawable/btn_radio" />

        </RelativeLayout>

        <View
            android:layout_width="match_parent"
            android:layout_height="2dp"
            android:background="@android:color/darker_gray" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dp"
            android:text="Some random text" />

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