したがって、片側だけの形(四角形)を作成することができました。さて、私はその片側に余白と余白を残しておきたい。今、それは次のようになります。余白を持つAndroidの描画線
、これは、(色を気にしない)ように見えることになっている方法です。今
、私はのためのコードを持っていますライン:
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:left="-55dp"
android:right="-55dp"
android:top="-55dp">
<shape android:shape="rectangle" >
<solid android:color="@android:color/transparent" />
<stroke
android:width="5dp"
android:color="@color/text" />
</shape>
</item>
これを達成するには?
textviewsのレイアウト。
<LinearLayout
android:id="@+id/picture_activity_linear"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/layout_margin"
android:layout_marginLeft="@dimen/layout_margin"
android:layout_marginRight="@dimen/layout_margin"
android:background="@color/background"
android:orientation="vertical"
android:visibility="visible">
<TextView
android:id="@+id/picture_activity_take_new"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/shape_text_line"
android:drawableStart="@drawable/ic_profilepicture_takephoto"
android:gravity="center"
android:padding="@dimen/layout_padding"
android:text="Take a new picture"
android:textColor="@color/text"
android:textSize="@dimen/large_text_size"/>
<TextView
android:id="@+id/picture_activity_select_from_gallery"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:drawableStart="@drawable/ic_profilepicture_addphoto"
android:gravity="center"
android:padding="@dimen/layout_padding"
android:text="Select new from gallery"
android:textColor="@color/text"
android:textSize="@dimen/large_text_size"/>
<TextView
android:id="@+id/picture_activity_remove_photo"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:drawableStart="@drawable/ic_profilepicture_delete"
android:gravity="center"
android:padding="@dimen/layout_padding"
android:text="Remove photo"
android:textColor="@color/text"
android:textSize="@dimen/large_text_size"/>
</LinearLayout>
を望むよう
さて、これは見えるでしょうか? –
高さ= 1dp、2dpのビューを作成します。 –