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>
  • 相关阅读:
    各种排序算法java实现,好文,做个备份
    一个SQL语句
    StrutsLayout tag library 1.1发布
    “单击将本站加入收藏夹”的代码
    IE无法上网连接的解决办法
    字符问题!
    Time Tracker Starter Kit 简介
    谈恋爱是百年好合的事
    一个sql语句
    ASP.NET 中的自定义脚本回调
  • 原文地址:https://www.cnblogs.com/fuxw4971/p/14910364.html
Copyright © 2011-2022 走看看