您的位置:首页 > 其它

第七周(2) 打卡功能

2017-06-19 19:16 85 查看

引言

在这半周的工作中,我们小组仍然主要进行后台客户端的代码编写工作以及界面的优化,在这里,我对自己主要从事的工作,即客户端的打卡功能的规划,做一个重点的介绍。

一、界面编写

计划界面为一个列表,显示出每个人的打卡状态,以及上传的照片。具体代码如下所示:

<?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:orientation="vertical">

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/white"
android:padding="0dp">

<ImageButton
android:layout_width="?attr/actionBarSize"
android:layout_height="?attr/actionBarSize"
android:layout_alignParentLeft="true"
android:background="@drawable/toolbar_back_bg"
android:onClick="CommentBack"
android:src="?attr/homeAsUpIndicator" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="打卡"
android:textColor="@color/black"
android:textSize="19sp" />
</RelativeLayout>

<ListView
android:id="@+id/comment_lv"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>


二、内部逻辑实现

逻辑代码目前还没有编写,因为后半周时还没有后台接口,所以只进行了一下类的创建与界面获取,这里不再贴代码。

同时下半周我帮页面做了一些xml方面的工作,代码大致如下:

<merge
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" >

<com.lorentzos.flingswipe.SwipeFlingAdapterView
android:id="@+id/frame"
android:background="#ffeee9e2"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:rotation_degrees="15.5"
tools:context=".MyActivity" />

<include layout="@layout/buttons" />

</merge>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: