gpt4 book ai didi

Android WXGA 模拟器在纵向方向上出现失真

转载 作者:行者123 更新时间:2023-11-29 02:08:13 25 4
gpt4 key购买 nike

我正在为 2.1 及更高版本开发应用程序。此应用程序中的第一个 Activity 仅支持纵向,因此我在 AndroidManifest 文件中有 android:screenOrientation="portrait"。 Activity 在几乎所有屏幕尺寸和 SDK 版本上看起来都不错,WXGA 屏幕和 4.0.3 SDK(也包括 3.2)除外。在此屏幕上,背景和按钮出现变形。

所以我为 4.0.3 SDK 创建了一个新的空 Android 项目。在 main.xml 中添加 RelativeLayout 和 Button,在主 Activity 的 AndroidManifest 中添加 android:screenOrientation="portrait" 字符串。调试后(WXGA,4.0.3)我得到了相同的结果。

Button distortion in WXGA emulator

如果我将 android:screenOrientation="portrait" 更改为其他内容,按钮看起来不错。

Windows 也一样。

为什么会这样?这是模拟器问题?

最佳答案

我有一个类似的问题,这发生在各种平板电脑模拟器(例如 3.0、3.2 等)上,并且只在纵向模式下出现。它不会出现在电话版本中(例如,在 Honeycomb 之前)。下面是我执行 setContentView 的布局文件,导致右下角的文本失真。这可能看起来微不足道,但是,它也会扭曲 ImageView、按钮等。我还发现,当我在屏幕底部放置更多 View 时,其中一些会被剪裁,或者按钮在按下时仅部分突出显示。

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#888" >

<TextView
android:text="ABCDEF"
android:textSize="24sp"
android:textStyle="bold"
android:textColor="#FFF"
android:background="#000"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|right" />
</FrameLayout>

关于Android WXGA 模拟器在纵向方向上出现失真,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8812587/

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