You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
126 lines
4.3 KiB
126 lines
4.3 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Navigation Drawer Header Layout - Fixed Version
|
|
修复图标过大问题
|
|
-->
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:id="@+id/drawer_header_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:background="@drawable/drawer_header_gradient"
|
|
android:padding="12dp">
|
|
|
|
<!-- ========== 未登录状态 ========== -->
|
|
<LinearLayout
|
|
android:id="@+id/header_not_logged_in"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:gravity="center_vertical">
|
|
|
|
<!-- 应用 Logo -->
|
|
<ImageView
|
|
android:id="@+id/iv_app_logo"
|
|
android:layout_width="36dp"
|
|
android:layout_height="36dp"
|
|
android:src="@android:drawable/ic_menu_edit"
|
|
android:contentDescription="@string/app_name"
|
|
app:tint="@color/white" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical"
|
|
android:layout_marginStart="12dp">
|
|
|
|
<!-- 应用名称 -->
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/app_name"
|
|
android:textColor="@color/white"
|
|
android:textSize="16sp"
|
|
android:textStyle="bold" />
|
|
|
|
<!-- 登录提示 -->
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/drawer_login_prompt"
|
|
android:textColor="@color/white"
|
|
android:textSize="12sp"
|
|
android:alpha="0.8" />
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- 登录按钮 -->
|
|
<ImageButton
|
|
android:id="@+id/btn_login_prompt"
|
|
android:layout_width="32dp"
|
|
android:layout_height="32dp"
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
|
android:src="@drawable/ic_login"
|
|
android:contentDescription="@string/drawer_login"
|
|
app:tint="@color/white" />
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- ========== 已登录状态 ========== -->
|
|
<LinearLayout
|
|
android:id="@+id/header_logged_in"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:gravity="center_vertical"
|
|
android:visibility="gone">
|
|
|
|
<!-- 用户头像 -->
|
|
<ImageView
|
|
android:id="@+id/iv_user_avatar"
|
|
android:layout_width="36dp"
|
|
android:layout_height="36dp"
|
|
android:src="@drawable/ic_account_circle"
|
|
android:background="@drawable/online_status_indicator"
|
|
app:tint="@color/white" />
|
|
|
|
<!-- 用户信息 -->
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:layout_marginStart="12dp"
|
|
android:orientation="vertical">
|
|
|
|
<!-- 用户名 -->
|
|
<TextView
|
|
android:id="@+id/tv_username"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/drawer_default_username"
|
|
android:textColor="@color/white"
|
|
android:textSize="14sp"
|
|
android:textStyle="bold"
|
|
android:maxLines="1"
|
|
android:ellipsize="end" />
|
|
|
|
<!-- 设备ID -->
|
|
<TextView
|
|
android:id="@+id/tv_device_id"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/drawer_default_device_id"
|
|
android:textColor="@color/white"
|
|
android:textSize="11sp"
|
|
android:alpha="0.8"
|
|
android:maxLines="1"
|
|
android:ellipsize="end" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|