SmsForwarder/app/src/main/res/layout/include_navigation_header.xml
pppscn 6473b3eb7c 优化:MainActivity 内容填充方式(避免一次性加载多个Fragment)&& 提升APP启动速度与稳定性
优化:左滑菜单 与 TabBar 美化
精简:界面调整 & 去除不常用资源
整理:code review
2023-12-19 23:52:50 +08:00

22 lines
830 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:id="@+id/nav_header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingTop="15dp"
android:paddingBottom="10dp">
<androidx.appcompat.widget.AppCompatImageView
android:layout_width="240dp"
android:layout_height="180dp"
android:contentDescription="@string/logo"
android:paddingStart="30dp"
android:paddingEnd="30dp"
android:scaleType="fitCenter"
app:srcCompat="@drawable/ic_splash_app_logo"
tools:ignore="ImageContrastCheck" />
</LinearLayout>