AndroidのXMLでの形状の定義のドキュメントを見つけるのにいくつか問題があります。レイアウトファイルに含めるために、XMLファイルで単色で塗りつぶされた単純な円を定義したいと思います。
残念なことに、android.comのドキュメントには、ShapeクラスのXML属性は含まれていません。円の描画にはArcShapeを使用する必要があると思いますが、円弧から円を作成するために必要なサイズ、色、または角度の設定方法についての説明はありません。
AndroidのXMLでの形状の定義のドキュメントを見つけるのにいくつか問題があります。レイアウトファイルに含めるために、XMLファイルで単色で塗りつぶされた単純な円を定義したいと思います。
残念なことに、android.comのドキュメントには、ShapeクラスのXML属性は含まれていません。円の描画にはArcShapeを使用する必要があると思いますが、円弧から円を作成するために必要なサイズ、色、または角度の設定方法についての説明はありません。
回答:
これは、Androidのドローアブルとしての単純な円です。
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid
android:color="#666666"/>
<size
android:width="120dp"
android:height="120dp"/>
</shape>
dp
、楕円形に歪んでいました。私にとっては、pt
代わりにそれを修正して使用しました。
size
、の必要はありませんshape
。
これをビューの背景として設定します
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<stroke
android:width="1dp"
android:color="#78d9ff"/>
</shape>
黒丸を使用する場合:
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid
android:color="#48b3ff"/>
</shape>
ストローク付きのソリッド:
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid android:color="#199fff"/>
<stroke
android:width="2dp"
android:color="#444444"/>
</shape>
注:oval
これらの例では、図形を円として表示するには、この図形を背景として使用しているビューが正方形であるか、shapeタグのプロパティheight
とwidth
プロパティを同じ値に設定する必要があります。
yourView.getBackground()
色を手動で呼び出して設定することでそれができると思います。のような適切な型にキャストする必要がありますShapeDrawable
。これについては、SOに関連する質問があります。
Android SDKサンプルをご覧ください。ApiDemosプロジェクトにはいくつかの例があります。
/ ApiDemos / res / drawable /
グラデーションで塗りつぶされた円の場合、次のようになります。
<?xml version = "1.0" encoding = "utf-8"?> <shape xmlns:android = "http://schemas.android.com/apk/res/android" android:shape = "oval"> <gradient android:startColor = "#FFFF0000" android:endColor = "#80FF00FF" android:angle = "270" /> </形状>
以下のようにVectorDrawableを使用できます。
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="200dp"
android:height="200dp"
android:viewportHeight="64"
android:viewportWidth="64">
<path
android:fillColor="#ff00ff"
android:pathData="M22,32
A10,10 0 1,1 42,32
A10,10 0 1,1 22,32 Z" />
</vector>
上記のxmlは次のようにレンダリングされます。
<group android:translateX="-10" android:translateY="15"><path ...
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<!-- fill color -->
<solid android:color="@color/white" />
<!-- radius -->
<stroke
android:width="1dp"
android:color="@color/white" />
<!-- corners -->
<corners
android:radius="2dp"/>
</shape>
<corners />
楕円形で何をするのですか?(私の考えでは、角はありません)?
プレマテリアルの簡単なcircle_background.xmlは次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true">
<shape android:shape="oval">
<solid android:color="@color/color_accent_dark" />
</shape>
</item>
<item>
<shape android:shape="oval">
<solid android:color="@color/color_accent" />
</shape>
</item>
</selector>
'android:background="@drawable/circle_background"
ボタンのレイアウト定義の属性で使用できます
このようなサークルが必要な場合
以下のコードを使用してみてください:
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:innerRadius="0dp"
android:shape="ring"
android:thicknessRatio="2"
android:useLevel="false" >
<solid android:color="@android:color/white" />
<stroke
android:width="1dp"
android:color="@android:color/darker_gray" />
</shape>
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<stroke
android:width="10dp"
android:color="@color/white"/>
<gradient
android:startColor="@color/red"
android:centerColor="@color/red"
android:endColor="@color/red"
android:angle="270"/>
<size
android:width="250dp"
android:height="250dp"/>
</shape>
res / drawble / circle_shape.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="oval">
<solid android:color="#e42828"/>
<stroke android:color="#3b91d7" android:width="5dp"/>
<!-- Set the same value for both width and height to get a circular shape -->
<size android:width="250dp" android:height="250dp"/>
</shape>
</item>
</selector>
あなたはこれを試すことができます-
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="ring"
android:innerRadiusRatio="700"
android:thickness="100dp"
android:useLevel="false">
<solid android:color="#CCC" />
</shape>
また、を調整して、円の半径を調整できますandroid:thickness
。
なんらかの理由でConstraintLayout内に円を描くことができませんでした。上記の答えをどれも使用できませんでした。
完全に機能したのは、「Alt + 7」を押すと表示されるテキストを含む単純なTextViewです。
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#0075bc"
android:textSize="40dp"
android:text="•"></TextView>
これを使ってみることができます
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item>
<shape
android:innerRadius="0dp"
android:shape="ring"
android:thicknessRatio="2"
android:useLevel="false" >
<solid android:color="@color/button_blue_two" />
</shape>
</item>
これをテキストビューに使用している場合は、幅と高さのアスペクト比を気にする必要はありません
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="oval">
<solid android:color="@color/text_color_green"/>
<!-- Set the same value for both width and height to get a circular shape -->
<size android:width="250dp" android:height="250dp"/>
</shape>
</item>
</selector>
Android XMLドローアブルファイルの円形状
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid android:color="@android:color/white" />
<stroke
android:width="1.5dp"
android:color="@android:color/holo_red_light" />
<size
android:width="120dp"
android:height="120dp" />
</shape>
スクリーンショット
使うだけ
ShapeDrawable circle = new ShapeDrawable( new OvalShape() );