探究RemoteViews的作用和原理

image.png

什么是RemoteViews?

/**
 * A class that describes a view hierarchy that can be displayed in
 * another process. The hierarchy is inflated from a layout resource
 * file, and this class provides some basic operations for modifying
 * the content of the inflated hierarchy.
 */

翻译成自己的话就是:

RmoteViews是一个能显示在其他进程的视图。同样也提供了一些基本的操作方法来修改视图的内容。

从这段描述来看,我们感觉他和普通的View没有什么区别,只不过可以在远程进程中进行更新修改View。那么事实是不是这样呢?我们慢慢往下探究。

我们平时使用RemoteViews无非就两种:通知栏和桌面小部件。那我们就一个一个来探究一番。

通知栏:

我们先写一个系统默认的通知栏:

  void sendNotify() {

        manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
        Notification.Builder builder = new Notification.Builder(this);

        builder.setTicker("通知:您有30亿要继承")
                .setContentTitle("西红柿首富")
                .setSmallIcon(R.drawable.ic_launcher_foreground)
                .setContentText("只有在3天时间花完3亿,才可以继承30亿,加油吧骚年")
                .setAutoCancel(true)
                .setWhen(SystemClock.currentThreadTimeMillis());


        //设置点击通知后执行的动作
        Intent intent = new Intent(this, DetailActivity.class);
        intent.putExtra("message", "只有在3天时间花完3亿,才可以继承30亿,加油吧骚年\n西红柿首富剧组通知你带薪入组\n时间:" + sdf.format(new Date()));
        //用当前时间充当通知的id,这里是为了区分不同的通知,如果是同一个id,前者就会被后者覆盖
        int requestId = (int) new Date().getTime();
        //第一个参数连接上下文的context ¬
        // 第二个参数是对PendingIntent的描述,请求值不同Intent就不同
        // 第三个参数是一个Intent对象,包含跳转目标
        // 第四个参数有4种状态
        PendingIntent pendingIntent = PendingIntent.getActivity(this, requestId, intent, PendingIntent.FLAG_UPDATE_CURRENT);
        builder.setContentIntent(pendingIntent);

        //发出通知,参数是(通知栏的id,设置内容的对象)
        manager.notify(requestId, builder.build());


    }



image.png

image.png

下载进度条

  //模拟正在执行下载
        new Thread(new Runnable() {
            @Override
            public void run() {
                for (int i=1;i<=100;i++){
                    builder.setProgress(100, i, false);
                    if(i==100)
                        builder.setContentText("文件下载完毕!");
                    manager.notify(1, builder.build());
                    SystemClock.sleep(100);//模拟下载
                }
                manager.cancel(1);
            }
        }).start();
image.png

效果很直观,也很简单。

那我们需要自定义布局呢?默认的样式太丑,如何自定义布局呢?让我们的布局更丑的清新脱俗呢?


image.png
  RemoteViews views = new RemoteViews(getPackageName(),R.layout.notify_layout);
        views.setImageViewResource(R.id.img_1,R.drawable.rect_yellow);
        views.setImageViewResource(R.id.img_2,R.drawable.rect_white);
        views.setImageViewResource(R.id.img_3_1,R.drawable.rect_yellow);
        views.setImageViewResource(R.id.img_3_2,R.drawable.rect_white);
        views.setImageViewResource(R.id.img_3_3,R.drawable.rect_yellow);
        views.setTextViewText(R.id.text_context,"只有在3天时间花完3亿,才可以继承30亿,加油吧骚年");
        views.setTextColor(R.id.text_context,Color.YELLOW);
        views.setProgressBar(R.id.progerssbar,100,50,false);
        manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
        final Notification.Builder builder = new Notification.Builder(this);

        builder.setContent(views)
                .setTicker("通知:您有30亿要继承")
                .setContentTitle("西红柿首富")
                .setSmallIcon(R.drawable.ic_launcher_foreground)
             //   .setContentText("只有在3天时间花完3亿,才可以继承30亿,加油吧骚年")
                .setAutoCancel(true)
                .setWhen(System.currentTimeMillis());
 //设置点击通知后执行的动作
        Intent intent = new Intent(this, DetailActivity.class);
        intent.putExtra("message", "只有在3天时间花完3亿,才可以继承30亿,加油吧骚年\n西红柿首富剧组通知你带薪入组\n时间:" + sdf.format(new Date()));
        //用当前时间充当通知的id,这里是为了区分不同的通知,如果是同一个id,前者就会被后者覆盖
        int requestId = (int) new Date().getTime();
        //第一个参数连接上下文的context ¬
        // 第二个参数是对PendingIntent的描述,请求值不同Intent就不同
        // 第三个参数是一个Intent对象,包含跳转目标
        // 第四个参数有4种状态
        PendingIntent pendingIntent = PendingIntent.getActivity(this, requestId, intent, PendingIntent.FLAG_UPDATE_CURRENT);
        builder.setContentIntent(pendingIntent);

        //发出通知,参数是(通知栏的id,设置内容的对象)
        manager.notify(requestId, builder.build());
