gpt4 book ai didi

java - 如何让按钮适应 Android Studio 中的任何屏幕尺寸

转载 作者:行者123 更新时间:2023-12-01 16:39:00 24 4
gpt4 key购买 nike

所以我想要一个 ImageView,它是一个语音气泡和一个按钮,它是我的 Activity 中的企鹅。企鹅按钮应该位于右下角,而语音气泡 ImageView 应该位于企鹅上方的左侧一点。当我将所有宽度和高度设置为固定值时,它工作正常,但一旦我在另一台设备上打开它,它就会调整大小。我的问题是我找不到任何方法让这些元素按照我想要的方式适应不同的屏幕尺寸。下面是一些代码,可以在每个设备上调整它们的大小,但它调整大小为 50/50,因此 ImageView 占据了上屏幕的 50%,而按钮占据了下屏幕的 50%。我不知道如何将它们保持在某个位置,同时仍在不同屏幕上调整大小。欢迎任何帮助。

   <LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/ein_hintergrund2"
tools:context=".MainActivity">
<ImageView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
app:srcCompat="@drawable/speechbubble"
android:id="@+id/klick_textView"
android:layout_marginBottom="9dp"
android:contentDescription="@string/todo"/>
<Button
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:id="@+id/start_button"
android:background="@drawable/pinguin"/> </LinearLayout>

最佳答案

由于它有点复杂,我会根据不同的屏幕尺寸采用不同的布局。或者如果是风景等。

我建议看看 this page .

关于java - 如何让按钮适应 Android Studio 中的任何屏幕尺寸,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61901760/

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