圆圈未显示

时间:2016-11-28 13:25:15

标签: android user-interface android-kenburnsview

Desired Result

Result

我正在获取动画图片。但是没有得到带有文字的圆圈。

代码: -

<?xml version="1.0" encoding="utf-8"?>
<developer.shivam.library.CrescentoContainer android:layout_width="match_parent"
    android:layout_height="300dp"
    xmlns:attribute="http://schemas.android.com/tools"
    android:elevation="20dp"
    android:scaleType="centerCrop"
    attribute:curvature="50dp"
    xmlns:android="http://schemas.android.com/apk/res/android">

    <com.flaviofaria.kenburnsview.KenBurnsView
        android:src="@drawable/goal_wallpaper"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <LinearLayout
        android:gravity="center"
        android:orientation="horizontal"
        android:weightSum="3"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <RelativeLayout
            android:layout_weight="0.8"
            android:layout_width="wrap_content"
            android:layout_height="100dp">

            <ImageView
                android:backgroundTint="@color/green"
                android:background="@drawable/circle1"
                android:layout_width="0dp"
                android:layout_height="100dp" />

            <TextView
                android:layout_centerInParent="true"
                android:textAppearance="@style/TextAppearance.AppCompat.Medium"
                android:text="140/80"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />

        </RelativeLayout>


        <de.hdodenhof.circleimageview.CircleImageView
            android:layout_marginEnd="@dimen/activity_horizontal_margin"
            android:layout_marginStart="@dimen/activity_horizontal_margin"
            android:src="@drawable/bp"
            android:layout_weight="1.4"
            android:layout_width="0dp"
            android:layout_height="match_parent" />


        <RelativeLayout
            android:layout_weight="0.8"
            android:layout_width="wrap_content"
            android:layout_height="100dp">

            <ImageView
                android:backgroundTint="@color/green"
                android:background="@drawable/circle1"
                android:layout_width="0dp"
                android:layout_height="100dp" />

            <TextView
                android:layout_centerInParent="true"
                android:textAppearance="@style/TextAppearance.AppCompat.Medium"
                android:text="140/80"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />

        </RelativeLayout>


    </LinearLayout>


</developer.shivam.library.CrescentoContainer>

我使用CrescentoContainer作为底部曲线图像,使用KenBurnsView作为动画图像。有时我也会出现内存错误。

0 个答案:

没有答案