Android在開(kāi)發(fā)中的實(shí)用技巧之ExpandableListView簡(jiǎn)單實(shí)現(xiàn)商品列表折疊

根據(jù)已上線的app里總結(jié)出來(lái)的實(shí)用小技巧

一、簡(jiǎn)介

在日常開(kāi)發(fā),有可能會(huì)遇到需要一些可以展開(kāi)的列表,比如QQ的好友列表。但是,用Android的該怎么做呢?其實(shí)在我沒(méi)有接觸過(guò)ExpandableListView類之前,都是自定義控件繼承于ListView或者ListView嵌套ListView來(lái)實(shí)現(xiàn)的, 當(dāng)然也不推薦大家這樣使用, 這樣使用會(huì)降低app頁(yè)面的加載速度和性能. 然后,后來(lái)發(fā)現(xiàn)了Android也給我們提供了ExpandableListView類,完美實(shí)現(xiàn)這樣類似的需求, 極大的方便了我們開(kāi)發(fā).

二、使用

  • 開(kāi)發(fā)工具:
  • Android Studio
  • 使用的第三方框架:

Demo來(lái)自某個(gè)線上電商app的頁(yè)面, 使用前先看看效果圖


example.gif
  • activity_main.xml

使用AppBarLayout 來(lái)作為標(biāo)題, 是因?yàn)橛嘘幱靶Ч? 看著還不錯(cuò)
<com.zhy.autolayout.AutoLinearLayout/>是一個(gè)實(shí)現(xiàn)第三方適配的控件
ExpandableListView里的android:groupIndicator="@null"功能是去除掉默認(rèn)的關(guān)閉和打開(kāi)狀態(tài)的圖片(系統(tǒng)默認(rèn)的不好看)

<com.zhy.autolayout.AutoLinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <android.support.design.widget.AppBarLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <com.zhy.autolayout.AutoLinearLayout
            android:id="@+id/ll_title_root"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#ec0f38"
            android:orientation="vertical">

            <com.zhy.autolayout.AutoFrameLayout
                android:layout_width="match_parent"
                android:layout_height="88px">

                <TextView
                    android:id="@+id/tv_title"
                    android:layout_width="wrap_content"
                    android:layout_height="fill_parent"
                    android:layout_gravity="center"
                    android:gravity="center"
                    android:text="優(yōu)惠套餐"
                    android:textColor="#ffffff"
                    android:textSize="32px" />

                <com.zhy.autolayout.AutoLinearLayout
                    android:id="@+id/ll_back"
                    android:layout_width="100px"
                    android:layout_height="match_parent"
                    android:clickable="true"
                    android:gravity="center">

                    <ImageView
                        android:id="@+id/iv_back"
                        android:layout_width="44px"
                        android:layout_height="44px"
                        android:layout_gravity="center_vertical"
                        android:src="@mipmap/icon_back" />
                </com.zhy.autolayout.AutoLinearLayout>
            </com.zhy.autolayout.AutoFrameLayout>
        </com.zhy.autolayout.AutoLinearLayout>
    </android.support.design.widget.AppBarLayout>

    <ExpandableListView
        android:id="@+id/elv_collocation"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#eeeff3"
        android:divider="#eeeff3"
        android:dividerHeight="0dp"
        android:groupIndicator="@null"
        android:listSelector="@null" />
</com.zhy.autolayout.AutoLinearLayout>
  • MainActivity.java

初始化數(shù)據(jù)
elv_collocation.expandGroup(0);默認(rèn)展開(kāi)第一個(gè)

