您的位置:首页 > 移动开发

仿拉手团购App1--首页

2017-05-15 23:34 239 查看


一 fragment_home.xml

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

<include
android:id="@+id/home_titlebar"
layout="@layout/home_title_bar"/>

<com.handmark.pulltorefresh.library.PullToRefreshListView
android:id="@+id/home_pull_to_refresh_listView"
android:layout_width="match_parent"
android:layout_height="match_parent"/>

</LinearLayout>


二 home_head_page.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/head_page_paddingTB">

<include
android:id="@+id/home_head_include_banner"
layout="@layout/home_banner"/>

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="168dp">

<android.support.v4.view.ViewPager
android:id="@+id/home_head_pager"
android:layout_width="match_parent"
android:layout_height="match_parent">
</android.support.v4.view.ViewPager>

<com.myxh.coolshopping.ui.widget.Indicator
android:id="@+id/home_head_indicator"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
app:indicator_number="2"
app:indicator_radius="8"
app:indicator_foreColor="@color/app_yellow"
app:indicator_bgColor="@color/bg_common_gray"/>
</RelativeLayout>

<include
android:id="@+id/home_head_include_film"
layout="@layout/home_film"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/head_page_paddingTB"/>

</LinearLayout>


banner 两页Bar标志 热门电影三个作为一体addHeaderView(headView) 进RefreshListView 

三 GoodsListAdapter:



mGoodsListAdapter = new GoodsListAdapter(getActivity(),mGoodlist,headerViewsCount);
mRefreshListView.setAdapter(mGoodsListAdapter);


1.SimpleDraweeView实现圆角图片

2.免预约图片的显示



<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true">
<com.facebook.drawee.view.SimpleDraweeView
android:id="@+id/good_photo"
android:layout_width="@dimen/good_image_width"
android:layout_height="@dimen/good_image_height"
android:layerType="software"
android:scaleType="centerCrop"
fresco:placeholderImage="@mipmap/default_list_pic"/>
<ImageView
android:id="@+id/good_icon"
android:layout_width="@dimen/good_image_width"
android:layout_height="@dimen/good_image_height"
android:layerType="software"
android:scaleType="centerCrop"
android:src="@mipmap/pic_b"/>
<ImageView
android:id="@+id/good_appointment_img"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layerType="software"
android:scaleType="centerCrop"
android:src="@mipmap/appointment_img"/>
</FrameLayout>


Adapter中控制是否显示

if (mGoodlist.get(i).getIs_appointment() == 1) {
holder.goodAppointmentImg.setVisibility(View.VISIBLE);
} else {
holder.goodAppointmentImg.setVisibility(View.GONE);
}


3.原有价格添加删除线

holder.goodValue = (TextView) convertView.findViewById(R.id.good_tv_value);
holder.goodValue.getPaint().setFlags(Paint.STRIKE_THRU_TEXT_FLAG);//添加删除线


  

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