3

単純な境界線を作成するために使用できますshape。たとえば、このコードは次のとおりです。

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape android:shape="rectangle">
            <corners android:radius="5dip" />
            <solid android:color="@color/black" />
            <stroke android:width="2dip" android:color="@color/white" />
        </shape>
    </item>
</layer-list>

しかし、この画像のようなタイトルの境界線が必要です:

ここに画像の説明を入力

どうすればそれができますか?

4

2 に答える 2

0

ここで役立つ良いコードを見つけました。ここにコードを追加します。

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" 
android:color="#000000">
<View
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/rectangle"
    android:layout_margin="20dp"
    />
<RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <TextView 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:background="#000000"
        android:layout_marginTop="10dp"
        android:text="TITLE!"
        android:textColor="#ffffff"/>
</RelativeLayout>

@drawable/rectangle は次のような drawablerectangle.xml ファイルにあります。

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" 
    android:shape="rectangle">
<solid android:color="@android:color/transparent"/>
<stroke  android:width="2dip" android:color="#ffffff"/>  
</shape>
于 2013-02-25T07:35:37.500 に答える
-1

以下のコードを試して、アプリケーションのres/drawableフォルダーに xml ファイルを作成し、以下のコードを貼り付けます。

 <?xml version="1.0" encoding="utf-8"?>
  <shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle" >
<corners android:radius="3dp" />
<solid android:color="#00000000" />
<stroke
    android:width="2dp"
    android:color="#1B455F" />
  <padding android:left="5dp"
    android:top="5dp"
    android:right="5dp"
    android:bottom="5dp"/>
</shape>

線の色を変更することで、都合に合わせて枠の色を変えることができます。

上記の xml を以下のように使用します。ここでは、TextView に境界線を設定しようとしました。

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/border"
    android:text="@string/hello_world" />

お役に立てば幸いです。

ありがとう。

于 2013-02-25T05:35:57.220 に答える