2021 4 12

云相册ui设计

<?xml version="1.0" encoding="utf-8"?>
<navigation 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/navigation"
    app:startDestination="@id/photo_Album_Fragment">

    <fragment
        android:id="@+id/photo_Album_Fragment"
        android:name="com.michael.cloudphotos.Home_Fragment.Photo_Album_Fragment"
        android:label="activity_photo__album__fragment"
        tools:layout="@layout/activity_photo__album__fragment">
        <action
            android:id="@+id/first_to_second"
            app:enterAnim="@anim/slide_from_right"
            app:exitAnim="@anim/slide_to_left"
            app:destination="@id/photo_Editing_Fragment" />
    </fragment>
    <fragment
        android:id="@+id/take_A_Picture_Fragment"
        android:name="com.michael.cloudphotos.Home_Fragment.Take_A_Picture_Fragment"
        android:label="activity_take__a__picture__fragment"
        tools:layout="@layout/activity_take__a__picture__fragment" />
    <fragment
        android:id="@+id/photo_Editing_Fragment"
        android:name="com.michael.cloudphotos.Home_Fragment.Photo_Editing_Fragment"
        android:label="activity_photo__editing__fragment"
        tools:layout="@layout/activity_photo__editing__fragment" >
        <action
            android:id="@+id/second_to_first"
            app:enterAnim="@anim/slide_from_left"
            app:exitAnim="@anim/slide_to_right"
            app:destination="@id/photo_Album_Fragment" />
    </fragment>
</navigation>
原文地址:https://www.cnblogs.com/fuxw4971/p/14910364.html