Android 背景看起来被拉伸
我试图在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试这个代码,更好地将图像显示到 imageview 控件中。
Try this code and better to show image into imageview control..