public class MainActivity extends AppCompatActivity {
    private ExpandableListView elv_collocation;
    private List<CollocationPackageBean> collocationList;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        elv_collocation = (ExpandableListView) findViewById(R.id.elv_collocation);
        initData();
    }

    private void initData() {
        collocationList = new ArrayList<>();
        CollocationPackageBean collocation_1 = new CollocationPackageBean();
        CollocationPackageBean collocation_2 = new CollocationPackageBean();

        collocation_1.setTotalPrice(new BigDecimal(897));
        collocation_1.setDiscountFee(new BigDecimal(20));
        collocation_1.setName("818國(guó)貨套餐3");
        List<CollocationPackageBean.CollocationSkuBean> goodsList_1 = new ArrayList<>();
        goodsList_1.add(new CollocationPackageBean.CollocationSkuBean("Meizu/魅族 魅藍(lán) note3 全網(wǎng)通 手機(jī) 銀白 16GB", "http://img11.hqbcdn.com/product/07/0a/070ac7abd57c6d9251d89547f3d62501.jpg"));
        goodsList_1.add(new CollocationPackageBean.CollocationSkuBean("VR PLUS 智能眼鏡vr虛擬現(xiàn)實(shí)頭盔 3D沉浸式 暴風(fēng)魔鏡 vr plus 智能頭盔 白色", "http://img15.hqbcdn.com/product/c6/10/c610075082199955a8d5dcf2aa765b17.jpg"));
        collocation_1.setCollocationSkuDoList(goodsList_1);

        collocation_2.setTotalPrice(new BigDecimal(1034));
        collocation_2.setDiscountFee(new BigDecimal(26));
        collocation_2.setName("超值套餐");
        List<CollocationPackageBean.CollocationSkuBean> goodsList_2 = new ArrayList<>();
        goodsList_2.add(new CollocationPackageBean.CollocationSkuBean("Meizu/魅族 魅藍(lán) note3 全網(wǎng)通 手機(jī) 銀白 16GB", "http://img11.hqbcdn.com/product/07/0a/070ac7abd57c6d9251d89547f3d62501.jpg"));
        goodsList_2.add(new CollocationPackageBean.CollocationSkuBean("Uka/優(yōu)加 Meizu/魅族 魅藍(lán) note3全覆蓋全屏鋼化玻璃膜 白色", "http://img8.hqbcdn.com/product/9c/15/9c15571aa92905ea1edafb0a288f1ebb.jpg"));
        goodsList_2.add(new CollocationPackageBean.CollocationSkuBean("SanDisk/閃迪 至尊高速M(fèi)icroSDHC-TF移動(dòng)存儲(chǔ)卡 Class10-48MB/S 升級(jí)版 16G", "http://img14.hqbcdn.com/product/29/cd/29cda69f5036b38454b6592f96fde774.jpg"));
        goodsList_2.add(new CollocationPackageBean.CollocationSkuBean("Huawei/華為 AM116 金屬耳機(jī) 三鍵線控耳機(jī) 尊爵版", "http://img9.hqbcdn.com/product/0a/90/0a905d9988c91fb0625d9ee44377c8e0.jpg"));
        goodsList_2.add(new CollocationPackageBean.CollocationSkuBean("Lesimo/梵簡(jiǎn) 初見(jiàn)系列10000毫安充電寶 手機(jī)平板通用 移動(dòng)電源 黑色", "http://img11.hqbcdn.com/product/67/3a/673ac0343758ce64e97c2d9986cbbef3.jpg"));
        collocation_2.setCollocationSkuDoList(goodsList_2);

        collocationList.add(collocation_1);
        collocationList.add(collocation_2);
        elv_collocation.setAdapter(new CollocationListAdapter(this, elv_collocation, collocationList));
        elv_collocation.expandGroup(0);
    }
}
  • CollocationListAdapter.java

ExpandableListView的適配器需要繼承自該控件特有的適配器BaseExpandableListAdapter

public class CollocationListAdapter extends BaseExpandableListAdapter {
    private LayoutInflater inflater;
    private Context context;
    private ExpandableListView elv_collocation;
    private List<CollocationPackageBean> data;

    public CollocationListAdapter(Context context, ExpandableListView elv_collocation, List<CollocationPackageBean> data) {
        this.context = context;
        this.elv_collocation = elv_collocation;
        this.inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        this.data = data;
    }

    @Override
    public int getGroupCount() {
        return data.size();
    }

    @Override
    public int getChildrenCount(int groupPosition) {
        return data.get(groupPosition).getCollocationSkuDoList().size();
    }

    @Override
    public Object getGroup(int groupPosition) {
        return data.get(groupPosition);
    }

    @Override
    public Object getChild(int groupPosition, int childPosition) {
        return data.get(groupPosition).getCollocationSkuDoList().get(childPosition);
    }

    @Override
    public long getGroupId(int groupPosition) {
        return groupPosition;
    }

    @Override
    public long getChildId(int groupPosition, int childPosition) {
        return childPosition;
    }

    @Override
    public boolean hasStableIds() {
        return true;
    }

    @Override
    public boolean isChildSelectable(int groupPosition, int childPosition) {
        return true;//如果子條目需要響應(yīng)click事件,必需返回true
    }

