我有以下代码:
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line">
<stroke android:width="1dp"/>
<size android:height="1dp" />
<solid android:color="#FFF"/>
</shape>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background ="@drawable/line"/>
我有两个问题:
- 为什么这条线是黑色而不是白色?我试过把它放在 ImageView 中,但结果是一样的。
- 如何设置形状的不透明度?