Android以编程方式将平铺图像作为背景

我有一张我想水平平铺的图像,我需要通过编程完成。 我尝试了两种方法,但都不起作用。

button_inner_shadow是图片navigation_background是假设平铺上述图片的xml

1:直接平铺图像

BitmapDrawable navigationBackground = new BitmapDrawable(BitmapFactory.decodeResource(
                getResources(), R.drawable.button_inner_shadow));
navigationBackground.setTileModeX(Shader.TileMode.REPEAT);
navigationTextViews[id].setBackgroundDrawable(navigationBackground);

2:使用xml来平铺图像

navigationBackground = new BitmapDrawable(BitmapFactory.decodeResource(
                getResources(), R.drawable.navigation_background));
navigationTextViews[id].setBackgroundDrawable(navigationBackground);

navigation_background

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

我究竟做错了什么?

我也使用setBackgroundResource来设置改变程序另一部分的背景颜色,并认为这是一个问题。 我添加了navigationTextViews[id].setBackgroundResource(0); ,它应该删除背景资源,并且不适用于我使用的上述解决方案。

编辑:navigationTextViews []是一个TextViews数组


那么,出于某种原因,第一个选项使用了不同的图像,所以我猜测问题是我的第一个图像(这是一个具有某种透明度的渐变)太透明了。

链接地址: http://www.djcxy.com/p/10935.html

上一篇: Android programmatically tile image as background

下一篇: How to add UserControl to a Panel on a WPF Window