<?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"
    android:layout_gravity="center_vertical">

    <ImageView
        android:id="@+id/img_1"
        android:layout_width="40dp"
        android:layout_height="40dp" />

    <ImageView
        android:id="@+id/img_2"
        android:layout_width="40dp"
        android:layout_height="40dp"
        android:layout_toRightOf="@id/img_1" />

    <LinearLayout
        android:id="@+id/li_1"
        android:layout_width="match_parent"
        android:layout_height="10dp"
        android:layout_toRightOf="@id/img_2"
        android:orientation="horizontal">

        <ImageView
            android:id="@+id/img_3_1"
            android:layout_width="10dp"
            android:layout_height="10dp"
            android:layout_toRightOf="@id/img_1" />

        <ImageView
            android:id="@+id/img_3_2"
            android:layout_width="10dp"
            android:layout_height="10dp"
            android:layout_toRightOf="@id/img_1" />

        <ImageView
            android:id="@+id/img_3_3"
            android:layout_width="10dp"
            android:layout_height="10dp"
            android:layout_toRightOf="@id/img_1" />
    </LinearLayout>

    <TextView
        android:layout_below="@+id/progerssbar"
        android:layout_toRightOf="@id/img_2"
        android:id="@+id/text_context"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
    <ProgressBar
        android:layout_below="@+id/li_1"
        android:layout_toRightOf="@+id/img_2"
        android:id="@+id/progerssbar"
        style="?android:progressBarStyleHorizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
</RelativeLayout>

我们可以布局文件里设置TextView,ImageView,ProgressBar等等
一下是支持的view和layout ,其他的都不支持(自定义布局就不要想了)。至于原因和原理我们下面会探究。


image.png

桌面小部件:

AppWidgetProvider 继承自 BroadcastReceiver,它能接收 widget 相关的广播,例如 widget 的更新、删除、开启和禁用等。

第一步:创建一个AppWidgetProvider

public class MyWidgetProvider extends AppWidgetProvider {
    // 点击事件的广播ACTION
    public static final String CLICK_ACTION = "com.ssy.mywidgettest.action.CLICK";

    public MyWidgetProvider() {
        super();
    }
    /**
     * 接收窗口小部件点击时发送的广播
     */
    @Override
    public void onReceive(Context context, Intent intent) {
        super.onReceive(context, intent);

        if (CLICK_ACTION.equals(intent.getAction())) {
            Toast.makeText(context, "点击了天气", Toast.LENGTH_SHORT).show();
        }
    }

    @Override
    public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
        super.onUpdate(context, appWidgetManager, appWidgetIds);


        RemoteViews remoteViews = new RemoteViews(context.getPackageName(),R.layout.widget_layout);
        Date day=new Date();

        SimpleDateFormat df = new SimpleDateFormat("HH:mm:ss");

        remoteViews.setTextViewText(R.id.text_time, df.format(day));
        Intent intent = new Intent(CLICK_ACTION);
        PendingIntent pendingIntent = PendingIntent.getBroadcast(context, R.id.rel_all, intent, PendingIntent.FLAG_UPDATE_CURRENT);
        remoteViews.setOnClickPendingIntent(R.id.rel_all, pendingIntent);

        for (int appWidgetId : appWidgetIds) {
            appWidgetManager.updateAppWidget(appWidgetId, remoteViews);
        }
    }
    /**
     * 当小部件大小改变时
     */
    @Override
    public void onAppWidgetOptionsChanged(Context context, AppWidgetManager appWidgetManager, int appWidgetId, Bundle newOptions) {
        super.onAppWidgetOptionsChanged(context, appWidgetManager, appWidgetId, newOptions);
    }
    /**
     * 每删除一次窗口小部件就调用一次
     */
    @Override
    public void onDeleted(Context context, int[] appWidgetIds) {
        super.onDeleted(context, appWidgetIds);
    }
    /**
     * 当该窗口小部件第一次添加到桌面时调用该方法
     */
    @Override
    public void onEnabled(Context context) {
        super.onEnabled(context);
    }
    /**
     * 当最后一个该窗口小部件删除时调用该方法
     */
    @Override
    public void onDisabled(Context context) {
        super.onDisabled(context);
    }
    /**
     * 当小部件从备份恢复时调用该方法
     */
    @Override
    public void onRestored(Context context, int[] oldWidgetIds, int[] newWidgetIds) {
        super.onRestored(context, oldWidgetIds, newWidgetIds);
    }
}

