Android 背景看起来被拉伸

发布于 2024-10-26 15:46:56 字数 456 浏览 4 评论 0原文

我试图在 Android 上使用 HVGA 分辨率(320x480 - 纵向)制作启动屏幕。我用 HVA 分辨率制作了 PNG 启动画面,但背景水平拉伸。

我的splash.xml代码如下:

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

我的java文件中没有代码。

有什么想法吗?提前致谢!

I was trying to make a splash screen on Android using the HVGA resolution (320x480 - portrait). I made a splash screen in PNG with the HVA resolution but the background comes out stretched horizontally.

My splash.xml code as follows:

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

I have no code in the java file.

Any ideas? Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

入画浅相思 2024-11-02 15:46:56

尝试这个代码,更好地将图像显示到 imageview 控件中。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/content_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<ImageView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_centerInParent="true"
    android:src="@drawable/splash"
    android:scaleType="centerCrop"
    />

</RelativeLayout>

Try this code and better to show image into imageview control..

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/content_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<ImageView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_centerInParent="true"
    android:src="@drawable/splash"
    android:scaleType="centerCrop"
    />

</RelativeLayout>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文