gpt4 book ai didi

android - 将 UI 元素的位置/大小设置为屏幕大小的百分比

转载 作者:IT老高 更新时间:2023-10-28 13:15:21 28 4
gpt4 key购买 nike

我正在尝试确定在创建布局时是否可以使用百分比位置/大小。我想要的是这样的……

^
|
|
| 68%
|
|
v
Gallery (height equivalent of 16% total screen size)
^
| 16%
v

我正在一个横向显示 800x480 实际像素的设备上进行测试,我目前正在强制使用以下内容...

<?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" >
<Gallery
android:id="@+id/gallery"
android:layout_width="fill_parent"
android:layout_height="80px"
android:layout_marginTop ="320px"
/>
</RelativeLayout>

显然我不想对固定的 px 单位进行硬编码,但我不能将 68%0.68 用于 >layout_marginTop(例如)。我查看了 dp 单位,但我不确定我是否也可以这样做。

我不得不承认 UI 设计是我的一个弱点,所以任何建议都将不胜感激。

编辑:如果有人正在寻找类似的答案,以供将来引用,按照 Alan Moore 的建议,我将按照我想要的方式进行以下工作......

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:background="@drawable/bground"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TextView
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="0.68"
android:background="@android:color/transparent"
/>
<Gallery
android:id="@+id/gallery"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0.16"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="0.16"
android:background="@android:color/transparent"
/>
</LinearLayout>

我设法找到了一些使用 layout_weight 的其他示例,并决定将 TextView 高度设置为 0dp 并使用 float 作为权重.工作很棒。 :)

最佳答案

我想你想要的是设置 android:layout_weight,

http://developer.android.com/resources/tutorials/views/hello-linearlayout.html

类似这样(我只是将 TextView 放在上方和下方作为占位符):

  <LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:weightSum="1">
<TextView
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="68"/>
<Gallery
android:id="@+id/gallery"
android:layout_width="fill_parent"
android:layout_height="0dp"

android:layout_weight="16"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="16"/>

</LinearLayout>

关于android - 将 UI 元素的位置/大小设置为屏幕大小的百分比,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7506230/

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