118 lines
3.9 KiB
XML
118 lines
3.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical">
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_margin="20dp">
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="Veicleno"
|
|
android:fontFamily="@font/inter_500"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/dp_18"/>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/detailsingroupveicle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/dp_10"
|
|
android:text="group"
|
|
android:textSize="14dp"
|
|
android:textColor="@color/black"
|
|
android:fontFamily="@font/inter_500"/>
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:padding="2.5dp"
|
|
app:boxBackgroundColor="@color/white"
|
|
app:boxStrokeColor="@color/primary_blue"
|
|
app:boxStrokeWidth="1dp"
|
|
app:hintAnimationEnabled="true"
|
|
app:hintTextColor="@color/primary_blue">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/groupveicle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="@font/inter_500"
|
|
android:hint="enter veicleno"
|
|
android:inputType="text"
|
|
android:maxLines="1"
|
|
android:paddingLeft="8dp"
|
|
android:paddingRight="8dp"
|
|
android:paddingBottom="8dp"
|
|
android:textColorHint="@color/black"
|
|
android:textSize="12dp" />
|
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/detailsinbike"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/dp_10"
|
|
android:text="bike"
|
|
android:textSize="14dp"
|
|
android:textColor="@color/black"
|
|
android:fontFamily="@font/inter_500"/>
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:padding="2.5dp"
|
|
app:boxBackgroundColor="@color/white"
|
|
app:boxStrokeColor="@color/primary_blue"
|
|
app:boxStrokeWidth="1dp"
|
|
app:hintAnimationEnabled="true"
|
|
app:hintTextColor="@color/primary_blue">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/individualveicle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="@font/inter_500"
|
|
android:hint="enter veicleno"
|
|
android:inputType="text"
|
|
android:maxLines="1"
|
|
android:paddingLeft="8dp"
|
|
android:paddingRight="8dp"
|
|
android:paddingBottom="8dp"
|
|
android:textColorHint="@color/black"
|
|
android:textSize="12dp" />
|
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/veiclenosubmit"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="submit"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_gravity="end"
|
|
android:backgroundTint="@color/violet"
|
|
android:padding="7dp"
|
|
android:textColor="@color/white"
|
|
android:background="@drawable/border_5dpradius"
|
|
android:gravity="end"/>
|
|
|
|
</LinearLayout>
|
|
</LinearLayout> |