1
私は線形レイアウトの背景に適用する1つの図形を設計しました。 APIレベル21では完璧に動作しますが、APIレベルでは動作しませんでした。AndroidのAPIレベル16で背景形状が完全に機能しませんでした
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<stroke
android:drawable="@android:id/background"
android:width="3dp"
android:color="#023e64">
</stroke>
<corners
android:bottomLeftRadius="16dp"
android:bottomRightRadius="16dp"
android:topLeftRadius="16dp"
android:topRightRadius="16dp"/>
</shape>
はあなたの先生ありがとうございました。できます。 –