美团外卖我的信息界面实现

先上图:

布局:

  1 <?xml version="1.0" encoding="UTF-8"?>
  2
  3 -<LinearLayout android:orientation="vertical" android:layout_height="match_parent" android:layout_width="match_parent" xmlns:android="http://schemas.android.com/apk/res/android">
  4
  5
  6 -<RelativeLayout android:layout_height="0dp" android:layout_width="match_parent" android:background="@drawable/takeout_bg_mine_user" android:layout_weight="1" android:id="@+id/relativelayout_mycount_my">
  7
  8 <TextView android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/tv_mycount_my" android:text="登陆/注册" android:layout_marginBottom="18dp" android:layout_centerHorizontal="true" android:layout_alignParentBottom="true"/>
  9
 10 <ImageView android:layout_height="80dp" android:layout_width="80dp" android:background="@drawable/takeout_ic_avatar_default" android:id="@+id/iv_mycount_my" android:layout_centerHorizontal="true" android:layout_centerVertical="true"/>
 11
 12 </RelativeLayout>
 13
 14 <!-- 美团外卖的我的登录界面的钱包、红包以及代金券行 -->
 15
 16
 17
 18 -<LinearLayout android:orientation="vertical" android:layout_height="0dp" android:layout_width="match_parent" android:background="@color/halfgrey" android:layout_weight="2">
 19
 20
 21 -<LinearLayout android:orientation="horizontal" android:layout_height="50dp" android:layout_width="match_parent" android:background="@color/white" android:id="@+id/linearlayout__money_my" android:paddingTop="5dp">
 22
 23 <!-- 美团外卖的我的登录界面的钱包 -->
 24
 25
 26
 27 -<LinearLayout android:orientation="vertical" android:layout_height="wrap_content" android:layout_width="0dp" android:layout_weight="1" android:id="@+id/linearlayout_wallet_my" android:layout_marginBottom="4dp" android:layout_gravity="center">
 28
 29 <TextView android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/tv_wallte_my" android:text="@string/wallet" android:layout_gravity="center"/>
 30
 31
 32 -<LinearLayout android:orientation="horizontal" android:layout_height="wrap_content" android:layout_width="match_parent" android:id="@+id/linearlayout_wallte_content_my">
 33
 34 <ImageView android:layout_height="wrap_content" android:layout_width="0dp" android:layout_weight="1" android:id="@+id/iv_wallte_my" android:src="@drawable/wallet_meituan" android:layout_marginTop="5dp"/>
 35
 36 <TextView android:layout_height="wrap_content" android:layout_width="0dp" android:layout_weight="2" android:text="@string/wallet_meituan" android:layout_marginTop="5dp" android:textSize="16sp"/>
 37
 38 </LinearLayout>
 39
 40 </LinearLayout>
 41
 42 <!-- 美团外卖的我的登录界面的红包 -->
 43
 44
 45
 46 -<LinearLayout android:orientation="vertical" android:layout_height="wrap_content" android:layout_width="0dp" android:layout_weight="1" android:id="@+id/linearlayout_red_packet_my" android:layout_marginBottom="4dp" android:layout_gravity="center">
 47
 48 <TextView android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/tv_red_packet_my" android:text="@string/red_packet" android:layout_gravity="center"/>
 49
 50
 51 -<LinearLayout android:orientation="horizontal" android:layout_height="wrap_content" android:layout_width="match_parent" android:id="@+id/linearlayout_red_packet_content_my">
 52
 53 <ImageView android:layout_height="wrap_content" android:layout_width="0dp" android:layout_weight="1" android:id="@+id/iv_red_packet_my" android:src="@drawable/red_packet_meituan" android:layout_marginTop="5dp"/>
 54
 55 <TextView android:layout_height="wrap_content" android:layout_width="0dp" android:layout_weight="2" android:text="@string/red_packet_meituan" android:layout_marginTop="5dp" android:textSize="16sp"/>
 56
 57 </LinearLayout>
 58
 59 </LinearLayout>
 60
 61 <!-- 美团外卖的我的登录界面的代金券 -->
 62
 63
 64
 65 -<LinearLayout android:orientation="vertical" android:layout_height="wrap_content" android:layout_width="0dp" android:layout_weight="1" android:id="@+id/linearlayout_cash_coupon_my" android:layout_marginBottom="4dp" android:layout_gravity="center">
 66
 67 <TextView android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/tv_cash_coupon_my" android:text="@string/cash_coupon" android:layout_gravity="center"/>
 68
 69
 70 -<LinearLayout android:orientation="horizontal" android:layout_height="wrap_content" android:layout_width="match_parent" android:id="@+id/linearlayout_cash_coupon_content_my" android:layout_marginTop="5dp">
 71
 72 <ImageView android:layout_height="wrap_content" android:layout_width="0dp" android:layout_weight="1" android:id="@+id/iv_cash_coupon_my" android:src="@drawable/cash_coupon_business"/>
 73
 74 <TextView android:layout_height="wrap_content" android:layout_width="0dp" android:layout_weight="2" android:text="@string/cash_coupon_business" android:textSize="16sp"/>
 75
 76 </LinearLayout>
 77
 78 </LinearLayout>
 79
 80 </LinearLayout>
 81
 82 <View android:layout_height="0.1dp" android:layout_width="match_parent" android:background="@color/linecolor"/>
 83
 84 <View android:layout_height="0.1dp" android:layout_width="match_parent" android:background="@color/linecolor" android:layout_marginTop="15dp"/>
 85
 86
 87 -<LinearLayout android:orientation="vertical" android:layout_height="wrap_content" android:layout_width="match_parent" android:background="@color/white" android:layout_marginTop="0dp">
 88
 89 <!-- 美团外卖的我的登录界面的管理收货地址 -->
 90
 91
 92
 93 -<LinearLayout android:orientation="horizontal" android:layout_height="wrap_content" android:layout_width="match_parent" android:id="@+id/linearlayout_address_my" android:layout_marginBottom="10dp" android:layout_marginTop="10dp">
 94
 95 <ImageView android:layout_height="wrap_content" android:layout_width="0dp" android:layout_weight="1" android:src="@drawable/address" android:layout_marginLeft="6dp"/>
 96
 97 <TextView android:layout_height="wrap_content" android:layout_width="0dp" android:layout_weight="6" android:text="@string/address" android:textSize="15sp"/>
 98
 99 </LinearLayout>
