SubwayTooter-Android-App/app/src/main/res/layout/act_alert.xml

27 lines
996 B
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="match_parent">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@drawable/action_bar_bg"
android:elevation="4dp"
app:navigationIcon="?attr/homeAsUpIndicator" />
<EditText
android:id="@+id/etMessage"
android:inputType="none"
android:importantForAutofill="no"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:layout_margin="12dp"
tools:text="hello" />
</LinearLayout>