自定义控件:旋转菜单

效果图

自定义控件

项目概述

首先,我们学习如何自定义一个组合控件,其中,优酷菜单是一个典型的自定义组合控件,它的效果图如图1-1 所示:

图中由中间往外,分别是一级菜单、二级菜单、三级菜单。其基本用法是:点击一级菜单后加载二级菜单,再点击二级菜单加载三级菜单,如图1-2(c)—(d)—(e)—(f),再点击一级菜单分别隐藏三级、二级菜单
1-2(a)—(b)。并且点击手机菜单键,让菜单根据状态来显示和隐藏,演示效果图如图1-2 所示。

优酷菜单UI

优酷菜单的整体布局采用RelativeLayout,每一级菜单都是一个RelativeLayout。优酷菜单的布局文件activity_main.xml,具体的代码如文件【1-1】所示:
【文件1-1】activity_main.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"
                android:layout_width="match_parent"
                android:layout_height="match_parent">
    <!--三级菜单-->
    <RelativeLayout
        android:id="@+id/rl_level3"
        android:layout_width="280dp"
        android:layout_height="140dp"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:background="@drawable/level3">

        <ImageView
            android:id="@+id/iv_channel1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_margin="10dp"
            android:src="@drawable/channel1"/>

        <ImageView
            android:id="@+id/iv_channel2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_above="@id/iv_channel1"
            android:layout_alignLeft="@id/iv_channel1"
            android:layout_marginBottom="5dp"
            android:layout_marginLeft="25dp"
            android:src="@drawable/channel2"/>

        <ImageView
            android:id="@+id/iv_channel3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_above="@id/iv_channel2"
            android:layout_alignLeft="@id/iv_channel2"
            android:layout_marginBottom="5dp"
            android:layout_marginLeft="35dp"
            android:src="@drawable/channel3"/>

        <ImageView
            android:id="@+id/iv_channel4"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="5dp"
            android:src="@drawable/channel4"/>

        <ImageView
            android:id="@+id/iv_channel7"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_alignParentRight="true"
            android:layout_margin="10dp"
            android:src="@drawable/channel7"/>

        <ImageView
            android:id="@+id/iv_channel6"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_above="@id/iv_channel7"
            android:layout_alignRight="@id/iv_channel7"
            android:layout_marginBottom="5dp"
            android:layout_marginRight="25dp"
            android:src="@drawable/channel6"/>

        <ImageView
            android:id="@+id/iv_channel5"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_above="@id/iv_channel6"
            android:layout_alignRight="@id/iv_channel6"
            android:layout_marginBottom="5dp"
            android:layout_marginRight="35dp"
            android:src="@drawable/channel5"/>
    </RelativeLayout>

    <!--二级菜单-->
    <RelativeLayout
        android:id="@+id/rl_level2"
        android:layout_width="180dp"
        android:layout_height="90dp"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:background="@drawable/level2">

        <ImageView
            android:id="@+id/imageView2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_margin="10dp"
            android:src="@drawable/icon_search"/>

        <ImageView
            android:id="@+id/iv_menu"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="5dp"
            android:src="@drawable/icon_menu"/>

        <ImageView
            android:id="@+id/imageView2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_alignParentRight="true"
            android:layout_margin="10dp"
            android:src="@drawable/icon_myyouku"/>
    </RelativeLayout>

    <!--二级菜单-->
    <RelativeLayout
        android:id="@+id/rl_level1"
        android:layout_width="100dp"
        android:layout_height="50dp"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:background="@drawable/level1">

        <ImageView
            android:id="@+id/iv_home"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_centerVertical="true"
            android:src="@drawable/icon_home"/>
    </RelativeLayout>
</RelativeLayout>

运行程序,效果图如图1-3 所示

这里写图片描述

优酷菜单业务逻辑实现

布局UI 实现之后,我们需要实现优酷菜单的业务逻辑代码,具体代码如文件【1-2】所示:【文件1-2】com.itheima.youku.MainActivity

package com.github.rotatemenu;

import android.app.Activity;
import android.os.Bundle;
import android.view.KeyEvent;
import android.view.View;
import android.widget.ImageView;
import android.widget.RelativeLayout;