    @Override
    public View getGroupView(final int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) {
        ParentViewHolder parentViewHolder;
        if (null == convertView) {
            convertView = inflater.inflate(R.layout.collocation_list_item_parent, parent, false);
            parentViewHolder = new ParentViewHolder(convertView);
            convertView.setTag(parentViewHolder);
            AutoUtils.auto(convertView);
        } else {
            parentViewHolder = (ParentViewHolder) convertView.getTag();
        }
        CollocationPackageBean collocationPackageBean = data.get(groupPosition);
        parentViewHolder.tv_collocation_name.setText(TextUtils.isEmpty(collocationPackageBean.getName()) ? "優(yōu)惠套餐" : collocationPackageBean.getName());
        parentViewHolder.tv_save_text.setText("立省¥" + collocationPackageBean.getDiscountFee());
        parentViewHolder.iv_status.setImageResource(isExpanded ? R.mipmap.icon_top : R.mipmap.icon_bottom);
        parentViewHolder.v_space.setVisibility(isExpanded ? View.GONE : View.VISIBLE);
        parentViewHolder.hsv_goods_list.setVisibility(isExpanded ? View.GONE : View.VISIBLE);
        parentViewHolder.hsv_goods_list.setFocusable(false);//設(shè)置后解決套餐無(wú)法正常展開(kāi)的bug
        if (!isExpanded) {
            //設(shè)置套餐折疊時(shí)顯示套餐商品的圖片
            initGoodsImage(collocationPackageBean, parentViewHolder, groupPosition);
        }
        return convertView;
    }

    @Override
    public View getChildView(final int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent) {
        ChildViewHolder childViewHolder;
        if (null == convertView) {
            convertView = inflater.inflate(R.layout.collocation_list_item_child, parent, false);
            childViewHolder = new ChildViewHolder(convertView);
            convertView.setTag(childViewHolder);
            AutoUtils.auto(convertView);
        } else {
            childViewHolder = (ChildViewHolder) convertView.getTag();
        }
        final CollocationPackageBean.CollocationSkuBean collocationSkuBean = data.get(groupPosition).getCollocationSkuDoList().get(childPosition);
        childViewHolder.sdv_goods_img.setImageURI(Uri.parse(collocationSkuBean.getImageMd5()));
        childViewHolder.tv_goods_title.setText(collocationSkuBean.getSkuTitle());
        childViewHolder.ll_root_view.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                //進(jìn)入商品詳情頁(yè)操作
            }
        });
        if (childPosition == data.get(groupPosition).getCollocationSkuDoList().size() - 1) {
            //當(dāng)前套餐的最后一個(gè)商品
            childViewHolder.ll_bottom.setVisibility(View.VISIBLE);
            childViewHolder.tv_collocation_price.setText(data.get(groupPosition).getTotalPrice().toString());
            childViewHolder.tv_add_cart.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    //把套餐商品加入購(gòu)物車操作
                }
            });
        } else {
            childViewHolder.ll_bottom.setVisibility(View.GONE);
        }
        return convertView;
    }

    class ParentViewHolder {
        private View v_space;
        private ImageView iv_status;
        private HorizontalScrollView hsv_goods_list;
        private TextView tv_collocation_name, tv_save_text;

        private ParentViewHolder (View view) {
            v_space = view.findViewById(R.id.v_space);
            iv_status = (ImageView) view.findViewById(R.id.iv_status);
            hsv_goods_list = (HorizontalScrollView) view.findViewById(R.id.hsv_goods_list);
            tv_collocation_name = (TextView) view.findViewById(R.id.tv_collocation_name);
            tv_save_text = (TextView) view.findViewById(R.id.tv_save_text);
        }
    }

    private class ChildViewHolder {
        private SimpleDraweeView sdv_goods_img;
        private LinearLayout ll_bottom, ll_root_view;
        private TextView tv_add_cart, tv_goods_title, tv_collocation_price;

        private ChildViewHolder (View view) {
            sdv_goods_img = (SimpleDraweeView) view.findViewById(R.id.sdv_goods_img);
            ll_bottom = (LinearLayout) view.findViewById(R.id.ll_bottom);
            ll_root_view = (LinearLayout) view.findViewById(R.id.ll_root_view);
            tv_add_cart = (TextView) view.findViewById(R.id.tv_add_cart);
            tv_goods_title = (TextView) view.findViewById(R.id.tv_goods_title);
            tv_collocation_price = (TextView) view.findViewById(R.id.tv_collocation_price);
        }
    }

    /**
     * 初始化并設(shè)置套餐折疊時(shí)的所有商品圖片
     * @param collocationPackageBean
     * @param parentViewHolder
     * @param groupPosition
     */
    private void initGoodsImage(CollocationPackageBean collocationPackageBean,
                                ParentViewHolder parentViewHolder, final int groupPosition) {
        View collocationView;
        SimpleDraweeView sdv_cart_image;
        RelativeLayout rl_middle;
        LinearLayout rootview = new LinearLayout(context);
        for (int i = 0, len = collocationPackageBean.getCollocationSkuDoList().size(); i < len; i++) {
            collocationView = inflater.inflate(R.layout.item_gift_img, null);
            sdv_cart_image = (SimpleDraweeView) collocationView.findViewById(R.id.sdv_cart_image);
            rl_middle = (RelativeLayout) collocationView.findViewById(R.id.rl_middle);
            sdv_cart_image.setImageURI(Uri.parse(collocationPackageBean.getCollocationSkuDoList().get(i).getImageMd5()));
            rl_middle.setVisibility(View.INVISIBLE);
            collocationView.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    //手動(dòng)實(shí)現(xiàn)展開(kāi)操作
                    elv_collocation.expandGroup(groupPosition);
                }
            });
            AutoUtils.auto(collocationView);
            rootview.addView(collocationView);
        }
        parentViewHolder.hsv_goods_list.removeAllViews();
        parentViewHolder.hsv_goods_list.addView(rootview);
    }
}
  • collocation_list_item_child.xml