100
101 <View android:layout_height="0.1dp" android:layout_width="match_parent" android:background="@color/linecolor"/>
102
103 <!-- 美团外卖的我的登录界面的我的收藏 -->
104
105
106
107 -<LinearLayout android:orientation="horizontal" android:layout_height="wrap_content" android:layout_width="match_parent" android:id="@+id/linearlayout_myfavorite_my" android:layout_marginBottom="10dp" android:layout_marginTop="10dp" android:layout_marginLeft="5dp">
108
109 <ImageView android:layout_height="wrap_content" android:layout_width="0dp" android:layout_weight="1" android:src="@drawable/myfavorite"/>
110
111 <TextView android:layout_height="wrap_content" android:layout_width="0dp" android:layout_weight="6" android:text="@string/myfavorite" android:textSize="16sp"/>
112
113 </LinearLayout>
114
115 </LinearLayout>
116
117 <View android:layout_height="0.1dp" android:layout_width="match_parent" android:background="@color/linecolor"/>
118
119 <View android:layout_height="0.1dp" android:layout_width="match_parent" android:background="@color/linecolor" android:layout_marginTop="15dp"/>
120
121
122 -<LinearLayout android:orientation="vertical" android:layout_height="wrap_content" android:layout_width="match_parent" android:background="@color/white">
123
124 <!-- 美团外卖的我的登录界面的帮助与反馈 -->
125
126
127
128 -<LinearLayout android:orientation="horizontal" android:layout_height="wrap_content" android:layout_width="match_parent" android:id="@+id/linearlayout_help_my" android:layout_marginBottom="10dp" android:layout_marginTop="10dp" android:layout_marginLeft="5dp">
129
130 <ImageView android:layout_height="wrap_content" android:layout_width="0dp" android:layout_weight="1" android:src="@drawable/help"/>
131
132 <TextView android:layout_height="wrap_content" android:layout_width="0dp" android:layout_weight="6" android:text="@string/help" android:textSize="16sp"/>
133
134 </LinearLayout>
135
136 <View android:layout_height="0.1dp" android:layout_width="match_parent" android:background="@color/linecolor"/>
137
138 <!-- 美团外卖的我的登录界面的更多 -->
139
140
141
142 -<LinearLayout android:orientation="horizontal" android:layout_height="wrap_content" android:layout_width="match_parent" android:id="@+id/linearlayout_more_my" android:layout_marginBottom="10dp" android:layout_marginTop="10dp" android:layout_marginLeft="6dp">
143
144 <ImageView android:layout_height="wrap_content" android:layout_width="0dp" android:layout_weight="1" android:layout_gravity="center" android:src="@drawable/more"/>
145
146 <TextView android:layout_height="wrap_content" android:layout_width="0dp" android:layout_weight="6" android:text="@string/more" android:textSize="16sp"/>
147
148 </LinearLayout>
149
150 <View android:layout_height="0.1dp" android:layout_width="match_parent" android:background="@color/linecolor"/>
151
152 </LinearLayout>
153
154
155 -<RelativeLayout android:layout_height="wrap_content" android:layout_width="fill_parent" android:background="@color/white" android:layout_marginTop="15dp">
156
157 <TextView android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/tv_tel_my" android:text="@string/tel" android:layout_gravity="center" android:layout_marginTop="20dp" android:textSize="16sp" android:textColor="@color/ginger" android:layout_centerInParent="true"/>
158
159 </RelativeLayout>
160
161 <TextView android:layout_height="wrap_content" android:layout_width="wrap_content" android:text="@string/service_time" android:layout_gravity="center" android:layout_marginTop="10dp"/>
162
163 </LinearLayout>
164
165 </LinearLayout>
时间: 2024-10-12 18:25:03

