Я пытаюсь создать что-то вроде этого:
Но я получил следующее:
Я пытаюсь создать cardView, в данном случае это темно-фиолетовый материал, и внутри него создаются TextView
EditText
и Button
. Можете ли вы подсказать, как создать почти такой же макет?с нарисованным на EditText
, у которого есть граница?
Это мой код:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".feature.exam.ExamActivity">
<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
card_view:cardCornerRadius="20dp"
card_view:cardElevation="0dp"
card_view:cardBackgroundColor="@color/colorPrimary"
android:background="#a9a9a9"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginTop="33dp"
android:id="@+id/view"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
>
<LinearLayout android:orientation="vertical" android:layout_width="wrap_content"
android:layout_height="wrap_content">
<EditText
android:id="@+id/dialog_txt_name"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:hint="Name"
android:singleLine="true">
<requestFocus/>
</EditText>
<Button
android:id="@+id/btn_login"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="60dp"
android:padding="5dp"
android:textColor="#ffffff"
android:text="Submit"/>
</LinearLayout>
</android.support.v7.widget.CardView>
</RelativeLayout>