套餐子布局

<com.zhy.autolayout.AutoLinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:fresco="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ffffff"
    android:clickable="true"
    android:orientation="vertical">

    <com.zhy.autolayout.AutoLinearLayout
        android:id="@+id/ll_root_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/selector_me_bg_item"
        android:paddingBottom="28px"
        android:paddingLeft="24px"
        android:paddingRight="24px"
        android:paddingTop="30px">

        <com.facebook.drawee.view.SimpleDraweeView
            android:id="@+id/sdv_goods_img"
            android:layout_width="120px"
            android:layout_height="120px"
            android:background="@drawable/shape_cart_goods_border"
            android:padding="1dp"
            fresco:placeholderImage="@mipmap/icon_loading_bg" />

        <TextView
            android:id="@+id/tv_goods_title"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_marginLeft="20px"
            android:layout_weight="1"
            android:ellipsize="end"
            android:maxLines="2"
            android:textColor="#222222"
            android:textSize="30px" />

        <View
            android:layout_width="118px"
            android:layout_height="1px" />

        <ImageView
            android:layout_width="18px"
            android:layout_height="28px"
            android:src="@mipmap/icon_right" />
    </com.zhy.autolayout.AutoLinearLayout>

    <View
        android:layout_width="match_parent"
        android:layout_height="1px"
        android:layout_marginLeft="24px"
        android:background="#dddddd" />

    <com.zhy.autolayout.AutoLinearLayout
        android:id="@+id/ll_bottom"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <com.zhy.autolayout.AutoLinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center_vertical"
            android:paddingLeft="24px"
            android:paddingRight="24px"
            android:paddingTop="20px">

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="套餐價(jià)格:"
                android:textColor="#888888"
                android:textSize="30px" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="20px"
                android:text="¥"
                android:textColor="#ec0f38"
                android:textSize="22px" />

            <TextView
                android:id="@+id/tv_collocation_price"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textColor="#ec0f38"
                android:textSize="30px" />

            <View
                android:layout_width="0dp"
                android:layout_height="0dp"
                android:layout_weight="1" />

            <TextView
                android:id="@+id/tv_add_cart"
                android:layout_width="180px"
                android:layout_height="50px"
                android:background="@drawable/selector_add_cart_red_btn"
                android:gravity="center"
                android:text="加入購(gòu)物車"
                android:textColor="@drawable/selector_add_cart_red_tv"
                android:textSize="28px" />
        </com.zhy.autolayout.AutoLinearLayout>

        <View
            android:layout_width="match_parent"
            android:layout_height="20px"
            android:layout_marginTop="20px"
            android:background="#eeeff3" />
    </com.zhy.autolayout.AutoLinearLayout>
</com.zhy.autolayout.AutoLinearLayout>
  • collocation_list_item_parent.xml

套餐父布局