/**
 * ============================================================
 * Copyright:${TODO}有限公司版权所有 (c) 2017
 * Author:   AllenIverson
 * Email:    815712739@qq.com
 * GitHub:   https://github.com/JackChen1999
 * 博客:     http://blog.csdn.net/axi295309066
 * 微博:     AndroidDeveloper
 * <p>
 * Project_Name:RotateMenu
 * Package_Name:com.github.rotatemenu
 * Version:1.0
 * time:2016/2/28 21:47
 * des :三级旋转菜单
 * gitVersion:$Rev$
 * updateAuthor:$Author$
 * updateDate:$Date$
 * updateDes:${TODO}
 * ============================================================
 */
public class MainActivity extends Activity implements View.OnClickListener {
    private RelativeLayout rlLevel1, rlLevel2, rlLevel3;
    private boolean isLevel1Show = true;
    private boolean isLevel2Show = true;
    private boolean isLevel3Show = true;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        ImageView ivHome = (ImageView) findViewById(R.id.iv_home);
        ImageView ivMenu = (ImageView) findViewById(R.id.iv_menu);
        rlLevel1 = (RelativeLayout) findViewById(R.id.rl_level1);
        rlLevel2 = (RelativeLayout) findViewById(R.id.rl_level2);
        rlLevel3 = (RelativeLayout) findViewById(R.id.rl_level3);
        ivHome.setOnClickListener(this);
        ivMenu.setOnClickListener(this);
        // 为了避免第三层布局将一二层事件拦截掉, 需要在布局文件中最先注册第三层, 最后注册第一层
        rlLevel3.setOnClickListener(this);
    }
    @Override
    public void onClick(View v) {
        switch (v.getId()) {
            case R.id.iv_home:
                System.out.println("home clicked!");
                if (Tools.mAnimtionNum != 0) {
                    break;
                }

                if (isLevel2Show) {
                    Tools.hideView(rlLevel2);// 隐藏第二层布局
                    isLevel2Show = false;
                    if (isLevel3Show) {// 如果发现第三次也展现, 也需要隐藏
                        Tools.hideView(rlLevel3, 200);// 动画延时200 毫秒再运行
                        isLevel3Show = false;
                    }
                } else {
                    Tools.showView(rlLevel2);
                    isLevel2Show = true;
                }
                break;
            case R.id.iv_menu:
                if (Tools.mAnimtionNum != 0) {
                    break;
                }
                System.out.println("menu clicked!");
                if (isLevel3Show) {
                    Tools.hideView(rlLevel3);
                    isLevel3Show = false;
                } else {
                    Tools.showView(rlLevel3);
                    isLevel3Show = true;
                }
                break;
            default:
                break;
        }
    }
    //监听用户的物理按键
    @Override
    public boolean onKeyDown(int keyCode, KeyEvent event) {
        if (keyCode == KeyEvent.KEYCODE_MENU) {
            if (Tools.mAnimtionNum != 0) {
                return true;
            }
            if (isLevel1Show) {
                Tools.hideView(rlLevel1);
                isLevel1Show = false;
                if (isLevel2Show) {
                    Tools.hideView(rlLevel2, 200);
                    isLevel2Show = false;
                }
                if (isLevel3Show) {
                    Tools.hideView(rlLevel3, 300);

                    isLevel3Show = false;
                }
            } else {
                Tools.showView(rlLevel1);
                isLevel1Show = true;
                Tools.showView(rlLevel2, 200);
                isLevel2Show = true;
            }
            return true;
        }
        return super.onKeyDown(keyCode, event);
    }
}

Tools 工具类的逻辑实现

为了隐藏View 和显示View,在工具类Tools.java 中定义了两个方法,具体代码如文件【】所示:【文件1-3】com.itheima.youku.Tools

package com.github.rotatemenu;

import android.view.ViewGroup;
import android.view.animation.Animation;
import android.view.animation.RotateAnimation;

