在卡片视图中对齐文本视图下方的文本视图

时间:2016-02-02 15:15:15

标签: android android-layout android-cardview

我刚在我的应用程序中实现了卡片视图,并希望在白色空间波纹管图像中放入2个不同的文本(一个是18dp,第二个是9dp)。 另外我想把箭头图像放在卡片视图的右侧。但我在那里遇到问题。如果我使用2个不同的Textviews,我不能将另一个在第一个下面。如果我只使用一个文本视图,我就无法使文本有两种不同的大小。

这就是我所说的:

Image

正如您所看到的,这只是一个文本视图,其中包含Text1\nText2 我不能把18dp的大小放到Text 1和9dp到Text 2。

任何解决方案??

这是XML代码:

 <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:foreground="?android:attr/selectableItemBackground"
            android:clickable="true"
            android:id="@+id/Vjezbe"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            card_view:cardCornerRadius="2dp"
            android:layout_alignParentTop="true"
            android:layout_alignParentLeft="true"
            android:layout_alignParentStart="true"
            android:layout_marginBottom="10dp"
            android:layout_weight="1"
            card_view:cardBackgroundColor="#ffffff"
            android:layout_marginTop="55dp"
            android:onClick="Vjezbe">
         <LinearLayout
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <ImageView
                android:layout_width="match_parent"
                android:layout_height="130dp"
                android:id="@+id/imageView6"
                android:background="#000000"
                android:layout_marginBottom="3dp"
                android:layout_row="0"
                android:layout_column="0" />

             <TableRow
                 android:layout_width="match_parent"
                 android:layout_height="match_parent">

                 <TextView
                     android:layout_width="wrap_content"
                     android:layout_height="wrap_content"
                     android:textAppearance="?android:attr/textAppearanceLarge"
                     android:text="Text 1\nText 2"
                     android:id="@+id/textView25"
                     android:textSize="18dp"
                     android:layout_marginLeft="10dp"
                     android:layout_weight="0.9" />

                 <ImageView
                     android:layout_width="40dp"
                     android:layout_height="40dp"
                     android:id="@+id/imageView17"
                     android:background="@mipmap/strelica"
                     android:layout_marginRight="6dp"
                     android:layout_marginTop="1dp"
                     android:layout_marginBottom="1dp" />
             </TableRow>


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

1 个答案:

答案 0 :(得分:6)

而不是使用一个TextView使用方向为垂直的LinearLayout并添加两个文字视图

<LinearLayout android:orientation="vertical"     
    android:layout_width="match_parent" 
    android:layout_height="wrap_content"
    android:layout_marginLeft="10dp" 
    android:layout_weight="0.9" >

    <TextView android:layout_width="wrap_content" 
        android:id="@+id/textView25" 
        android:layout_height="wrap_content" 
        android:textAppearance="?android:attr/textAppearanceLarge" 
        android:text="Text 1" 
        android:textSize="18dp" /> 

    <TextView android:layout_width="wrap_content"  
        android:layout_height="wrap_content" 
        android:textAppearance="?android:attr/textAppearanceLarge" 
        android:text="Text 2" 
        android:textSize="18dp" /> 
</LinearLayout>