无法改变形状可绘制的高度

时间:2016-04-26 09:12:13

标签: android

代码是:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
   android:shape="line">
<stroke android:color="#00000000"/>
<size android:height="10dp"/>
</shape>

但无论我设置屁股高度我得到的总是1dp

3 个答案:

答案 0 :(得分:1)

试试这个:

<stroke 
   android:width="10dp" 
   android:color="#000000" />

答案 1 :(得分:0)

你必须提到高度和宽度两个带尺寸标记的参数。 尝试下面的代码:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
   android:shape="line">
<stroke android:color="#00000000"/>
<size android:height="10dp" android:width="0dp"/>
</shape>

答案 2 :(得分:0)

试试这段代码

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

    android:layout_height="100dp" 
    android:layout_width="100dp">

    <stroke
        android:width="10dp"
        android:color="#000000" />
</shape>