0

Android中是否有任何特定组件,或者我必须使用视图来制作三角形(在图像中显示为圆形)并附加到卡上,但是当我上传图像时,它与图像中的不同。
图片

4

1 回答 1

0

那么有很多方法,但我的是:

您将在 photoshop 中创建一个类似的图像(当然要对其进行测量并定位所有设备(dp)),然后将其放在您的drawable文件夹中,并在您的 CardView 顶部调用它。

假设图像被调用image_traingle.jpg ,你可以这样做

<android.support.v7.widget.CardView
        android:layout_width="match_parent"
        android:onClick="Contract"
        android:layout_margin="10dp"
        app:cardCornerRadius="7dp"
        android:layout_height="90dp">

        <LinearLayout
            android:orientation="horizontal"
            android:layout_width="match_parent"
            android:layout_height="match_parent">
            <Imageview
                android:layout_width="wrap_content"
                android:gravity="left"
                android:background="@color/colorPrimary"
                android:src="drawable/image_triangle"
                android:layout_height="match_parent" />

                  .
                  .
                  .
        </LinearLayout>


    </android.support.v7.widget.CardView>
于 2017-01-23T11:08:52.037 回答