android开发xml中如何设置背景图才能填充整个屏幕?代码如下

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android开发xml中如何设置背景图才能填充整个屏幕?代码如下相关的知识,希望对你有一定的参考价值。

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scrollView1"

android:layout_width="fill_parent"
android:background="@drawable/background2"
android:layout_height="fill_parent"
android:layout_x="0dip"
android:layout_y="4dip" >

<AbsoluteLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<Button
android:layout_width="wrap_content"
android:text="返回"
android:visibility="visible"
android:layout_height="wrap_content"
android:id="@+id/Button6"
android:layout_x="272dip"
android:layout_y="244dip">
</Button>
<TextView

android:textSize="34dip"
android:visibility="visible"
android:layout_width="wrap_content"
android:scrollbars="vertical"
android:text="游戏中按键盘UP键蛇向上 按DOWN键向下 按LEFT键向左 按RIGHT键向右"
android:layout_height="wrap_content" android:id="@+id/text"
android:layout_x="-1dip" android:layout_y="50dip">
</TextView>
</AbsoluteLayout>
</ScrollView>
在模拟机中运行时背景图只是显示在屏幕中央而已,很多地方试了fill_parent,都无效。。。

1. android:background="@drawable/background2"

这句话里面定义的背景图片太小了吧?建议使用纯颜色试试,或者改用.9.png图片做背景。

2. 说句题外话,不要使用AbsoluteLayout了,使用RelativeLayout,LinearLayout,FrameLayout等。
参考技术A 你使用fill_parent得先知道它的parent是谁,如果parent不是全屏,那你的布局肯定也不能全屏了 参考技术B 和图片大小无关。你这样设置可以充满ScrollView的控制范围的,你的整个屏幕是指整个ScrollView范围么?还有android:layout_x="0dip"
android:layout_y="4dip"似乎是只有在AbsoluteLayout
里面才有用的,放在ScrollView里面是没有作用的吧
参考技术C 图片不合适,找张大一点的

为android程序设置统一的背景图

一个应用有多个界面,如何让每个界面的背景图片都是统一张啊,是在manifest文件中设置,还是每个layout文件都去android:background啊?如果每个layout都设置的话,太麻烦,效果也不好,有大神知道怎么解决吗?

这么久了,还是给个明确答案吧
styles.xml:
<style name="AppTheme" parent="AppBaseTheme">

<!-- All customizations that are NOT specific to a particular API-level can go here. -->

<item name="android:windowAnimationStyle">@style/animationActivity</item>

<item name="android:windowBackground">@drawable/dt_bg</item>你自己的图片设置在这里

</style>

AndroidManifest.xml中Application设置theme
<application

android:theme="@style/AppTheme" >
运行项目便出现你想要的背景
参考技术A 给你的application设置theme,然后你在theme里面定义activity的background或者写一个style,让每个activity应用(每个都要用这个style不叫麻烦),这样你所有的页面就都是这个背景,除非你代码在activity里面去重新给页面设置背景。theme的定义资源很多,自己去找找看一下筛选一个。 参考技术B 定义一个baseActivity,在这个里面设置背景,需要使用这张图片的就继承自这个activity. 参考技术C manifest里面追问

请问具体怎么设置啊?

以上是关于android开发xml中如何设置背景图才能填充整个屏幕?代码如下的主要内容,如果未能解决你的问题,请参考以下文章

为android程序设置统一的背景图

手机怎么填充应用背景

如何给button控件添加描边填充背景和描边

如何给button控件添加描边填充背景和描边

如何设置Android中控件的颜色透明度

如何在android中制作渐变背景