<com.zhy.autolayout.AutoLinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ffffff"
    android:orientation="vertical"
    android:paddingTop="20px">

    <com.zhy.autolayout.AutoLinearLayout
        android:layout_width="match_parent"
        android:layout_height="50px"
        android:layout_marginBottom="30px"
        android:gravity="center_vertical"
        android:paddingLeft="24px"
        android:paddingRight="24px">

        <TextView
            android:id="@+id/tv_collocation_name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textColor="#222222"
            android:textSize="30px" />

        <TextView
            android:id="@+id/tv_save_text"
            android:layout_width="wrap_content"
            android:layout_height="40px"
            android:layout_marginLeft="20px"
            android:background="@drawable/shape_save_money"
            android:gravity="center"
            android:paddingLeft="18px"
            android:paddingRight="18px"
            android:textColor="#ffffff"
            android:textSize="24px" />

        <View
            android:layout_width="0dp"
            android:layout_height="1px"
            android:layout_weight="1" />

        <ImageView
            android:id="@+id/iv_status"
            android:layout_width="28px"
            android:layout_height="18px"
            android:layout_gravity="right|center_vertical"
            android:src="@mipmap/icon_top" />
    </com.zhy.autolayout.AutoLinearLayout>

    <HorizontalScrollView
        android:id="@+id/hsv_goods_list"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingLeft="24px"
        android:scrollbars="none" />

    <View
        android:id="@+id/v_space"
        android:layout_width="match_parent"
        android:layout_height="20px"
        android:layout_marginTop="20px"
        android:background="#eeeff3"
        android:visibility="gone" />
</com.zhy.autolayout.AutoLinearLayout>
  • item_gift_img.xml

圖片item布局
SimpleDraweeViewFresco里的控件, 顯示網(wǎng)絡(luò)圖片

<com.zhy.autolayout.AutoLinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:fresco="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="bottom"
    android:orientation="horizontal">

    <com.facebook.drawee.view.SimpleDraweeView
        android:id="@+id/sdv_cart_image"
        android:layout_width="126px"
        android:layout_height="126px"
        android:background="@drawable/shape_cart_goods_border"
        android:padding="1px"
        android:scaleType="fitXY"
        fresco:placeholderImage="@mipmap/icon_loading_bg"
        fresco:progressBarImage="@mipmap/icon_loading_bg" />

    <com.zhy.autolayout.AutoRelativeLayout
        android:id="@+id/rl_middle"
        android:layout_width="wrap_content"
        android:layout_height="126px"
        android:layout_marginLeft="13px"
        android:layout_marginRight="13px"
        android:orientation="vertical">

        <TextView
            android:id="@+id/tv_gift_goods_num"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_gravity="bottom"
            android:text="x1"
            android:textColor="#ec0f38"
            android:textSize="26px" />
    </com.zhy.autolayout.AutoRelativeLayout>
</com.zhy.autolayout.AutoLinearLayout>
  • CollocationPackageBean.java

存放數(shù)據(jù)的bean

public class CollocationPackageBean {
    private BigDecimal totalPrice;
    private String name;
    private List<CollocationSkuBean> collocationSkuDoList;
    private BigDecimal discountFee;

    public static class CollocationSkuBean {
        private String skuTitle;
        private String imageMd5;

        public CollocationSkuBean(String skuTitle, String imageMd5) {
            this.skuTitle = skuTitle;
            this.imageMd5 = imageMd5;
        }
        
        set...
        get..
    }
        set...
        get...
}

幾個(gè)主要的文件就這幾個(gè)
其他哪些shape, selector文件之類的就沒(méi)有必要貼上來(lái)了


需要要看詳細(xì)的代碼看這里
github源碼地址 歡迎star、fork

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖,帶你破解...
    沈念sama閱讀 228,786評(píng)論 6 534
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 98,656評(píng)論 3 419
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人,你說(shuō)我怎么就攤上這事。” “怎么了?”我有些...
    開(kāi)封第一講書人閱讀 176,697評(píng)論 0 379
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我,道長(zhǎng),這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書人閱讀 63,098評(píng)論 1 314
  • 正文 為了忘掉前任,我火速辦了婚禮,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘。我一直安慰自己,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 71,855評(píng)論 6 410
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書人閱讀 55,254評(píng)論 1 324
  • 那天,我揣著相機(jī)與錄音,去河邊找鬼。 笑死,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播,決...
    沈念sama閱讀 43,322評(píng)論 3 442
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書人閱讀 42,473評(píng)論 0 289
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 49,014評(píng)論 1 335
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 40,833評(píng)論 3 355
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 43,016評(píng)論 1 371
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情,我是刑警寧澤,帶...
    沈念sama閱讀 38,568評(píng)論 5 362
  • 正文 年R本政府宣布,位于F島的核電站,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 44,273評(píng)論 3 347
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧,春花似錦、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書人閱讀 34,680評(píng)論 0 26
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書人閱讀 35,946評(píng)論 1 288
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 51,730評(píng)論 3 393
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 48,006評(píng)論 2 374

推薦閱讀更多精彩內(nèi)容