App1 for group purchases using imitation handles -- home page, app1 for group purchases using handles --
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>
Ii. 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 two-page Bar icon hot movie three as one addHeaderView (headView) into RefreshListView
Three GoodsListAdapter:
mGoodsListAdapter = new GoodsListAdapter(getActivity(),mGoodlist,headerViewsCount);mRefreshListView.setAdapter(mGoodsListAdapter);
1. SimpleDraweeView
2. show images without reservation
<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>
Control whether to display in Adapter
if (mGoodlist.get(i).getIs_appointment() == 1) { holder.goodAppointmentImg.setVisibility(View.VISIBLE);} else { holder.goodAppointmentImg.setVisibility(View.GONE);}
3. Add strikethrough to the original price
Holder. goodValue = (TextView) convertView. findViewById (R. id. good_ TV _value); holder. goodValue. getPaint (). setFlags (Paint. STRIKE_THRU_TEXT_FLAG
Github address: https://github.com/ganchuanpu/CoolShopping