我实际上是在学习XML和Kotlin来制作一个Android应用程序。 问题是我想制作导航侧菜单,但我没有 了解我在互联网上找到的所有答案。
那么有人可以帮助我吗?
这是我的XML代码:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
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:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<RelativeLayout
android:id="@+id/header"
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="#FB4242"
android:elevation="3dp"
android:orientation="horizontal"
app:layout_constraintTop_toTopOf="parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:fontFamily="@font/roboto_regular"
android:text="@string/app_name"
android:textColor="@android:color/white"
android:textSize="24sp" />
<FrameLayout
android:id="@+id/options"
android:layout_width="20dp"
android:layout_height="24.68dp"
android:layout_centerVertical="true"
android:layout_marginStart="38dp"
android:background="@drawable/ic_next_1"/>
</RelativeLayout>
<LinearLayout
android:id="@+id/profileZone"
android:layout_width="match_parent"
android:layout_height="299dp"
android:background="#F5F5F5"
android:orientation="vertical"
app:layout_constraintTop_toBottomOf="@+id/header">
<RelativeLayout
android:id="@+id/profile"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="65dp"
android:background="@drawable/cricle">
<ImageView
android:layout_width="55dp"
android:layout_height="55dp"
android:layout_centerInParent="true"
android:background="@drawable/ic_avatar"
android:contentDescription="Picture of your profile"
tools:ignore="HardcodedText" />
<Button
android:id="@+id/addProfile"
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_marginStart="100dp"
android:layout_marginTop="10dp"
android:background="@drawable/ic_plus" />
</RelativeLayout>
<TextView
android:id="@+id/profileName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="25dp"
android:fontFamily="@font/roboto_regular"
android:text="Nom du profile"
android:textColor="@android:color/black"
android:textSize="16sp"
tools:ignore="HardcodedText" />
</LinearLayout>
<LinearLayout
android:baselineAligned="false"
android:layout_marginTop="42dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="center"
app:layout_constraintTop_toBottomOf="@id/profileZone">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="145dp"
android:layout_weight="1"
android:orientation="vertical">
<TextView
android:id="@+id/weatherTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="@font/roboto_regular"
android:text="Weather"
android:layout_gravity="center"
android:textAlignment="center"
android:textColor="@android:color/black"
android:textSize="16sp"
android:layout_marginBottom="15dp"
tools:ignore="HardcodedText" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="@font/roboto_regular"
android:text="27°C"
android:textSize="12sp"
android:layout_gravity="center"
android:textColor="@android:color/black"
tools:ignore="HardcodedText" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_gravity="center">
<TextView
android:id="@+id/weather"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="@font/roboto_regular"
android:text="Sunny"
android:textSize="12sp"
android:layout_gravity="center"
android:textColor="@android:color/black"
tools:ignore="HardcodedText"/>
<ImageView
android:layout_width="16dp"
android:layout_height="16dp"
android:background="@drawable/ic_sunny"
android:layout_gravity="center"/>
</LinearLayout>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/windSpeed"
android:fontFamily="@font/roboto_regular"
android:text="15Km/h"
android:textSize="12sp"
android:layout_gravity="center"
android:textColor="@android:color/black"
tools:ignore="HardcodedText"/>
<Button
style="?android:attr/borderlessButtonStyle"
android:id="@+id/moreInfoWeather"
android:layout_width="wrap_content"
android:layout_height="25dp"
android:layout_gravity="center"
android:layout_marginTop="25dp"
android:background="@drawable/button_weather"
android:fontFamily="@font/roboto_light"
android:text="More info..."
android:textAllCaps="false"
android:textColor="@android:color/black"
android:textSize="10sp"
android:elevation="2dp"
tools:ignore="HardcodedText,SmallSp" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="145dp"
android:layout_weight="1"
android:orientation="vertical">
<TextView
android:id="@+id/flightTime"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:fontFamily="@font/roboto_regular"
android:text="Flight Time"
android:textColor="@android:color/black"
android:textSize="16sp"
tools:ignore="HardcodedText" />
<TextView
android:id="@+id/totoalHoursText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="12dp"
android:text="54h and 24min"
android:textColor="@android:color/black"
android:textSize="12sp"
tools:ignore="HardcodedText" />
<Button
android:id="@+id/totoalHoursButton"
android:elevation="2dp"
android:layout_width="wrap_content"
android:layout_height="25dp"
android:layout_gravity="center"
android:text="See your hours"
android:textColor="@android:color/black"
android:textSize="10sp"
android:fontFamily="@font/roboto_light"
android:background="@drawable/button_weather"
android:textAllCaps="false"
android:layout_marginTop="20dp"
style="?android:attr/borderlessButtonStyle"
tools:ignore="HardcodedText,SmallSp" />
</LinearLayout>
</LinearLayout>
</android.support.constraint.ConstraintLayout>