gpt4 book ai didi

android - 将图像添加到我的布局,其大小与屏幕 android 的尺寸成比例

转载 作者:行者123 更新时间:2023-11-30 03:25:07 26 4
gpt4 key购买 nike

在我的应用程序中,我有一张图像,其宽度和高度应占屏幕的 25%。我希望这是清楚的。这是我已经尝试过但不起作用的方法。谢谢。

<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="0.25"
android:src="@drawable/fish"
android:scaleType="fitCenter"
/>

最佳答案

  Just use this with Linear Layout

<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="match_parent"
android:orientation="vertical"
android:weightSum="100">




<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="25"
android:background="@drawable/ic_launcher"/>
</LinearLayout>

关于android - 将图像添加到我的布局,其大小与屏幕 android 的尺寸成比例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18354000/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com