|
|
@@ -4,25 +4,23 @@
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
|
|
<android.support.constraint.ConstraintLayout
|
|
|
- android:id="@+id/container"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
|
tools:fragmentActivity=".MainActivity">
|
|
|
|
|
|
- <!--<TextView-->
|
|
|
- <!--android:layout_width="wrap_content"-->
|
|
|
- <!--android:layout_height="wrap_content"-->
|
|
|
- <!--android:text="Hello World!"-->
|
|
|
- <!--app:layout_constraintBottom_toBottomOf="parent"-->
|
|
|
- <!--app:layout_constraintLeft_toLeftOf="parent"-->
|
|
|
- <!--app:layout_constraintRight_toRightOf="parent"-->
|
|
|
- <!--app:layout_constraintTop_toTopOf="parent"/>-->
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/container"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
|
- <!--<Button-->
|
|
|
- <!--android:layout_width="wrap_content"-->
|
|
|
- <!--android:layout_height="wrap_content"-->
|
|
|
- <!--android:onClick="@{() -> model.onClickLogin()}"-->
|
|
|
- <!--android:text="Login"/>-->
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <FrameLayout
|
|
|
+ android:id="@+id/container_popup"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"/>
|
|
|
|
|
|
</android.support.constraint.ConstraintLayout>
|
|
|
+
|
|
|
</layout>
|