gpt4 book ai didi

android - 如何使应用程序的背景图像重复

转载 作者:IT老高 更新时间:2023-10-28 12:50:04 26 4
gpt4 key购买 nike

我在我的应用程序中设置了背景图片,但背景图片很小,我希望它可以重复并填满整个屏幕。我该怎么办?

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/bg"
android:tileMode="repeat">

最佳答案

好的,这就是我的应用程序中的内容。它包含一个 hack 以防止 ListView 在滚动时变黑。

drawable/app_background.xml:

<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/actual_pattern_image"
android:tileMode="repeat" />

values/styles.xml:

<?xml version="1.0" encoding="utf-8"?>
<resources>

<style name="app_theme" parent="android:Theme">
<item name="android:windowBackground">@drawable/app_background</item>
<item name="android:listViewStyle">@style/TransparentListView</item>
<item name="android:expandableListViewStyle">@style/TransparentExpandableListView</item>
</style>

<style name="TransparentListView" parent="@android:style/Widget.ListView">
<item name="android:cacheColorHint">@android:color/transparent</item>
</style>

<style name="TransparentExpandableListView" parent="@android:style/Widget.ExpandableListView">
<item name="android:cacheColorHint">@android:color/transparent</item>
</style>

</resources>

AndroidManifest.xml:

//
<application android:theme="@style/app_theme">
//

关于android - 如何使应用程序的背景图像重复,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2706913/

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