第二步:创建布局文件

<?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="wrap_content"
    android:id="@+id/rel_all"
    android:background="@color/colorWhite">

    <TextView
        android:id="@+id/text_temperature"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="37度"
        android:textSize="30dp" />

    <TextView
        android:id="@+id/text_addr"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_marginTop="10dp"
        android:layout_toRightOf="@+id/text_temperature"
        android:text="海淀区" />

    <TextView
        android:id="@+id/text_time"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/text_addr"
        android:layout_marginLeft="10dp"
        android:layout_marginTop="10dp"
        android:layout_toRightOf="@+id/text_temperature" />


</RelativeLayout>

第三步:添加AppWidgetProviderInfo元数据

在res文件夹下新建xml文件夹创建一个xml文件(我的是my_widget_provider_info.xml 大家可以根据实际需求取名字)

<?xml version="1.0" encoding="utf-8"?>
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
    android:initialLayout="@layout/widget_layout"
    android:minHeight="110dp"
    android:minWidth="100dp"
    android:widgetCategory="home_screen"
    android:previewImage="@drawable/rect_yellow"
    android:updatePeriodMillis="86400000"

    >

</appwidget-provider>

第四步:声明AppWidgetProvider

  <receiver android:name=".MyWidgetProvider">
            <meta-data
                android:name="android.appwidget.provider"
                android:resource="@xml/my_widget_provider_info">
            </meta-data>
            <intent-filter>
                <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
                <action android:name="com.ssy.mywidgettest.action.CLICK" />
            </intent-filter>

        </receiver>

第五步:运行并添加到屏幕上
长摁主屏幕,会出现添加工具,点击进去 添加我们自己的小部件到屏幕上。


image.png

小部件的制作还有很多细节需要处理大家可以看这个文档。https://developer.android.com/guide/topics/appwidgets/?hl=zh-cn

分析阶段:

我们自己动手创建了通知和小部件。我们会发现RemoteView因为运行在远程进程中,无法通过设置监听去处理事件,而是依赖PendingIntent添加点击事件。

我们可以看到RemoteView会用PendingIntent进行传输信息。pendingIntent是一种特殊的Intent。
主要的区别在于:
Intent的执行立刻的,而pendingIntent的执行不是立刻的。
Intent 是及时启动,intent 随所在的activity 消失而消失。

PendingIntent 可以看作是对intent的包装,通常通过getActivity,getBroadcast ,getService来得到pendingintent的实例,当前activity并不能马上启动它所包含的intent,而是在外部执行 pendingintent时,调用intent的。正由于pendingintent中 保存有当前App的Context,使它赋予外部App一种能力,使得外部App可以如同当前App一样的执行pendingintent里的 Intent, 就算在执行时当前App已经不存在了,也能通过存在pendingintent里的Context照样执行Intent。另外还可以处理intent执行后的操作。常和alermanger 和notificationmanager一起使用。
Intent一般是用作Activity、Sercvice、BroadcastReceiver之间传递数据,而Pendingintent,一般用在 Notification上,可以理解为延迟执行的intent,PendingIntent是对Intent一个包装。

探究RemoteView内部机制

image.png

RemoteView主要用于通知栏和桌面小部件中,而他们分别由NotificationManager和AppWidgetManager所管理,NotificationManager和AppWidgetManager通过Binder分别和SystemServer中的NotificationManagerService和AppWidgetService进行通信。所以通知栏和小部件的布局文件都是在NotificationManagerService和AppWidgetService中加载的,运行在SystemService中,所以这就造成了跨进程通信。

RemoteView通过Binder传递到SystemService进程中,因为RemoteView实现了Parcelable接口所以是可以跨进程传输的。系统会根据RemoteView中的包名和布局文件id得到应用程序的资源。然后通过LayoutInflater去加载RemoteView的布局,然后这个View会调用我们设置的各种set方法。注意这些set方法不是马上生效的而是记录在RemoteView中,具体实行实现需要等到RemoteView加载后下可以执行。当部件需要更新的时候我们也会调用各种set方法并通过NotificationManager和AppWidgetManager来提交更新任务。具体的更新操作发生在SystemService进程之中的。

