使用图片作为textview组件的背景

    <TextView
            android:layout_gravity="center"
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:background="@drawable/image1"
            />

将图片放置于res/drawable-hdpi等几个文件夹中都可以@drawable 不需要指定具体的文件夹,图片也不用加上后缀名。

原文地址:https://www.cnblogs.com/zooc/p/3968840.html