山东大学-创新实训-地图圈系统

山东大学-创新实训-地图圈系统

个人中心的界面与功能

1.界面

做一个常见的个人中心的界面

最上面是个人的头像、昵称、个人介绍,下面紧跟的是相关功能

(类似微信个人界面)

代码布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <!--顶栏-->
    <LinearLayout
        android:layout_marginTop="5dp"
        android:gravity="right"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <ImageButton
            android:id="@+id/mycamera"
            android:layout_marginRight="20dp"
            android:background="@mipmap/food"
            android:layout_width="21dp"
            android:layout_height="21dp" />
    </LinearLayout>
    <LinearLayout
        android:id="@+id/personal_info"
        android:layout_marginTop="30dp"
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:visibility="gone">
        <de.hdodenhof.circleimageview.CircleImageView
            android:id="@+id/head_img"
            android:layout_marginLeft="25dp"
            android:src="@drawable/login_bg"
            android:layout_width="70dp"
            android:layout_height="70dp" />
        <LinearLayout
            android:orientation="vertical"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content">
            <TextView
                android:textColor="@color/titleText"
                android:textStyle="bold"
                android:id="@+id/login_name"
                android:layout_marginLeft="20dp"
                android:textSize="25sp"
                android:text="string/login_name"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />
            <LinearLayout
                android:layout_marginTop="15dp"
                android:layout_marginLeft="20dp"
                android:orientation="horizontal"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content">
                <TextView
                    android:id="@+id/introduction"
                    android:textColor="@color/wechat_num"
                    android:textSize="14sp"
                    android:text="描述一下自己吧"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content" />
            </LinearLayout>
        </LinearLayout>
    </LinearLayout>
    <LinearLayout
        android:id="@+id/login_button"
        android:layout_marginTop="30dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:visibility="gone">
        <de.hdodenhof.circleimageview.CircleImageView
            android:id="@+id/please_login"
            android:layout_marginLeft="25dp"
            android:src="@drawable/login_bg"
            android:layout_width="70dp"
            android:layout_height="70dp" />
        <LinearLayout
            android:orientation="vertical"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_marginLeft="20dp"
            android:gravity="center">
            <TextView
                android:textColor="@color/titleText"
                android:textStyle="bold"
                android:id="@+id/login_name_no"
                android:textSize="23sp"
                android:text="请先登录"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />

        </LinearLayout>

    </LinearLayout>
    <ImageView
        android:layout_marginTop="35dp"
        android:background="@color/contact_background"
        android:layout_width="match_parent"
        android:layout_height="10dp" />
    <ListView
        android:background="@color/list_background"
        android:dividerHeight="0.5dp"
        android:divider="@drawable/discover_divier"
        android:id="@+id/my_listview1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
    </ListView>
    <ImageView
        android:background="@color/contact_background"
        android:layout_width="match_parent"
        android:layout_height="10dp" />
    <ListView
        android:background="@color/list_background"
        android:dividerHeight="0.5dp"
        android:divider="@drawable/discover_divier"
        android:id="@+id/my_listview2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
    </ListView>
    <ImageView
        android:background="@color/contact_background"
        android:layout_width="match_parent"
        android:layout_height="10dp" />
    <ListView
        android:background="@color/list_background"
        android:dividerHeight="0.5dp"
        android:divider="@drawable/discover_divier"
        android:id="@+id/my_listview3"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
    </ListView>
    <ImageView
        android:background="@color/contact_background"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
</LinearLayout>

listview的内容在Java代码中进行填充

效果:

山东大学-创新实训-地图圈系统

2.相关功能

有我的动态、收藏、轨迹、天气、个人信息、设置

我的动态:查看和操作我发布过的动态

收藏:查看和操作我收藏的地点

轨迹:轨迹记录和回放的功能

天气:利用和风天气API进行天气相关信息的展示

个人信息:可以查看个人信息,修改个人信息

设置:退出登录等等功能

listview的点击功能:

listView1.setOnItemClickListener(new AdapterView.OnItemClickListener() {
            @Override
            public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
                if(aCache.getAsJSONObject("islogin")!=null){
                    Intent intent=new Intent(getActivity(), My_dongtai.class);
                    startActivity(intent);
                }else{
                    Toast.makeText(getContext(),"请先登录",Toast.LENGTH_SHORT).show();
                }
            }
        });

通过点击不同的listview进行不同界面的跳转

效果举例:

山东大学-创新实训-地图圈系统

上一篇:每日日报


下一篇:1个月学会Android开发!毕业一年萌新的Android大厂面经,灵魂拷问