/**
 * ============================================================
 * Copyright:${TODO}有限公司版权所有 (c) 2017
 * Author:   AllenIverson
 * Email:    815712739@qq.com
 * GitHub:   https://github.com/JackChen1999
 * 博客:     http://blog.csdn.net/axi295309066
 * 微博:     AndroidDeveloper
 * <p>
 * Project_Name:RotateMenu
 * Package_Name:com.github.rotatemenu
 * Version:1.0
 * time:2016/2/28 21:47
 * des :三级旋转菜单
 * gitVersion:$Rev$
 * updateAuthor:$Author$
 * updateDate:$Date$
 * updateDes:${TODO}
 * ============================================================
 */

public class Tools {
    public static void hideView(ViewGroup view) {
        hideView(view, 0);
    }

    public static void showView(ViewGroup view) {
        showView(view, 0);
    }

    public static int mAnimtionNum = 0; //用于记录当前正在执行的动画个数

    /**
     * 隐藏动画
     *
     * @param view  将要执行动画的视图
     * @param delay 动画要延迟执行的时间
     */
    public static void hideView(ViewGroup view, long delay) {
        /**
         * 第一个参数: fromDegrees 起始角度,这里我们设置为0
         * 第二个参数: toDegrees 目标角度,这里设置为180 度
         * 第三个参数: pivotXType 相对于X 坐标类型,这里是相对于自己
         * 第四个参数: pivotXValue 相对于X 坐标类型的值,这里是0.5f,也就是X 轴的一半
         * 第五个参数: pivotYType 相对于Y 坐标类型,这里是相对于自己
         * 第六个参数: pivotYValue 相对于Y 坐标类型的值,这里是1.f,也就是Y 坐标最大处
         * RotateAnimation(fromDegrees, toDegrees, pivotXType, pivotXValue, pivotYType,
         pivotYValue)
         */
        RotateAnimation anim = new RotateAnimation(0, 180,
                Animation.RELATIVE_TO_SELF, 0.5f,
                Animation.RELATIVE_TO_SELF, 1f);
        anim.setDuration(500); //动画执行时间
        anim.setFillAfter(true); // 保持动画后的状态
        anim.setStartOffset(delay); // 延迟多长时间后才运行动画
        anim.setAnimationListener(new MyAnimationListener());
        view.startAnimation(anim);
        // 禁用所有孩子的点击事件
        int childCount = view.getChildCount();
        for (int i = 0; i < childCount; i++) {
            view.getChildAt(i).setEnabled(false); // 禁用点击事件
        }
    }

    /**
     * 显示动画
     *
     * @param view  将要执行动画的视图
     * @param delay 动画要延迟执行的时间
     */
    public static void showView(ViewGroup view, long delay) {
        RotateAnimation anim = new RotateAnimation(180, 360,
                Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 1f);
        anim.setDuration(500);
        anim.setFillAfter(true); // 保持动画后的状态
        anim.setStartOffset(delay); // 延迟多长时间后才运行动画
        anim.setAnimationListener(new MyAnimationListener());
        view.startAnimation(anim);
        // 开启所有孩子的点击事件
        int childCount = view.getChildCount();
        for (int i = 0; i < childCount; i++) {
            view.getChildAt(i).setEnabled(true);// 开启点击事件
        }
    }

    public static class MyAnimationListener implements Animation.AnimationListener {
        @Override
        public void onAnimationStart(Animation animation) {
            mAnimtionNum++;
        }

        @Override
        public void onAnimationEnd(Animation animation) {
            mAnimtionNum--;
        }

        @Override
        public void onAnimationRepeat(Animation animation) {
        }
    }
}

知识点总结

1.补间动画不能改变控件的实际位置,控件还是能够响应原先的事件。在菜单隐藏后还会响应点击事件,因此在Tools.java 的第32 到36 行在隐藏菜单时,通过遍历相对布局的子控件,设置其为不可用来解决此bug,
在显示菜单时,第51 到55 行通过遍历相对布局的子控件,设置为可用。

2.连续点击菜单时,优酷菜单动画会直接执行,产生一个隐藏动画还没执行完,就执行显示动画的bug,因此在Tools.java 的隐藏和显示动画中都设置了动画监听MyAnimationListener,在点击菜单时,先判断Tools
的动画数量mAnimtionNum(Tools.java 第8 行)是否为0,再执行下一个动画,来解决bug。

