gpt4 book ai didi

android - 如何在android中布局对各种屏幕的支持?

转载 作者:太空狗 更新时间:2023-10-29 12:58:19 26 4
gpt4 key购买 nike

alt text

alt text

我正在使用 gridview 开发画廊 View ,在小屏幕上我的布局设计固定得很好,但大屏幕不是我的设计,在大屏幕上有一些空间在“加载更多图片”按钮下面,请引用图 2,我该如何解决这个问题问题,我的 list 文件添加了这一行以支持各种屏幕,请给我一些示例代码..

<supports-screens android:largeScreens="true"
android:normalScreens="true" android:smallScreens="true"
android:anyDensity="false" />

还有我的xml代码

<?xml version="1.0" encoding="utf-8"?>
<merge android:layout_width="wrap_content" android:layout_height="340dp" xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout android:id="@+id/LinearLayout01"
android:layout_width="fill_parent"
android:layout_height="335dp" android:orientation="vertical"
android:background="@color/black">


<GridView
android:id="@+id/jr_lookbook_grid" android:layout_width="fill_parent"
android:layout_height="335dp" android:numColumns="4"
android:verticalSpacing="10dp" android:horizontalSpacing="10dp"
android:columnWidth="90dp" android:stretchMode="columnWidth"
android:adjustViewBounds="true"
android:background="@drawable/shape"
android:gravity="center" android:layout_weight="1"/>
</LinearLayout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayout0209_img"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center"
android:paddingTop="311dp">
<Button android:id="@+id/click"
android:background="#AA000000"
android:text="Load More Pictures..."
android:textColor="@color/white"
android:layout_width="fill_parent" android:layout_height="30dp"/>
</LinearLayout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayout02_img"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_gravity="center"
android:layout_alignParentBottom="true"
android:background="@color/black"
android:layout_alignParentLeft="true">
<WebView
android:id="@+id/webview"

android:layout_width="fill_parent"

android:layout_height="fill_parent"
android:scrollbars="none" />
<ImageView android:id="@+id/ImageView01"
android:layout_gravity="center_horizontal"
android:scaleType="centerInside"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:adjustViewBounds="true">
</ImageView>
</LinearLayout>
<LinearLayout android:id="@+id/LinearLayout02" android:background="#AA000000"
android:layout_width="400px"
android:layout_height="50dp"
android:layout_gravity="bottom">
<Button
android:id="@+id/back
android:layout_height="wrap_content"
android:background="@drawable/back1"
android:layout_alignParentRight="true"
android:layout_marginLeft="10dp" /
<Button
android:background="@drawable/forward5"
android:id="@+id/next"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_alignParentRight="true"
android:layout_marginLeft="150dp"/>
<Button
android:background="@drawable/menushare"
android:id="@+id/photoshare"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_alignParentRight="true"
android:layout_marginLeft="20dip" />
</LinearLayout>
</merge>

谢谢大家

最佳答案

你必须为大屏幕编写 xml 代码。我认为您将 xml 文件保存在 res/layout 文件夹中。如果是,你可以保留三个文件夹来区分各种屏幕,如 res/layout-small、res/layout、res/layout-long。在这三个文件夹中,您可以为各种屏幕类型设置不同的对齐方式。对于中屏幕,将您的 xml 代码保留在布局中,对于小屏幕 - 将其保留在布局小等中,并设置

    <supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:anyDensity="true" />

AndroidManifest.xml 中的这些行

关于android - 如何在android中布局对各种屏幕的支持?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3786214/

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