gpt4 book ai didi

android - 如何调整 ScrollView 的大小以适合底部 60% 的屏幕?

转载 作者:太空狗 更新时间:2023-10-29 14:27:29 25 4
gpt4 key购买 nike

我正在尝试创建一个占屏幕底部大约 60% 的 ScrollView。屏幕处于横向模式, ScrollView 是此 Activity 中唯一的 View 元素。我可以通过强制布局边距(参见下面的 XML 代码)让它在 800x480 模拟器屏幕上工作,但是当我切换到更高分辨率的屏幕时, ScrollView 将占据屏幕的 60% 以上,因此它掩盖了一些背景图像的信息。有人可以建议如何将 View 保持在屏幕尺寸的 60% 左右,并且最好能够处理不同的屏幕尺寸吗?

这是我的代码:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/safety_base"
android:orientation="vertical"
android:padding="0dp" >

<ScrollView
android:id="@+id/scrollSafety"
android:layout_width="435dp"
android:layout_marginBottom="10dp"
android:layout_marginTop="120dp"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:scrollbars="none" >

<RelativeLayout
android:id="@+id/layoutSafety"
android:layout_width="fill_parent"
android:layout_height="wrap_content">

<ImageView
android:id="@+id/imgSafety"
android:contentDescription="@string/imgSafety_desc"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:src="@drawable/safety_info" />

</RelativeLayout>

</ScrollView>

</RelativeLayout>

最佳答案

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"

android:orientation="vertical"
android:padding="0dp" >

<ScrollView
android:id="@+id/scrollSafety"
android:layout_width="fill_parent"
android:layout_height="0px"
android:layout_weight="3"
android:background="@android:color/background_light"
android:scrollbars="none" >

<RelativeLayout
android:id="@+id/layoutSafety"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >

<ImageView
android:id="@+id/imgSafety"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:contentDescription="Blah blah"
android:src="@drawable/icon" />
</RelativeLayout>
</ScrollView>

<FrameLayout
android:layout_width="fill_parent"
android:layout_height="0px"
android:layout_weight="2"
android:visibility="invisible"
/>
</LinearLayout>

关于android - 如何调整 ScrollView 的大小以适合底部 60% 的屏幕?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10648594/

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