gpt4 book ai didi

Android - 将按钮放在 ImageView 上的确切位置

转载 作者:搜寻专家 更新时间:2023-11-01 07:52:37 25 4
gpt4 key购买 nike

我在这张图片上有一个 ImageView(人体)和按钮。 enter image description here

是否有可能以某种方式轻松地在 RelativeLayout 中为最不同的屏幕尺寸创建它?或者我应该为不同的屏幕尺寸创建不同的布局?

您将如何进行?你有什么建议?

最佳答案

看看 percent library .

它非常适合这样的事情,并且适用于所有设备。您必须计算出每个 PercentRelativeLayout 相对于您的人像的百分比宽度、高度和边距。

这是一个例子:

<android.support.percent.PercentRelativeLayout 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">

<View
app:layout_widthPercent="25%"
android:layout_height="100dp"
app:layout_marginLeftPercent="5%"
android:background="#ff0000" />

</android.support.percent.PercentRelativeLayout>

记得

compile 'com.android.support:percent:23.0.0'

关于Android - 将按钮放在 ImageView 上的确切位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32718087/

25 4 0