XMLで枠線を描画する記述を行い、レイアウトの背景に枠線を表示します。 shapeタグを利用して次のような記述で設定していきます。 このshapeタグ内に描画を行うための記述を追加していきます。 まずは次のようなXMLを用意します。 frame.xml <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"> <stroke android:width="8dp" android:color="#00cccc" /> </shape> このstrokeタグを利用して枠線を描画することができます。 「android:width」にて枠線の幅を設定 「android:color」にて線の色を設定 後はこれをレイアウトの背景に設