Loading

团队博客-第二阶段冲刺-Day2

团队博客-第二阶段冲刺-Day2

团队任务
  完成图片转表格app(TransformMine)的开发
1.统一,简约,漂亮的前端界面
2.完成用户主要功能的开发
3.优化用户体验
4.定时团队任务进行团队任务完成情况的审查
今日完成任务

1.制作主要的fragment

2.配置接口需要的环境


今日团队任务关键代码:

<?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"
    android:background="?attr/xui_config_color_background">

    <androidx.core.widget.NestedScrollView style="@style/ScrollViewStyle">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical"
            android:paddingTop="50dp">

            <com.xuexiang.xui.widget.imageview.crop.CropImageView
                android:id="@+id/crop_image_view"
                android:layout_width="match_parent"
                android:layout_height="400dp"
                app:civ_imageResource="@null" />


            <com.xuexiang.xui.widget.textview.supertextview.SuperButton
                android:id="@+id/btn_upload"
                style="@style/SuperButton.Primary.Login"
                android:layout_marginTop="16dp"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:text="上传照片"
                android:textSize="26sp"/>
        </LinearLayout>
    </androidx.core.widget.NestedScrollView>
</com.scwang.smart.refresh.layout.SmartRefreshLayout>
<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="?attr/xui_config_color_background"
    android:orientation="vertical">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="TransformMine图像表格化构建"
        android:textSize="26sp"
        android:gravity="center"
        android:layout_marginTop="30dp"/>
    <com.xuexiang.xui.widget.textview.supertextview.SuperButton
        android:id="@+id/btn_transform"
        style="@style/SuperButton.Primary.Login"
        android:layout_marginTop="160dp"
        android:text="表格化构建"
        android:textSize="20sp"
        />

</LinearLayout>

 

posted @ 2023-05-15 20:50  冰稀饭Aurora  阅读(4)  评论(0编辑  收藏  举报