如何使用kotlin和xml创建导航侧菜单

时间:2019-07-19 13:48:41

标签: android xml kotlin

我实际上是在学习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>

这是我的Adobe Xd设计: https://xd.adobe.com/view/96d9be59-2975-44af-452f-7dfa7c19fb19-e0e8/#access_token=eyJ4NXUiOiJpbXNfbmExLWtleS0xLmNlciIsImFsZyI6IlJTMjU2In0.eyJpZCI6IjE1NjM1NDY2NTIzMDNfNDA3MmI3YTktNTc2Ny00ZDA3LWFjMjQtZjI1NWIzNGUyY2Y0X3VlMSIsImNsaWVudF9pZCI6IkNvbWV0V2ViMSIsInVzZXJfaWQiOiJGQTJGQUE0NTU3MDI0REY3N0YwMDAxMDFAQWRvYmVJRCIsInR5cGUiOiJhY2Nlc3NfdG9rZW4iLCJhcyI6Imltcy1uYTEiLCJmZyI6IlRUUUVLSTUyWFBQMzdYV1dLNjUyUDNBQUVFPT09PT09Iiwic2lkIjoiMTU2MzU0NjU4NTUxM18zYjcwOTU3MS1lMTQzLTRhMjYtYjUxZi1iZjc1MDA1NjQ1NzRfdWUxIiwibW9pIjoiOTJhMGNmZTQiLCJjIjoiYTRGWWNnSVRIV1dtTTFlcGQ3eWtFUT09IiwiZXhwaXJlc19pbiI6Ijg2NDAwMDAwIiwic2NvcGUiOiIiLCJjcmVhdGVkX2F0IjoiMTU2MzU0NjY1MjMwMyJ9.f0X_-pO9ht09EI4MRm_12QaWeatcJStM7FkptJ8HcON0VFL_0RCE2h2ejtk5q1ZV29-XF7016rw4JusDa04BKQZdincGMIVaiCuGGiHSKHyqLzkA2VHr1SWiS0eFxKKTUDz3YgZGu1jTbw31PZNmDqVq1JpQ9yiC0QJMCXOn1kHmhjzXWsji8YD-3Y5GjcAOylB2r2gPXgV9-mjQxG1sg6tkvfpTt-IU6fawfrcLk-MolrsbXVvewBx5qIOQzjIiog0ktEms2luJblc4NKe_LwksyvQeLOnJTW74Xne2QAIIuPOdbZSVLgAvZr66EsOgyTYAQQ5oVV1W9DYIUi-KvA&token_type=bearer&expires_in=86399992

0 个答案:

没有答案