thorium-fork/app/src/main/res/layout/activity_account.xml

48 lines
1.6 KiB
XML
Raw Normal View History

2018-12-29 22:10:13 +01:00
<?xml version="1.0" encoding="utf-8"?>
2019-01-01 23:56:26 +01:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2018-12-29 22:10:13 +01:00
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
2019-01-01 23:56:26 +01:00
tools:context=".activity.AccountActivity"
android:orientation="vertical">
2018-12-29 22:10:13 +01:00
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/appbar_user"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<androidx.appcompat.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tool_bar_user"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_scrollFlags="scroll|enterAlways"
android:elevation="4dp" />
</com.google.android.material.appbar.AppBarLayout>
2019-01-01 23:56:26 +01:00
<LinearLayout
android:layout_marginBottom="0dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/account_username"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/account_email"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="" />
</LinearLayout>
</LinearLayout>