有什么办法,如何将ImageView放在TextView上?我尝试过多种方式,但TextView总是优先考虑"优先级"并显示在顶部(在图像上)。你有什么想法,怎么做? (右边的绿色文字 - " DNES"是ImageView和" sobota ..."是TextView)
XML布局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="220dp"
android:minHeight="220dp"
android:padding="4dp"
android:background="@drawable/event_card" >
<ImageView
android:id="@+id/event_poster"
android:layout_width="match_parent"
android:layout_height="220dp"
android:src="@drawable/stub_img_new"
android:scaleType="centerCrop" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="90dp"
android:minHeight="90dp"
android:background="#D9F0F0F0" >
<cus.haw.sat.ImageViewRounded
android:id="@+id/event_club_logo"
android:layout_width="78dp"
android:layout_height="78dp"
android:scaleType="fitXY"
android:layout_marginLeft="5dp"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true" />
<cus.haw.sat.AutofitTextView
android:id="@+id/event_title"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_toRightOf="@id/event_club_logo"
android:textSize="17sp"
android:layout_marginLeft="7dp"
android:layout_marginRight="7dp"
android:layout_alignParentTop="true"
android:layout_marginTop="5dp"
android:maxLines="2"
android:textStyle="bold" />
<cus.haw.sat.AutofitTextView
android:id="@+id/event_club_title"
android:layout_width="105dp"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/event_club_logo"
android:textSize="15sp"
android:layout_marginLeft="7dp"
android:gravity="bottom"
android:layout_marginRight="7dp"
android:layout_alignParentBottom="true"
android:layout_marginBottom="5dp"
android:maxLines="2" />
<ImageView
android:id="@+id/event_today"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="fitXY"
android:layout_alignParentRight="true"
android:layout_marginLeft="7dp"
android:layout_marginRight="20dp"
android:layout_alignParentBottom="true"
android:layout_marginBottom="5dp"
android:src="@drawable/ic_today"
/>
<TextView
android:id="@+id/event_date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:textSize="14sp"
android:layout_marginLeft="7dp"
android:layout_marginRight="7dp"
android:layout_alignParentBottom="true"
android:layout_marginBottom="5dp"
android:maxLines="3" />
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="29dp"
android:minHeight="39dp"
android:background="#D9F0F0F0"
android:layout_alignParentBottom="true"
android:paddingLeft="4dp"
android:paddingRight="4dp" >
<cus.haw.sat.AutofitTextView
android:id="@+id/event_bonus"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="12sp"
android:gravity="center"
android:layout_centerInParent="true"
android:maxLines="2" />
</RelativeLayout>
</RelativeLayout>
答案 0 :(得分:3)
RelativeLayout
或FrameLayout
的子项顺序控制Z轴。 后来的子项(例如,稍后在XML文件中)是Z轴上的更高。因此,如果您希望ImageView
浮动在TextView
之上,请确保将ImageView
定义为TextView
的{{1}}作为同一RelativeLayout
的子项}。
答案 1 :(得分:1)
更改儿童顺序:&#34;在以下方式之后&#34;
这应该有用;)