如何在屏幕上显示位图

时间:2011-05-05 08:52:09

标签: android

我想在屏幕上显示bimap模式。现在我想在屏幕上显示一个红色矩形,但我不知道位图数据如何查找矩形。 请举一些例子......

1 个答案:

答案 0 :(得分:1)

在drawable文件夹中创建一个名为 pattern.xml 的xml,其源代码为红色图片,如下所示:

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

然后创建如下布局:

<?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/pattern">
</LinearLayout>