Android仿拉手网团购App产品详情界面效果
短信预约 -IT技能 免费直播动态提醒
先给大家展示下效果图,如果感觉还不错,请参考实例代码。
效果图如下所示:
具体代码如下所示:
activity_detail.xml
<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.myxh.coolshopping.ui.activity.DetailActivity"> <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_above="@+id/detail_layout_buy"> <com.myxh.coolshopping.ui.widget.ObserverScrollView android:id="@+id/detail_scroll_view" android:layout_width="match_parent" android:layout_height="match_parent"> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <com.facebook.drawee.view.SimpleDraweeView android:id="@+id/detail_product_photo" android:layout_width="match_parent" android:layout_height="@dimen/detail_photo_height" android:scaleType="centerCrop" app:placeholderImage="@mipmap/home_adver_320"/> <View /> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" android:padding="@dimen/detail_product_info_layout_padding"> <TextView android:id="@+id/detail_tv_product_name" android:layout_width="wrap_content" android:layout_height="wrap_content" tools:text="竹林宾馆" android:textSize="@dimen/textSize_20" android:textColor="@color/app_yellow"/> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="5dp" android:layout_marginBottom="5dp" android:gravity="center_vertical" android:orientation="horizontal"> <TextView android:id="@+id/detail_tv_description" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:paddingRight="10dp" tools:text="大床房入住一晚,交通便利" android:textSize="@dimen/textSize_13"/> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/detail_bought" android:textSize="@dimen/textSize_14"/> <TextView android:id="@+id/detail_tv_bought" android:layout_width="wrap_content" android:layout_height="wrap_content" tools:text="289" android:textSize="@dimen/textSize_14"/> </LinearLayout> <View android:layout_marginTop="@dimen/detail_view_marginTop"/> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:paddingTop="5dp" android:paddingBottom="5dp" android:orientation="horizontal" android:background="@color/white"> <LinearLayout android:id="@+id/detail_sure_layout_anytime" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="@dimen/detail_sure_layout_marginRight" android:gravity="center_vertical" android:orientation="horizontal"> <ImageView android:layout_width="@dimen/detail_sure_icon_width" android:layout_height="@dimen/detail_sure_icon_height" android:class="lazy" data-src="@mipmap/mini_icon_sure"/> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="@dimen/detail_sure_text_marginLeft" android:text="@string/detail_sure_anytime" android:textSize="@dimen/textSize_14"/> </LinearLayout> <LinearLayout android:id="@+id/detail_sure_layout_overdue" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="@dimen/detail_sure_layout_marginRight" android:gravity="center_vertical" android:orientation="horizontal"> <ImageView android:layout_width="@dimen/detail_sure_icon_width" android:layout_height="@dimen/detail_sure_icon_height" android:class="lazy" data-src="@mipmap/mini_icon_sure"/> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="@dimen/detail_sure_text_marginLeft" android:text="@string/detail_sure_overdue" android:textSize="@dimen/textSize_14"/> </LinearLayout> <LinearLayout android:id="@+id/detail_sure_layout_sevenday" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="@dimen/detail_sure_layout_marginRight" android:gravity="center_vertical" android:orientation="horizontal"> <ImageView android:layout_width="@dimen/detail_sure_icon_width" android:layout_height="@dimen/detail_sure_icon_height" android:class="lazy" data-src="@mipmap/mini_icon_sure"/> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="@dimen/detail_sure_text_marginLeft" android:text="@string/detail_sure_sevenday" android:textSize="@dimen/textSize_14"/> </LinearLayout> </LinearLayout> <View /> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="@dimen/detail_merchant_info_layout_marginTop" android:background="@color/white" android:orientation="vertical"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/detail_merchant_info" android:textColor="@color/detail_merchant_info_color" android:textSize="@dimen/textSize_17"/> <Viewandroid:layout_marginTop="@dimen/detail_view_marginTop"/> <TextView android:id="@+id/detail_tv_merchant_title" android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="5dp" tools:text="兴鑫宾馆" android:textSize="@dimen/textSize_16"/> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:padding="@dimen/detail_merchant_detail_layout_padding" android:orientation="horizontal"> <LinearLayout android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="3" android:orientation="vertical"> <TextView android:id="@+id/detail_merchant_tv_address" android:layout_width="wrap_content" android:layout_height="wrap_content" tools:text="湖北咸宁咸安区鱼水路89号"/> <TextView android:id="@+id/detail_merchant_tv_hours" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="5dp" tools:text="营业时间:24小时"/> <TextView android:id="@+id/detail_merchant_tv_distance" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="5dp" tools:text="6.8km"/> </LinearLayout> <View android:layout_width="1dp" android:layout_height="match_parent" android:background="@mipmap/line_divide_vertical"/> <ImageView android:id="@+id/detail_merchant_iv_call" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:layout_gravity="center" android:class="lazy" data-src="@mipmap/ic_call"/> </LinearLayout> </LinearLayout> </LinearLayout> <include android:id="@+id/detail_include_description" layout="@layout/layout_detail_description" android:layout_width="match_parent" android:layout_height="wrap_content"/> </LinearLayout> </com.myxh.coolshopping.ui.widget.ObserverScrollView> <LinearLayout android:id="@+id/detail_title_layout" android:layout_width="match_parent" android:layout_height="45dp" android:orientation="horizontal" android:layout_alignParentTop="true" android:padding="@dimen/detail_title_layout_padding"> <ImageView android:id="@+id/detail_title_iv_back" android:layout_width="wrap_content" android:layout_height="match_parent" android:class="lazy" data-src="@mipmap/icon_back_black"/> <TextView android:id="@+id/detail_title_tv_title" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:layout_gravity="center" android:layout_marginEnd="@dimen/detail_title_tv_marginLR" android:layout_marginStart="@dimen/detail_title_tv_marginLR" android:gravity="center" tools:text="国际酒店" android:singleLine="true" android:ellipsize="end" android:textSize="@dimen/textSize_20"/> <ImageView android:id="@+id/detail_title_iv_favorite" android:layout_toLeftOf="@+id/detail_title_iv_share" android:layout_marginRight="5dp" android:layout_width="wrap_content" android:layout_height="match_parent" android:class="lazy" data-src="@mipmap/icon_uncollect_black"/> <ImageView android:id="@+id/detail_title_iv_share" android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_alignParentRight="true" android:class="lazy" data-src="@mipmap/icon_share_black"/> </LinearLayout> </RelativeLayout> <RelativeLayout android:id="@+id/detail_layout_buy" android:layout_width="match_parent" android:layout_height="@dimen/detail_layout_buy_height" android:layout_alignParentBottom="true" android:background="@color/white"> <View /> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="center" android:orientation="horizontal"> <LinearLayout android:layout_width="0dp" android:layout_height="match_parent" android:gravity="center_vertical" android:layout_weight="1" android:orientation="horizontal"> <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="horizontal"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="15dp" android:text="$" android:textSize="@dimen/textSize_14" android:textColor="@color/app_yellow" android:textStyle="bold"/> <TextView android:id="@+id/detail_layout_buy_price" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="@dimen/detail_layout_buy_price_marginLeft" tools:text="119" android:textSize="@dimen/textSize_23" android:textColor="@color/app_yellow" android:textStyle="bold"/> </LinearLayout> <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" android:layout_marginLeft="15dp" android:orientation="vertical"> <TextView android:id="@+id/detail_layout_buy_value" android:layout_width="wrap_content" android:layout_height="wrap_content" tools:text="$998" android:textSize="@dimen/textSize_12"/> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/detail_bottom_retail_price" android:textSize="@dimen/textSize_12"/> </LinearLayout> </LinearLayout> <Button android:id="@+id/detail_layout_buy_btn" android:layout_width="wrap_content" android:layout_height="match_parent" android:text="@string/detail_bottom_buy" android:textSize="@dimen/textSize_17" android:textColor="@color/white" android:background="@color/app_yellow"/> </LinearLayout> </RelativeLayout></RelativeLayout>
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
Android仿拉手网团购App产品详情界面效果
下载Word文档到电脑,方便收藏和打印~
下载Word文档
猜你喜欢
Android仿拉手网团购App我的收藏界面实例代码
先给大家展示效果图,如果感觉还不错,请参考实例代码效果图如下所示:具体代码如下:private void initData() { BmobManager.getInstance(new BmobQueryCallback() { @Ov
2023-05-31
编程热搜
Python 学习之路 - Python
一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-chatgpt的中文全称是什么
chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列C/C++可变参数的使用
可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃Python 3 教程
Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 PythonPython pip包管理
一、前言 在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install 和 pip , 目前官方推荐使用 pip。
编程资源站
- 资料下载
- 历年试题