那么RemoteView的这些set方法究竟是怎么实现的呢?我们通过源码来探究一番。


image.png

我们以setTextViewText()方法为例。

//我们传入viewId和text  
 public void setTextViewText(int viewId, CharSequence text) {
        setCharSequence(viewId, "setText", text);
    }
------------>>
//我们发现addAction方法,有点意思 ,接着往下看
 public void setCharSequence(int viewId, String methodName, CharSequence value) {
//把一个反射 Action添加到·· (暂时不知道添加到哪里)
//这个反射
        addAction(new ReflectionAction(viewId, methodName, ReflectionAction.CHAR_SEQUENCE, value));
    }
---------->>
//原来mActions是个ArrayList
private ArrayList<Action> mActions;

    /**
     * Add an action to be executed on the remote side when apply is called.
     *当远程apply被调用,那么添加的这个Action会被执行
     * @param a The action to add
     */
    private void addAction(Action a) {
        if (hasLandscapeAndPortraitLayouts()) {
            throw new RuntimeException("RemoteViews specifying separate landscape and portrait" +
                    " layouts cannot be modified. Instead, fully configure the landscape and" +
                    " portrait layouts individually before constructing the combined layout.");
        }
        if (mActions == null) {
            mActions = new ArrayList<Action>();
        }
        mActions.add(a);

        // update the memory usage stats
        a.updateMemoryUsageEstimate(mMemoryUsageCounter);
    }

从这里大概可以猜出来,把这些反射Action添加到ArrayList中只是保存作用,等待着apply的调用。那我们就看一下RemoteView的apply方法。

public View apply(Context context, ViewGroup parent) {
        return apply(context, parent, null);
    }
--------->
   /** @hide */
    public View apply(Context context, ViewGroup parent, OnClickHandler handler) {
        RemoteViews rvToApply = getRemoteViewsToApply(context);

        View result = inflateView(context, rvToApply, parent);
        loadTransitionOverride(context, handler);

        rvToApply.performApply(result, parent, handler);

        return result;
    }
--------->
 private View inflateView(Context context, RemoteViews rv, ViewGroup parent) {
        // RemoteViews may be built by an application installed in another
        // user. So build a context that loads resources from that user but
        // still returns the current users userId so settings like data / time formats
        // are loaded without requiring cross user persmissions.
        final Context contextForResources = getContextForResources(context);
        Context inflationContext = new RemoteViewsContextWrapper(context, contextForResources);

        LayoutInflater inflater = (LayoutInflater)
                context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

        // Clone inflater so we load resources from correct context and
        // we don't add a filter to the static version returned by getSystemService.
        inflater = inflater.cloneInContext(inflationContext);
        inflater.setFilter(this);
        View v = inflater.inflate(rv.getLayoutId(), parent, false);
        v.setTagInternal(R.id.widget_frame, rv.getLayoutId());
        return v;
    }
------->
  private void performApply(View v, ViewGroup parent, OnClickHandler handler) {
        if (mActions != null) {
            handler = handler == null ? DEFAULT_ON_CLICK_HANDLER : handler;
            final int count = mActions.size();
            for (int i = 0; i < count; i++) {
                Action a = mActions.get(i);
                a.apply(v, parent, handler);
            }
        }
    }

我们再回头看一下ReflectionAction里的apply方法。其实就是反射调用。

    @Override
        public void apply(View root, ViewGroup rootParent, OnClickHandler handler) {
            final View view = root.findViewById(viewId);
            if (view == null) return;

            Class<?> param = getParameterType();
            if (param == null) {
                throw new ActionException("bad type: " + this.type);
            }

            try {
                getMethod(view, this.methodName, param).invoke(view, wrapArg(this.value));
            } catch (ActionException e) {
                throw e;
            } catch (Exception ex) {
                throw new ActionException(ex);
            }
        }

我们可以看到inflateView方法去加载RemoteViews布局,这个方法的原理相信大家应该都很熟悉了,平时也经常用到。
performApply方法会遍历mActions列表并执行里面的apply方法(注意两个apply是不同的),我们的各种set方法只是添加进mActions列表,真正操作View的是apply()方法。
所以我们捋一下这个逻辑。
1、调用RemoteViews的各种set方法的时候,并不会立马更新他们的界面。
2、必须通过NotificationManager的notify方法或者AppWidgetManager的updateAppWidget方法才能更新他们的界面。
3、内部实现上是RemoteView的apply或者reapply方法更新界面。
apply和reapply的区别在于apply加载并更新。reapply只是更新。
4、RemoteView的apply方法通过inflateView方法加载RemoteViews布局。
5、接着RemoteViews调用performApply方法,遍历mActions,调用ReflectionAction里的apply方法,通过反射达到我们想要的操作。