美团外卖我的信息界面实现的相关文章

美团外卖app可行性分析

小组:韩睿哲,王永强,孟烈,徐殿强 1 引言 1.1编写目的年轻人追求时尚,快捷,因此外卖行业拥有广阔的消费群体:团购的兴起,也促进了人们的消费欲望,人们继续一个外卖平台,来满足他们的欲望.O2o模式的日渐完善,使得以前的进店消费模式发展为送餐就餐模式,o2o将线下商务的机会与互联网结合在了一起,让互联网成为线下交易的前台.这样线下服务就可以用线上来揽客,消费者可以用线上来筛选服务,还有成交可以在线结算,很快达到规模.该模式最重要的特点是:推广效果可查,每笔交易可跟踪.1.2项目背景 项目名称:

产品分析之美团外卖

在今年全国第十二届人大三次会议上,李克强总理在政府工作报告中首次提出“互联网+”行动计划.那么,到底什么是互联网+呢?直白一点讲就是互联网加一个传统行业.而外卖产品就是典型的用互联网改善传统外卖的例子,原本外卖都是用户通过电话订购,商户按照订购进行生产-派送-收费一系列流程,商户需要自己拉用户,资金和精力有限,效果不明显,用户评价也不高,而互联网外卖主要是打造一个平台,平台上聚集线上的用户和线下的商家,用户在平台上选择商家点单,可以完成线上支付或者餐到付款,平台将信息反馈到线下商家,商家根据订单

美团外卖系统架构演进与稳定性的探索

