Android 图片背景重复

发布于 2025-01-05 09:28:51 字数 221 浏览 1 评论 0原文

我有一张用于 LinearLayout 背景的图像 假设图像的像素为 20x100 我想让图像仅在 x 轴上重复...类似 css 中的

background-repeat:repeat-x;

LinearLayout 有点大(1024 x 680 px),所以我的图像将覆盖整个宽度,但仅在顶部(其余 580 px)高度将是透明的) 我希望我说清楚了 谢谢

I have a image used for a LinearLayout background
Let's say image has 20x100 px
I want to make the image repeat only on x axes ... something like this in css

background-repeat:repeat-x;

The LinearLayout is kinda big (1024 x 680 px) so my image will cover the entire width but only in the top (the rest of 580 px of height will be transparent)
I hope i was clear
Thanks

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

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

发布评论

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

评论(2

暖风昔人 2025-01-12 09:28:51

尝试使用 android:tileMode

创建 background.xml 在可绘制文件夹中为:

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

然后在布局 xml 中使用它为:

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

try using android:tileMode

create background.xml in drawable folder as:

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

and then use it in your layout xml as:

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/background"
    android:orientation="vertical" >
是你 2025-01-12 09:28:51

您可以使用 android:background 作为 9patch 图像来自动拉伸。

Android 开发网站上的 9patch

You can use the android:background as a 9patch image to automatically stretch.

9patch on Android Dev site

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