布局文件

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <Button
        android:id="@id/btn_menu"
        android:layout_width="280dp"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_centerHorizontal="true"
        android:layout_marginLeft="15dp"
        android:layout_marginRight="15dp"
        android:text="Menu键"
        android:textColor="#fff"
        android:background="@drawable/progress_normal"
        android:textAllCaps="false"/>

    <!--一级菜单-->
    <RelativeLayout
        android:id="@+id/rl_level1"
        android:layout_width="100dp"
        android:layout_height="50dp"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:background="@mipmap/level1">

        <ImageView
            android:id="@+id/iv_home"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_centerVertical="true"
            android:src="@mipmap/icon_home"/>
    </RelativeLayout>
    <!--二级菜单-->
    <RelativeLayout
        android:id="@+id/rl_level2"
        android:layout_width="180dp"
        android:layout_height="90dp"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:background="@mipmap/level2">

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_margin="10dp"
            android:src="@mipmap/icon_search"/>

        <ImageView
            android:id="@+id/iv_menu"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="5dp"
            android:src="@mipmap/icon_menu"/>

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_alignParentRight="true"
            android:layout_margin="10dp"
            android:src="@mipmap/icon_myyouku"/>

    </RelativeLayout>

    <!--三级菜单-->
    <include
        layout="@layout/menu_level3"
        />

</RelativeLayout>

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/rl_level3"
    android:layout_width="280dp"
    android:layout_height="140dp"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    android:background="@mipmap/level3">

    <ImageView
        android:id="@+id/channel1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_margin="10dp"
        android:src="@mipmap/channel1"/>
    <ImageView
        android:id="@+id/channel2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_above="@+id/channel1"
        android:layout_alignLeft="@+id/channel1"
        android:layout_marginLeft="25dp"
        android:layout_marginBottom="5dp"
        android:src="@mipmap/channel2"/>
    <ImageView
        android:id="@+id/channel3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_above="@+id/channel2"
        android:layout_alignLeft="@+id/channel2"
        android:layout_marginLeft="35dp"
        android:layout_marginBottom="5dp"
        android:src="@mipmap/channel3"/>
    <ImageView
        android:id="@+id/channel4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="5dp"
        android:src="@mipmap/channel4"/>
    <ImageView
        android:id="@+id/channel5"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_above="@+id/channel6"
        android:layout_alignRight="@+id/channel6"
        android:layout_marginBottom="5dp"
        android:layout_marginRight="35dp"
        android:src="@mipmap/channel5"/>
    <ImageView
        android:id="@+id/channel6"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_above="@+id/channel7"
        android:layout_alignRight="@+id/channel7"
        android:layout_marginBottom="5dp"
        android:layout_marginRight="25dp"
        android:src="@mipmap/channel6"/>
    <ImageView
        android:id="@+id/channel7"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignParentBottom="true"
        android:layout_margin="10dp"
        android:src="@mipmap/channel7"/>

</RelativeLayout>

实现代码

RotateMenuActivity.java

public class RotateMenuActivity extends AppCompatActivity implements View.OnClickListener{

    @Bind(R.id.iv_home)
    public ImageView mIv_home;
    @Bind(R.id.iv_menu)
    public ImageView mIv_menu;
    @Bind(R.id.rl_level1)
    public RelativeLayout mLevel1;
    @Bind(R.id.rl_level2)
    public RelativeLayout mLevel2;
    @Bind(R.id.rl_level3)
    public RelativeLayout mLevel3;
    @Bind(R.id.btn_menu)
    public Button btn_menu;