最后我们实现我们自己的Notification。

第一步:先建一个NotificationActivity充当通知栏

public class NotificationActivity extends Activity {
    LinearLayout li_1;
    Button btn;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_notification);
        li_1 = findViewById(R.id.li_1);
        btn = findViewById(R.id.btn);
        IntentFilter intentFilter = new IntentFilter("com.ssy.myintnent.action");
        registerReceiver(mRemoteViewReceiver,intentFilter);
        btn.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent intent = new Intent(NotificationActivity.this,MainActivity.class);
                startActivity(intent);
            }
        });
    }

    private BroadcastReceiver mRemoteViewReceiver = new BroadcastReceiver() {
        @Override
        public void onReceive(Context context, Intent intent) {
          //  Toast.makeText(context, "+++++++", Toast.LENGTH_SHORT).show();
            Log.e("mytag","--");
            RemoteViews remoteViews = intent.getParcelableExtra("com.ssy.myintnent.remoteview");

            if(remoteViews!=null){

                int layout_id = getResources().getIdentifier("notify_layout","layout",getPackageName());
                View view = getLayoutInflater().inflate(layout_id,li_1,false);
                remoteViews.reapply(context,view);
              //  View view = remoteViews.apply(NotificationActivity.this,li_1);
                li_1.addView(view);
            }
        }
    };

    @Override
    protected void onDestroy() {
        super.onDestroy();
        unregisterReceiver(mRemoteViewReceiver);
    }
}

第二步:设置成其他进程

   <activity android:name=".NotificationActivity"
            android:process=":other"></activity>

第三步:在MainActivity发送信息

 void sendMyNotify() {

        RemoteViews views = new RemoteViews(getPackageName(), R.layout.notify_layout);
        views.setImageViewResource(R.id.img_1, R.drawable.rect_yellow);
        views.setImageViewResource(R.id.img_2, R.drawable.rect_white);
        views.setImageViewResource(R.id.img_3_1, R.drawable.rect_yellow);
        views.setImageViewResource(R.id.img_3_2, R.drawable.rect_white);
        views.setImageViewResource(R.id.img_3_3, R.drawable.rect_yellow);
        views.setTextViewText(R.id.text_context, "my progress:" + Process.myPid());
        views.setTextColor(R.id.text_context, Color.RED);
        views.setProgressBar(R.id.progerssbar, 100, 50, false);

        int requestId = (int) new Date().getTime();
        PendingIntent pendingIntent = PendingIntent.getActivity(MainActivity.this, requestId,
                new Intent(MainActivity.this, NotificationActivity.class), PendingIntent.FLAG_UPDATE_CURRENT);

        views.setOnClickPendingIntent(R.id.text_context, pendingIntent);
        Intent intent = new Intent("com.ssy.myintnent.action");
        intent.putExtra("com.ssy.myintnent.remoteview", views);
        sendBroadcast(intent);
        Toast.makeText(this, "--", Toast.LENGTH_SHORT).show();

    }

第四步:运行


image.png

大家如果觉得有帮助的话,可以点个关注,告诉我大家想要深入探究哪些问题,希望看到哪方面的文章,我可以免费给你写专题文章。。或者私信沟通都可以。。。
希望大家多多支持。。你的一个关注,是我坚持的最大动力。。

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

推荐阅读更多精彩内容

  • 1、通过CocoaPods安装项目名称项目信息 AFNetworking网络请求组件 FMDB本地数据库组件 SD...
    阳明先生_X自主阅读 15,979评论 3 119
  • 光圈对戒 我猜你会喜欢
    世家珠宝小客服阅读 184评论 0 0
  • 【1/100 草儿每日三件事】 2017年7月1日每日必做:5:45 起床运动(108拜)、 做笔记、 有书共读、...
    夏都草儿阅读 460评论 0 0
  • 一.耳语 你用气息梳理我的鬓发,并让丝丝缕缕的温柔,顺着耳朵一点点的涌进我的脑海,溜到我身体的各个角落,就好像……...
    季眉阅读 318评论 2 6