Android LinearLayoutの周囲に境界線を作成するにはどうすればよいですか?


回答:


241

承知しました。任意のレイアウトに枠を追加できます。基本的に、カスタムドローアブルを作成し、それを背景としてレイアウトに追加する必要があります。例:

customborder.xmlドローアブルフォルダーにというファイルを作成します。

<?xml version="1.0" encoding="UTF-8"?>
 <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
   <corners android:radius="20dp"/> 
   <padding android:left="10dp" android:right="10dp" android:top="10dp" android:bottom="10dp"/>
   <stroke android:width="1dp" android:color="#CCCCCC"/>
 </shape>

次に、小さいレイアウトの背景として適用します。

<LinearLayout android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/customborder">

これでうまくいくはずです。

こちらもご覧ください:


29
<solid>は長方形を塗りつぶします。境界線のみを描画するには、代わりに<stroke>を使用する必要があります。
NightFury 2013年

1
ここでの秘訣は、実際には<padding>です。なぜ私の形状が機能しないのかを見つけるのにしばらく時間がかかりました。パディングでうまくいきます。
John

3
両方<solid/><stroke/>長方形全体を塗りつぶしますか?これは私のコードのバグですか?
mr5 2014

13
<stroke android:width = "1dip" android:color = "#CCCCCC" />を追加すると、正常に機能します。
Pierry 2014

1
Pierryのコメントにより、この答えは正しくなります。それ以外の場合は、完全に満たされた背景しか取得できません。
kagkar 2016年

25

以下のように、drawableフォルダーのborder.xmlと呼ばれるCreat XML:

<?xml version="1.0" encoding="utf-8"?>
 <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
  <item> 
    <shape android:shape="rectangle">
      <solid android:color="#FF0000" /> 
    </shape>
  </item>   
    <item android:left="5dp" android:right="5dp"  android:top="5dp" >  
     <shape android:shape="rectangle"> 
      <solid android:color="#000000" />
    </shape>
   </item>    
 </layer-list>

次に、これをバックグラウンドとして線形レイアウトに追加します。

     android:background="@drawable/border"

11

これを試して:

たとえば、res / drawable / my_custom_background.xmlを次のように定義してみましょう。

(このレイアウトをドローアブルフォルダーに作成します)layout_border.xml

  <?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape android:shape="rectangle">
            <stroke android:width="2dp" android:height="2dp"
                android:color="#FF0000" />
            <solid android:color="#000000" />
            <padding android:left="1dp" android:top="1dp" android:right="1dp"
                android:bottom="1dp" />

            <corners android:radius="1dp" android:bottomRightRadius="5dp"
                android:bottomLeftRadius="0dp" android:topLeftRadius="5dp"
                android:topRightRadius="0dp" />
        </shape>
    </item>

</layer-list>

main.xml

<LinearLayout 
    android:layout_gravity="center"
    android:layout_width="200dp" 
    android:layout_height="200dp"   
    android:background="@drawable/layout_border" />
</LinearLayout>

11

ドローアブルフォルダーに1つのXMLファイルを作成する

<stroke
    android:width="2dp"
    android:color="#B40404" />

<padding
    android:bottom="5dp"
    android:left="5dp"
    android:right="5dp"
    android:top="5dp" />

<corners android:radius="4dp" />

次に、このxmlを小さなレイアウト背景に呼び出します

android:background = "@ drawable / yourxml"


要素のストロークはここでは許可されていません。
hdavidzhu 2016

3

このソリューションでは境界線のみが追加され、LinearLayoutの本体は透明になります。

まず、このボーダードローアブルをドローアブルフォルダーに作成します。 border.xml

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android= "http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <stroke android:width="2dp" android:color="#ec0606"/>
    <corners android:radius="10dp"/>
</shape>

次に、LinearLayoutビューで、次のようにbackground.xmlを背景として追加します。

<LinearLayout 
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="@drawable/border">

3

実用的にもできます

  GradientDrawable gradientDrawable=new GradientDrawable();
   gradientDrawable.setStroke(4,getResources().getColor(R.color.line_Input));

次に、レイアウトの背景を次のように設定します。

LinearLayout layout = (LinearLayout ) findViewById(R.id.ayout); layout .setBackground(gradientDrawable);

3

他の回答にAndroidドキュメントのリンクを追加します。

https://developer.android.com/guide/topics/resources/drawable-resource.html#Shape

Shape Drawableのすべての属性を記述しstroke、その中に境界を設定します。

例:

<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
  <stroke android:width="1dp" android:color="#F00"/>
  <solid android:color="#0000"/>
</shape>

背景が透明な赤い枠。


ソリッドパーツでは、濃淡を境界線のみに設定できます。+1
aksh1618

0

ドローアブルリソースを作成したくないですか?

  <FrameLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@android:color/black"
    android:minHeight="128dp">

    <FrameLayout
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:layout_margin="1dp"
      android:background="@android:color/white">

      <TextView ... />
    </FrameLayout>
  </FrameLayout>

0

これをres / drawableで試してください

    <?xml version="1.0" encoding="UTF-8"?><layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
  <shape
    android:shape="rectangle">
    <padding android:left="15dp"
        android:right="15dp"
        android:top="15dp"
        android:bottom="15dp"/>
    <stroke android:width="10dp"
        android:color="@color/colorPrimary"/>
  </shape>
</item><item android:left="-5dp"
        android:right="-5dp"
        android:top="-5dp"
        android:bottom="-5dp">
  <shape android:shape="rectangle">
    <solid android:color="@color/background" />
  </shape></item></layer-list>
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.