19 lines
786 B
XML
19 lines
786 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:id="@+id/flContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:id="@+id/llContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
<com.ubtech.view.widget.UButton
|
|
android:layout_gravity="bottom|center_horizontal"
|
|
android:id="@+id/btnLogout"
|
|
android:visibility="gone"
|
|
android:layout_marginBottom="@dimen/dp15"
|
|
android:text="@string/close_account"
|
|
style="@style/btn_blue_middle_style"/>
|
|
</FrameLayout>
|