团队博客-第二阶段冲刺-Day4
团队博客-第二阶段冲刺-Day4
团队任务
完成图片转表格app(TransformMine)的开发
1.统一,简约,漂亮的前端界面
2.完成用户主要功能的开发
3.优化用户体验
4.定时团队任务进行团队任务完成情况的审查
今日完成任务
1.完成需要的图标的制作和导入
2.将主要页面的布局layout写完
今日团队任务关键代码:
<?xml version="1.0" encoding="utf-8"?> <androidx.drawerlayout.widget.DrawerLayout 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/drawer_layout" android:layout_width="match_parent" android:layout_height="match_parent" tools:openDrawer="start"> <!-- 主内容填充 --> <include android:id="@+id/include_main" layout="@layout/layout_main_content" android:layout_width="match_parent" android:layout_height="match_parent" /> <!-- 侧边栏 --> <com.google.android.material.navigation.NavigationView android:id="@+id/nav_view" android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_gravity="start" app:headerLayout="@layout/include_navigation_header" app:menu="@menu/menu_drawer" /> </androidx.drawerlayout.widget.DrawerLayout>
<?xml version="1.0" encoding="utf-8"?> <com.scwang.smart.refresh.layout.SmartRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" style="@style/PullDownStyle"> <androidx.core.widget.NestedScrollView style="@style/ScrollViewStyle"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center_horizontal" android:orientation="vertical" android:paddingTop="40dp" android:paddingBottom="25dp"> <!-- 请修改为自己的应用图标 --> <androidx.appcompat.widget.AppCompatImageView android:layout_width="165dp" android:layout_height="165dp" android:contentDescription="Logo" app:srcCompat="@drawable/ic_launcher_app_foreground" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="15dp" android:text="@string/app_name" android:textColor="@color/xui_config_color_gray_3" android:textSize="16sp" /> <TextView android:id="@+id/tv_version" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="15dp" android:textColor="@color/xui_config_color_gray_3" android:textSize="16sp" /> <com.xuexiang.xui.widget.grouplist.XUIGroupListView android:id="@+id/about_list" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="35dp" /> <Space android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" /> <TextView android:id="@+id/tv_copyright" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="25dp" android:gravity="center_horizontal" android:textColor="@color/xui_config_color_gray_7" /> </LinearLayout> </androidx.core.widget.NestedScrollView> </com.scwang.smart.refresh.layout.SmartRefreshLayout>
作者:冰稀饭Aurora
出处:https://www.cnblogs.com/rsy-bxf150/p/17413550.html
版权:本作品采用「署名-非商业性使用-相同方式共享 4.0 国际」许可协议进行许可。
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 25岁的心里话
· 闲置电脑爆改个人服务器(超详细) #公网映射 #Vmware虚拟网络编辑器
· 零经验选手,Compose 一天开发一款小游戏!
· 因为Apifox不支持离线,我果断选择了Apipost!
· 通过 API 将Deepseek响应流式内容输出到前端