简单介绍一下外卖现在的情况:我们从2013年10月份做外卖的事情,是从餐饮外卖开始的.经过两年多的发展,我们不光可以提供餐饮外卖,也可以提供水果.鲜花.蛋糕.下午茶甚至是超市和便利店一些外送的服务.我们做外卖过程中,我们发现用户对外送的体验有两个关注点: 第一个是品质,用户对品质要求非常高,送过来的饭不能凉了,不能不好看,送餐员身上脏兮兮也不行会影响食欲的: 另外一个关注点要准时,一定要按时间送到,比如我要求按12点送到就一定要按12点送到,不能早也不能晚,如果早为什么不好呢?11点40送到不行

5月第1周业务风控关注 | 美团正在调查用户信息遭泄露事件

易盾业务风控周报每周呈报值得关注的安全技术和事件,包括但不限于内容安全.移动安全.业务安全和网络安全,帮助企业提高警惕,规避这些似小实大.影响业务健康发展的安全风险. 1.美团正在调查用户信息遭泄露事件 回应称外卖业务涉及多个相关方 美团点评正在对有关大规模数据泄露的报告展开调查.美团表示,它正在与警方合作调查报道中的泄露事件.该事件已经引起消费者的愤怒,以及对中国互联网公司保护敏感个人信息的能力的担忧.媒体的报道正值美国社交巨头Facebook被曝发生数据泄露丑闻,招致监管方和消费者抵制之际.

美团外卖订单系统演进

美团外卖从2013年9月成交第一单以来,已走过了三个年头.期间,业务飞速发展,美团外卖由日均几单发展为日均500万单(9月11日已突破600万)的大型O2O互联网外卖服务平台.平台支持的品类也由最初外卖单品拓展为全品类. 随着订单量的增长.业务复杂度的提升,外卖订单系统也在不断演变进化,从早期一个订单业务模块到现在分布式可扩展的高性能.高可用.高稳定订单系统.整个发展过程中,订单系统经历了几个明显的阶段,下面本篇文章将为大家介绍一下订单系统的演进过程,重点关注各阶段的业务特征.挑战及应对之道.

WeGeek Talk | 美团外卖

今天前来专栏分享的极客,是来自美团外卖的小程序前端团队. 在 2017 年 1 月 9 日,美团外卖作为首批小程序正式上线,截止到目前,美团外卖小程序 DAU 已近千万.但事实上,美团外卖早期时更多的是主打手机网页端,在美团外卖的小程序刚上线时并没有过多去维护,之后才与微信官方有了更多交流.在此基础上,美团还开源了 mpvue 框架来优化小程序的开发体验. 那么美团为何对小程序发生了态度转变,如今如此看重其发展呢?一起来看看今天的极客故事. 美团外卖小程序前端团队共有 10 余人,归属于美团外卖

信息界面——GridLayout

1 <?xml version="1.0" encoding="utf-8"?> 2 <GridLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:layout_width="match_parent" 4 android:layout_height="match_parent" 5 and

React-Native个人信息界面

最近在做一个小练习项目,用户登陆后需要跳转到用户登录信息界面,加班半个小时终于将界面的布局搞定.接触Rect-Native也有一段时间了,以前没有做过ios,只做过android,就布局和开发效率上来说,react-native的给我的感觉是开发效率要大大高于android的.下面是具体的代码: 1 import React from 'react-native' 2 import Icon from 'react-native-vector-icons/FontAwesome' 3 4 let

对美团外卖的评价

美团外卖是美团网旗下专业提供外卖服务的网上订餐平台,于2013年11月正式上线,已覆盖北京.上海.广州. 天津.西安.沈阳.厦门.宁波.武汉.昆明等百余座城市,以及50000+家餐厅.5000+品牌连锁餐厅,中餐.西餐.小吃.快餐.饮料甜点……想订神马就定神马.让众多学生与宅男宅女们轻松实现了网上订餐,手机APP订外卖.在线支付.方便快捷. 虽然美团外卖给我们带来了极大的方便,但是这些方便的背后也有着很多的不足之处.比如说送餐时间,据我以往经验,快的30分钟左右,慢的一个小时不等.学校附近的这些