    private boolean isShowlevel2 = true;
    private boolean isShowlevel3 = true;
    private boolean isShowmenu = true;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        initView();
        initListener();
    }

    private void initView() {
        setContentView(R.layout.activity_rotate_menu);
        ButterKnife.bind(this);

        SpannableString title = new SpannableString("三级旋转菜单");
        title.setSpan(new ForegroundColorSpan(Color.WHITE),0,title.length(),
                Spannable.SPAN_INCLUSIVE_EXCLUSIVE);
        ActionBar actionBar = getSupportActionBar();
        actionBar.setTitle(title);
    }

    private void initListener() {
        mIv_home.setOnClickListener(this);
        mIv_menu.setOnClickListener(this);
        btn_menu.setOnClickListener(this);
    }

    @Override
    public void onClick(View v) {
        switch (v.getId()){
            case R.id.iv_home:
                if (AnimUtil.animCount != 0){
                    return;
                }
                if (isShowlevel2){
                    int startOffset = 0;
                    if (isShowlevel3){
                        AnimUtil.closeMenu(mLevel3,startOffset);
                        startOffset += 200;
                        isShowlevel3 = false;
                    }
                    AnimUtil.closeMenu(mLevel2,startOffset);
                }else {
                    AnimUtil.openMenu(mLevel2,0);
                }
                isShowlevel2 = !isShowlevel2;
                break;
            case R.id.iv_menu:
                if (AnimUtil.animCount != 0){
                    return;
                }
                if (isShowlevel3){
                    AnimUtil.closeMenu(mLevel3,0);
                }else {
                    AnimUtil.openMenu(mLevel3,0);
                }
                isShowlevel3 = !isShowlevel3;
                break;
            case R.id.btn_menu:
                showMenu();
                break;
        }
    }

    @Override
    public boolean onKeyDown(int keyCode, KeyEvent event) {
        if (keyCode == KeyEvent.KEYCODE_MENU){
            showMenu();
            return true;
        }
        return super.onKeyDown(keyCode, event);
    }

    private void showMenu(){
        if (isShowmenu){
            int startOffset = 0;
            if (isShowlevel3){
                AnimUtil.closeMenu(mLevel3,startOffset);
                isShowlevel3 = false;
                startOffset += 200;
            }
            if (isShowlevel2){
                AnimUtil.closeMenu(mLevel2,startOffset);
                isShowlevel2 = false;
                startOffset += 200;
            }
            AnimUtil.closeMenu(mLevel1,startOffset);
        }else {
            AnimUtil.openMenu(mLevel1,0);
            AnimUtil.openMenu(mLevel2,200);
            isShowlevel2 = true;
            AnimUtil.openMenu(mLevel3,400);
            isShowlevel3 = true;
        }
        isShowmenu = !isShowmenu;
    }
}

AnimUtil.java

public class AnimUtil {

    public static int animCount = 0;//记录当前执行的动画数量

    public static void closeMenu(View view, int startOffset) {
        view.setPivotX(view.getWidth()/2);
        view.setPivotY(view.getHeight());
        //view.invalidate();
        view.animate().rotation(-180).setDuration(500).setListener(mListener).setStartDelay
                (startOffset).start();
    }

    public static void openMenu(View view, int startOffset) {
        view.setPivotX(view.getWidth()/2);
        view.setPivotY(view.getHeight());
        //view.invalidate();
        view.animate().rotation(0).setDuration(500).setListener(mListener).setStartDelay
                (startOffset).start();
    }

    static AnimatorListener mListener = new AnimatorListenerAdapter() {

        @Override
        public void onAnimationStart(Animator animation) {
            animCount++;
        }

        @Override
        public void onAnimationEnd(Animator animation) {
            animCount--;
        }
    };
}

代码:https://github.com/JackChen1999/RotateMenu

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,417评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,921评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,850评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,945评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,069评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,188评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,239评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,994评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,409评论 1 304
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,735评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,898评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,578评论 4 336
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,205评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,916评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,156评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,722评论 2 363
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,781评论 2 351

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,904评论 25 707
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,068评论 4 62
  • (一) 中午时分,在朋友的小店闲坐,正喝着茶聊着天,从门口进来了一位中年男子。 只见他径直走进店内,朋友以为他是来...
    落雪非花阅读 394评论 6 11
  • ta是你生命中的过客 却是住在你心里的常客 客终究留不住 ta只会成为过往 苦了自己又哭了别人 握不住的沙 松开也...
    沫里阅读 243评论 0 1
  • 2017年11月9日,今天是星期四,早晨起床,杨峰瑞同学一系列的洗脸刷牙吃早饭,在上学的路上我问他考试怎么...
    航航2阅读 113评论 0 0