gpt4 book ai didi

java - LinearLayout 在小型设备中没有响应

转载 作者:行者123 更新时间:2023-12-01 11:40:28 25 4
gpt4 key购买 nike

我的 Android 应用程序中有一个布局文件:

<?xml version="1.0" encoding="utf-8"?>
<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:background="@color/player_background"
android:gravity="center_horizontal"
android:orientation="vertical"
tools:context=".Fragments.PlayerFragment">

<ProgressBar
android:id="@+id/progress_bar_player"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="5dp"
android:theme="@style/ProgressBarStyle"
android:visibility="invisible" />

<TextView
android:id="@+id/title_label"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:gravity="center"
android:text="Title"
android:textColor="@color/white"
android:textSize="24dp" />

<ImageView
android:id="@+id/view_imageview"
android:layout_width="280dp"
android:layout_height="280dp"
android:layout_marginTop="10dp"
android:background="@color/white" />

<TextView
android:id="@+id/status_label"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:gravity="center"
android:text="Status"
android:textColor="@color/white"
android:textSize="20dp" />

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp">

<ImageButton
android:id="@+id/play_pause_btn"
android:layout_width="70dp"

android:layout_height="70dp"
android:layout_centerHorizontal="true"
android:background="@drawable/round_button"
android:gravity="center_vertical|center_horizontal"
android:padding="20dp"
android:scaleType="fitCenter"
android:src="@drawable/play_btn" />

<ImageButton
android:id="@+id/sleep_timer_btn"
android:layout_width="70dp"
android:layout_height="70dp"
android:layout_marginLeft="30dp"
android:layout_toRightOf="@+id/play_pause_btn"
android:background="@drawable/round_button"
android:gravity="center_vertical|center_horizontal"
android:padding="20dp"
android:scaleType="fitCenter"
android:src="@drawable/sleep_btn" />

<ImageButton
android:id="@+id/share_btn"
android:layout_width="70dp"
android:layout_height="70dp"
android:layout_marginRight="30dp"
android:layout_toLeftOf="@+id/play_pause_btn"
android:background="@drawable/round_button"
android:gravity="center_vertical|center_horizontal"
android:padding="20dp"
android:scaleType="fitCenter"
android:src="@drawable/share_btn" />

<TextView
android:id="@+id/sleep_timer_label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/sleep_timer_btn"
android:layout_alignLeft="@+id/sleep_timer_btn"
android:layout_alignRight="@+id/sleep_timer_btn"
android:layout_marginTop="5dp"
android:gravity="center"
android:text="Status"
android:textColor="@color/white"
android:textSize="15dp" />

</RelativeLayout>

<SeekBar
android:id="@+id/volume_seek_bar"
android:layout_width="match_parent"
android:layout_height="40dp"
android:theme="@style/Volume_Seekbar"
android:paddingStart="30dp"
android:paddingEnd="30dp"/>

</LinearLayout>
它在大多数设备中都能正常工作,但在小屏幕设备中我看不到 SeekBar因为它从屏幕上消失了。知道如何解决吗?

最佳答案

您在 View 上使用了非常大的固定尺寸,并且因为 不同的手机有不同的屏幕尺寸似乎在某些设备上有效的东西实际上在另一台设备上无效
例如 - 在高度为 300dp 的较小设备中观看次数总计为 400dp由于屏幕尺寸小,您将没有足够的空间来观看某些 View ,这就是您看不到 View 的原因。

您可以使用 ConstraintLayou t 让你的屏幕响应,或者如果你想保持你当前的布局结构,你可以使用以下库来缩放 dp 的大小:
sspsdp为您的 View 和文本获取可缩放的大小单位。

另一种选择是用 ScrollView 包裹你的布局。 ,为您的屏幕提供可滚动选项,这样您就可以“看到”屏幕上的所有 View - 请注意,这对您的用户来说可能并不直观。

关于java - LinearLayout 在小型设备中没有响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63111984/

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