LinearLayout с овальной формой в центре - PullRequest
0 голосов
/ 05 июня 2018

Как я могу нарисовать вид (темный вид), как на картинке ниже?с овальной формой в центре.

TextView [Transfer] - ImageView [QR Scan] (с овальной формой) - TextView [Request]

enter image description here

1 Ответ

0 голосов
/ 08 июня 2018
<RelativeLayout  
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="80dp"
        android:layout_alignParentBottom="true"
        android:orientation="vertical"
        android:background="@drawable/bottom">
        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent">
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textColor="#FAFAFA"
                android:layout_marginTop="45dp"
                android:text="Text1"
                android:textSize="20dp"
                android:layout_marginLeft="30dp"/>
            <ImageView
                android:layout_width="50dp"
                android:layout_height="50dp"
                android:layout_centerHorizontal="true"
                android:layout_marginTop="20dp"/>

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textColor="#FAFAFA"
                android:layout_marginTop="45dp"
                android:text="Text1"
                android:layout_alignParentRight="true"
                android:layout_marginRight="30dp"
                android:textSize="20dp"
                android:layout_marginLeft="30dp"/>
        </RelativeLayout>
    </LinearLayout>
</RelativeLayout>

Output

...