由于有很多关于多屏幕尺寸支持的帖子。 我有一个非常严重的疑问。 我想要显示两次图像,使它们在多个Android屏幕尺寸中并排,但问题是如何知道为此目的选择的图像的宽度和高度? 我为mdpi拍摄了48 * 48的照片,而对于其他hdpi xhdpi也是如此,但这对于它来说太小了。 那么有没有办法找出所需的尺寸? 我在图像视图中使用高度和宽度的包装内容来显示图像,但是在并排显示两个图像之后存在一些空间。我想让它适合屏幕。 我研究了多种屏幕尺寸以及如何调整mdpi的图像像素? 我怎么知道mdpi所需的图像大小?????这样我就可以根据hdpi和xhdpi制作图像尺寸。
答案 0 :(得分:0)
如果你想要每个50%
,布局重量是好的<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<ImageView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:src="@android:drawable/ic_media_next" />
<ImageView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:src="@android:drawable/ic_media_previous" />
</LinearLayout>