仿拉手团购App9-- 产品详情界面

 

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
                    style="@style/detail_view_style"/>
                <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
                        style="@style/detail_view_style"
                        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: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: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: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
                        style="@style/detail_view_style"/>
                    <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"/>
                        <View
                            style="@style/detail_view_style"
                            android: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: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: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: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: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
            style="@style/detail_view_style"/>
        <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>

1.点击收藏

2.社会化分享

时间: 2024-10-29 07:32:59

仿拉手团购App9-- 产品详情界面的相关文章

仿拉手团购App7--个人中心界面

UserProfileActivity 退出登录 case R.id.user_btn_exit_login: User.logOut(); Intent data = new Intent(); getActivity().setResult(UserProfileActivity.PROFILE_RESULT_CODE,data); getActivity().finish(); break;

仿拉手团购App6--注册界面

获得验证码 case R.id.register_btn_getCode: mPhoneNumber = mEtPhoneNumber.getText().toString(); if (LoginHelperUtil.isPhoneNumber(mPhoneNumber)) { BmobManager.getInstance(new BmobMsgSendCallback() { @Override public void onMsgSendSuccess() { ToastUtil.show

仿拉手团购App5--登录界面

    activity_login.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width=&qu

仿拉手团购App5--登录界面2

     ShareSDK第三方登录 case R.id.login_bottom_iv_qq: Platform qq = ShareSDK.getPlatform(QQ.NAME); authorize(qq); break; case R.id.login_bottom_iv_wechat: Platform wechat = ShareSDK.getPlatform(Wechat.NAME); authorize(wechat); break; case R.id.login_botto

仿拉手团购App2--当前城市选择Activity

首页中点击城市TextView调转到当前城市选择Activity fragment_city.xml <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background=&quo

项目拉手团购开发记录

项目:拉手团购 项目:拉手团购 11.07 构建框架 下载数据 注意字段名要一致 使用Gson解析JsonArray时,代码如下: Gson gson = new Gson(); Type type = new TypeToken<ArrayList<数据类型>>(){}.getType(); ArrayList<数据类型>list = gson.fromjson(json,type); 其中Type为Java.lang.reflect.type TypeToken为G

翻页效果的实现(仿满座团购主页)

整体实现效果: 点击root,也就是红色的任何处,页面会像翻书一样翻转.翻转到first,也就是蓝色的界面.当点击顶部root页面部分的时候,页面会重新翻到root,也就是红色的界面. 开始时候的效果图: 点击root任何处的效果图: 点击first顶部的效果图: 代码: -(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { //点击root,也就是红色的任何处,页面会像翻书一样翻转.翻转到first,也就是蓝色的界面

iOS_21团购_真正封装的团购详情控制器

最终效果图: DealDetailController控制器 // // DealDetailController.h // 帅哥_团购 // // Created by beyond on 14-8-20. // Copyright (c) 2014年 com.beyond. All rights reserved. // 真正的通过xib显示一个订单的详情的控制器 #import <UIKit/UIKit.h> @class Deal; @interface DealDetailContr

团购App-高仿拉手网

最近在学着做一个团购APP,仿照的是拉手网App,下面是运行效果图,欢迎加入QQ群一起探讨交流.群号:542211401 主要功能有: 引导界面,城市定位和选择,首页,周边,商品列表,商品详情,订单支付,二维码商品扫描,地图,第三方账号登录,商品分享,缓存清理等 所用技术: EventBus,RxAndroid, NoHttp,Image Loader, 热更新,消息推送,支付,自定义控件封装,高层类封装,二维码 等等