XML drawables没有显示在实际设备上

时间:2016-06-23 16:49:46

标签: android xml shape xml-drawable

这不像其他问题,所以试着理解我的问题。 我有

的test.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="ring" >

<size
    android:height="30dp"
    android:width="30dp" />

<solid android:color="#009688" />

我的TextView如下

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.bradley.learndrawable.MainActivity" >

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/test"
    android:text="2"
    android:textStyle="bold"
    android:gravity="center"
    android:textColor="#FFFFFF" />

它应该将文本视图显示为绿色圆圈和白色数字。 它在图形视图上表现良好,但在实际设备上却没有。

我已将drawable复制到每个可绘制文件夹。 对我来说仍然没有好运。

帮助! :)

Screenshot of Graphical View

1 个答案:

答案 0 :(得分:0)

你能试试android:layerType="software"吗?我不确定这是否能解决问题,但它可以起作用