Android UIで角丸四角形を描画する必要があります。とで同じ角丸長方形を使用するTextView
とEditText
便利です。
Android UIで角丸四角形を描画する必要があります。とで同じ角丸長方形を使用するTextView
とEditText
便利です。
回答:
レイアウトxmlで以下を実行します。
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@android:color/holo_red_dark" />
<corners android:radius="32dp" />
</shape>
を変更するandroid:radius
ことで、コーナーの「半径」の量を変更できます。
<solid>
ドローアブルの色を定義するために使用されます。
あなたは置き換える使用することができandroid:radius
てandroid:bottomLeftRadius
、android:bottomRightRadius
、android:topLeftRadius
およびandroid:topRightRadius
各コーナーの半径を定義します。
これはまさにあなたが必要としていることだと思います。
ここでは、角丸長方形を作成するdrawable(xml)ファイル。 round_rect_shape.xml
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<solid android:color="#ffffff" />
<corners
android:bottomLeftRadius="8dp"
android:bottomRightRadius="8dp"
android:topLeftRadius="8dp"
android:topRightRadius="8dp" />
</shape>
ここにレイアウトファイル:my_layout.xml
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/round_rect_shape"
android:orientation="vertical"
android:padding="5dp" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Something text"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#ff0000" />
<EditText
android:id="@+id/editText1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<requestFocus />
</EditText>
</LinearLayout>
->上記のコードでは、LinearLayoutに背景があります(これが角丸四角形を作成するために配置する重要な役割です)。したがって、TextView、EditText ...などのビューをそのLinearLayoutに配置して、背景をすべての長方形として表示できます。
android:background="@drawable/round_rect_shape"
は自分のstyles.xmlで使用できるようにしたいが、別のプロパティを設定して異なる背景色を使用したい。各色に同じドローアブルを作成する以外にオプションはありますか?
ではmonodroid
、角丸長方形に対してこのようにして、これを親クラスとして保持しeditbox
、他のレイアウト機能を追加できます。
class CustomeView : TextView
{
public CustomeView (Context context, IAttributeSet ) : base (context, attrs)
{
}
public CustomeView(Context context, IAttributeSet attrs, int defStyle) : base(context, attrs, defStyle)
{
}
protected override void OnDraw(Android.Graphics.Canvas canvas)
{
base.OnDraw(canvas);
Paint p = new Paint();
p.Color = Color.White;
canvas.DrawColor(Color.DarkOrange);
Rect rect = new Rect(0,0,3,3);
RectF rectF = new RectF(rect);
canvas.DrawRoundRect( rectF, 1,1, p);
}
}
}
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:padding="10dp"
android:shape="rectangle">
<solid android:color="@color/colorAccent" />
<corners
android:bottomLeftRadius="500dp"
android:bottomRightRadius="500dp"
android:topLeftRadius="500dp"
android:topRightRadius="500dp" />
</shape>
次に、この図形を使用する要素に追加するだけです。
android:background="@drawable/custom_round_ui_shape"
「custom_round_ui_shape」という名前のドローアブルで新しいXMLを作成します
ドローアブルフォルダーに新しいxml背景を定義するだけです。
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="enter_your_desired_color_here" />
<corners android:radius="enter_your_desired_radius_the_corners" />
</shape>
この後、それをバックグラウンドで定義して、TextViewまたはEditTextに含めます。
<TextView
android:id="@+id/textView"
android:layout_width="0dp"
android:layout_height="80dp"
android:background="YOUR_FILE_HERE"
Android:layout_weight="1"
android:gravity="center"
android:text="TEXT_HERE"
android:textSize="40sp" />
ドローアブルを右クリックして、たとえばbutton_background.xmlという名前で新しいレイアウトxmlファイルを作成します。次に、次のコードをコピーして貼り付けます。必要に応じて変更できます。
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners
android:radius="14dp" />
<solid android:color="@color/colorButton" />
<padding
android:bottom="0dp"
android:left="0dp"
android:right="0dp"
android:top="0dp" />
<size
android:width="120dp"
android:height="40dp" />
</shape>
これで使用できます。
<Button
android:background="@drawable/button_background"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>