zoukankan      html  css  js  c++  java
  • 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>
  • 相关阅读:
    4.内核编译和裁剪
    2.Linux技能要求
    3.字符驱动框架
    1.Linux命令
    4.类和抽象
    3.指针
    2.C++语言特性
    1.编译器
    计数排序——Counting Sort
    网关、网桥、路由器、集线器
  • 原文地址:https://www.cnblogs.com/fuxw4971/p/14910364.html
Copyright © 2011-2022 走看看