我有一个Frame Layout,里面有ImageView和TextView。我计划将该文本放在图片的中心。 问题是图像不适合,ImageView不会包装好内容的高度。看图片:
我尝试混合高度和(包装内容并匹配父级),但图片仍然不适合。 这是xml:
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
card_view:srcCompat="@drawable/tvrdjava"
android:id="@+id/imageView3" />
<TextView
android:text="TextView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/textView6"
android:textAlignment="center"
android:textColor="@android:color/white"
/>
</FrameLayout>
图片位于不同分辨率的不同可绘制文件夹中(hdpi,mdpi,xhdpi,xxhdpi,xxxhdpi)。
答案 0 :(得分:2)
你应该尝试使用RelativeLayout而不是
这样的东西<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="match_parent">
<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
app:srcCompat="@drawable/ok"/>
<TextView
android:id="@+id/editText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:textSize="30sp"
android:text="TextView"/>
</RelativeLayout>
答案 1 :(得分:0)
感谢@MatPag的想法。将此框架布局放在LinearLayout(垂直)中。
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:srcCompat="@drawable/tvrdjava"
android:id="@+id/imageView8"
android:adjustViewBounds="true"
android:cropToPadding="false" />
<TextView
android:text="TrTemp"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/textView3"
android:textColor="@android:color/holo_blue_dark"
android:textAlignment="center"
android:gravity="center"
/>
</FrameLayout>
答案 2 :(得分:0)
这对我有用。
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/homepage_background_imageView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="1"
android:adjustViewBounds="true"
android:src="@drawable/background_homepage"/>
</FrameLayout>