在Android中自定义行与循环ImageView和textview

时间:2017-09-27 05:51:28

标签: android android-imageview

我正在尝试为RecyclerView创建自定义行。这是我的自定义行布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="180dp"
    android:layout_margin="5dp"
    android:background="#00000000">

    <FrameLayout
        android:id="@+id/customLevelLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

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

            <ImageView
                android:id="@+id/levelImage"
                android:layout_width="160dp"
                android:layout_height="160dp"
                android:layout_above="@+id/gameText"
                android:layout_centerInParent="true"
                android:scaleType="fitXY"
                android:src="@drawable/circular_background" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerInParent="true"
                android:text="1"
                android:textColor="#fff"
                android:textSize="45sp" />

            <TextView
                android:id="@+id/gameText"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_alignParentBottom="true"
                android:layout_centerHorizontal="true"
                android:layout_marginTop="10dp"
                android:gravity="center"
                android:textColor="#000"
                tools:text="Tracing" />
        </RelativeLayout>

        <ProgressBar
            android:id="@+id/gameProgressBar"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="#fff"
            android:indeterminate="true"
            android:padding="45dp"
            android:visibility="gone" />
    </FrameLayout>

    <ImageView
        android:id="@+id/lockImage"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/lock_background"
        android:padding="45dp"
        android:src="@drawable/lock"
        android:visibility="gone" />
</RelativeLayout>

这就是它的样子:

enter image description here

问题是,我必须定义自定义行的预定义高度,即当前170dp。我因此遇到了两个问题:

1)如果我在小屏幕或平板电脑设备中打开应用程序。自定义行看起来很丑,即我松开ImageView的圆形形状。

2)如果布局略有变化,文字不会保留在中心。

4 个答案:

答案 0 :(得分:1)

试试这个。您可以使用Linearlayout作为root用户,而不是图片和文字用RelativeLayout

<?xml version="1.0" encoding="utf-8"?>
   <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="5dp"
    android:background="#00000000"
    android:orientation="vertical">

    <FrameLayout
        android:id="@+id/customLevelLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">

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

                <ImageView
                    android:id="@+id/levelImage"
                    android:layout_width="160dp"
                    android:layout_height="160dp"
                    android:layout_centerInParent="true"
                    android:scaleType="fitXY"
                    android:src="@drawable/circular_background" />

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_centerInParent="true"
                    android:text="1"
                    android:textColor="#fff"
                    android:textSize="45sp" />

            </RelativeLayout>

            <TextView
                android:id="@+id/gameText"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_alignParentBottom="true"
                android:layout_centerHorizontal="true"
                android:layout_margin="10dp"
                android:gravity="center"
                android:textColor="#000"
                tools:text="Tracing" />
        </LinearLayout>

        <ProgressBar
            android:id="@+id/gameProgressBar"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="#fff"
            android:indeterminate="true"
            android:padding="45dp"
            android:visibility="gone" />
    </FrameLayout>

    <ImageView
        android:id="@+id/lockImage"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/lock_background"
        android:padding="45dp"
        android:src="@drawable/lock"
        android:visibility="gone" />
</LinearLayout>

答案 1 :(得分:1)

在您的代码中尝试此操作。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:app="http://schemas.android.com/apk/res-auto"
            xmlns:tools="http://schemas.android.com/tools"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="5dp"
            android:background="#00000000">

<FrameLayout
    android:id="@+id/customLevelLayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

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

            <ImageView
                android:id="@+id/levelImage"
                android:layout_width="160dp"
                android:layout_height="160dp"
                android:layout_centerInParent="true"
                android:scaleType="fitXY"
               android:src="@drawable/circular_background" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerInParent="true"
                android:gravity="center"
                android:text="1"
                android:textColor="#fff"
                android:textSize="45sp"/>
        </RelativeLayout>


        <TextView
            android:id="@+id/gameText"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="10dp"
            android:gravity="center"
            android:textColor="#000"
            tools:text="Tracing"/>
    </LinearLayout>

    <ProgressBar
        android:id="@+id/gameProgressBar"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#fff"
        android:indeterminate="true"
        android:padding="45dp"
        android:visibility="gone"/>
</FrameLayout>

<ImageView
    android:id="@+id/lockImage"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/lock_background"
    android:padding="45dp"
    android:src="@drawable/lock"
    android:visibility="gone" />
</RelativeLayout>

enter image description here

答案 2 :(得分:0)

使用约束布局,它可以帮助您像拖放和添加约束一样设置图像

答案 3 :(得分:0)

支持多屏幕。首先,您必须通过此链接 enter link description here

修复第一期后,第二期也会得到修复