PopuWindow實現(xiàn)下拉列表

前言

之前講過一篇關(guān)于PopuWindow的基本使用的文章绿语,想了解的同學可以參考
PopupWindow的基本使用
其實钮孵,下拉列表Spanner(不知道控件拼寫是否正確)就能實現(xiàn)秩霍,但是基于ui美化方面的考慮,用popuwindow實現(xiàn)是一個不錯的選擇单匣,今天就來講講PopuWindow實現(xiàn)下拉列表的具體實現(xiàn)吧夕凝。

正文

文章可能會有點長,大家將就著看吧户秤。先上波效果圖才是厚道的:

1.gif

下面開始正式講解码秉。
基礎(chǔ)依賴,由于下拉列表是用RecycleView實現(xiàn)鸡号,然后控件初始化用到ButterKnife转砖,所以要在app的gradle中添加相關(guān)依賴:

 //RecycleView
    compile 'com.android.support:recyclerview-v7:25.2.0'
    //butterKnife
    compile 'com.jakewharton:butterknife:8.5.1'
    //這條千萬不能忘記!!
    annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1'

第一步,不言而喻鲸伴,肯定是上BasePopupWindow代碼:

/***
 * PopupWindow基類
 * 
 * @author pei
 * @version 1.0
 * @cretae 2016-7-21
 * @注:若要popwindow點擊外部消失府蔗,則設置 this.setFocusable(true)
 *     若要popwindow點擊外部不消失,不做setFocusable設置汞窗,也不要設置成this.setFocusable(false)
 * 
 */
public abstract class BasePopupWindow extends PopupWindow {

    protected View mLayoutView;
    protected int mLayoutId;
    protected Context mContext;
    protected int mWidth;
    protected int mHeight;

    public BasePopupWindow(int width, int height, int layoutId, Context context) {
        this.mWidth = width;
        this.mHeight = height;
        this.mLayoutId = layoutId;
        this.mContext = context;
        mLayoutView = LayoutInflater.from(context).inflate(mLayoutId, null);
        setWindow();
    }

    /** PopupWindow基本設置 **/
    protected void setWindow() {
        this.setContentView(mLayoutView);
        this.setWidth(mWidth);
        this.setHeight(mHeight);
        // this.setFocusable(true);// 可點擊
        // 實例化一個ColorDrawable顏色為半透明(半透明遮罩顏色代碼#66000000)
        ColorDrawable dw = new ColorDrawable(Color.TRANSPARENT);
        this.setBackgroundDrawable(dw);
    }

    /** PopupWindow背景設置 **/
    protected void setBackground(int color) {
        // 實例化一個ColorDrawable顏色為半透明
        ColorDrawable dw = new ColorDrawable(color);
        this.setBackgroundDrawable(dw);
    }

    protected abstract void initView();
    protected abstract void initData();
    protected abstract void setListener();

    /** PopupWindow點擊間隙處理姓赤,根據(jù)實際情況重寫 **/
    protected void onTouchdimiss() {
        // mMenuView添加OnTouchListener監(jiān)聽判斷獲取觸屏位置如果在選擇框外面則銷毀彈出框
        mLayoutView.setOnTouchListener(new OnTouchListener() {
            @Override
            public boolean onTouch(View view, MotionEvent event) {
//              int height = mLayoutView.getTop();
//              int y = (int) event.getY();
//              if (event.getAction() == MotionEvent.ACTION_UP) {
//                  if (y < height) {
//                      dismiss();
//                  }
//              }
                return false;
            }
        });
    }

    /**
     * 顯示在控件正上方
     * 
     * @param view
     *            依賴的控件
     * @param marginDp
     *            設置的間距(直接寫數(shù)字即可,已經(jīng)做過dp2px轉(zhuǎn)換)
     */
    public void showAtLocationTop(View view, float marginDp) {
        mLayoutView.measure(MeasureSpec.UNSPECIFIED, MeasureSpec.UNSPECIFIED);
        int popupWidth = mLayoutView.getMeasuredWidth();
        int popupHeight = mLayoutView.getMeasuredHeight();
        int[] location = new int[2];
        view.getLocationOnScreen(location);
        showAtLocation(view, Gravity.NO_GRAVITY, (location[0] + view.getWidth() / 2) - popupWidth / 2, location[1] - popupHeight - dp2px(marginDp));
        update();
    }

    /**
     * 顯示在控件正下方
     * 
     * @param view
     *            依賴的控件
     * @param marginDp
     *            設置的間距(直接寫數(shù)字即可仲吏,已經(jīng)做過dp2px轉(zhuǎn)換)
     */
    public void showAtLocationGravityBottom(View view, float marginDp) {
        mLayoutView.measure(MeasureSpec.UNSPECIFIED, MeasureSpec.UNSPECIFIED);
        int popupWidth = mLayoutView.getMeasuredWidth();
        int popupHeight = mLayoutView.getMeasuredHeight();
        int[] location = new int[2];
        view.getLocationOnScreen(location);
        showAtLocation(view, Gravity.NO_GRAVITY, (location[0]+view.getWidth()/2)-popupWidth/2,
                location[1]+view.getHeight()+dp2px(marginDp));
        update();
    }

    /**顯示在控件下方
     *
     * @param view 依賴的控件
     * @param marginDp  設置的間距(直接寫數(shù)字即可不铆,已經(jīng)做過dp2px轉(zhuǎn)換)
     */
    public void showAtLocationBottom(View view, float marginDp){
        showAsDropDown(view, 0, dp2px(marginDp));
        update();
    }


    /**
     * 顯示在控件左方
     * 
     * @param view
     *            依賴的控件
     * @param marginDp
     *            設置的間距(直接寫數(shù)字即可,已經(jīng)做過dp2px轉(zhuǎn)換)
     */
    public void showAtLocationLeft(View view, float marginDp) {
        mLayoutView.measure(MeasureSpec.UNSPECIFIED, MeasureSpec.UNSPECIFIED);
        int popupWidth = mLayoutView.getMeasuredWidth();
        int popupHeight = mLayoutView.getMeasuredHeight();
        int[] location = new int[2];
        view.getLocationOnScreen(location);
        showAtLocation(view, Gravity.NO_GRAVITY, location[0] - popupWidth - dp2px(marginDp), (location[1] + view.getHeight() / 2) - popupHeight / 2);
        update();
    }

    /**
     * 顯示在控件右方
     * 
     * @param view
     *            依賴的控件
     * @param marginDp
     *            設置的間距(直接寫數(shù)字即可裹唆,已經(jīng)做過dp2px轉(zhuǎn)換)
     */
    public void showAtLocationRight(View view, float marginDp) {
        mLayoutView.measure(MeasureSpec.UNSPECIFIED, MeasureSpec.UNSPECIFIED);
        int popupWidth = mLayoutView.getMeasuredWidth();
        int popupHeight = mLayoutView.getMeasuredHeight();
        int[] location = new int[2];
        view.getLocationOnScreen(location);
        showAtLocation(view, Gravity.NO_GRAVITY, location[0] + view.getWidth() + dp2px(marginDp), (location[1] + view.getHeight() / 2) - popupHeight / 2);
        update();
    }

    /** dp轉(zhuǎn)px **/
    private int dp2px(float dpVal) {
        return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dpVal, mContext.getResources().getDisplayMetrics());
    }

    /** 通過id獲得view **/
    @SuppressWarnings("unchecked")
    protected <T extends View> T getView(int viewId) {
        View view = null;
        if (mLayoutView == null) {
            mLayoutView = LayoutInflater.from(mContext).inflate(mLayoutId, null);
        }
        view = mLayoutView.findViewById(viewId);
        return (T) view;
    }

}

第二步誓斥,寫一個OrderPop繼承于BasePopupWindow:

/**
 * Instruction:下拉列表Pop
 * <p>
 * Author:pei
 * Date: 2017/6/28
 * Description:
 */


public class OrderPop extends BasePopupWindow{

    private RecyclerView mRecyclerView;
    private List<String>mDatas;
    private ManagerPopuAdapter<String> managerPopuAdapter;

    public OrderPop(Context context, List<String>datas) {
        super(ScreenUtil.dp2px(100,context), ScreenUtil.dp2px(150,context), R.layout.pop_order, context);
        this.mDatas=datas;

        initView();
        initData();
        setListener();
    }

    @Override
    protected void initView() {
        mRecyclerView=getView(R.id.recycler_view);
    }

    @Override
    protected void initData() {
        setFocusable(true);
        setAnimationStyle(R.style.popuwindow_up_style);//popuwindow顯示隱藏的動畫

        mRecyclerView.setHasFixedSize(true);
        mRecyclerView.setLayoutManager(new LinearLayoutManager(mContext));
        managerPopuAdapter = new ManagerPopuAdapter<String>(mContext, mDatas);
        mRecyclerView.setAdapter(managerPopuAdapter);
    }

    @Override
    protected void setListener(){

    }

    public ManagerPopuAdapter getAdapter(){
        return managerPopuAdapter;
    }

    public void notifyDataSetChanged(){
        if(managerPopuAdapter!=null){
            managerPopuAdapter.notifyDataSetChanged();
        }
    }

    public void setCurrentIndex(int position){
        if(managerPopuAdapter!=null){
            managerPopuAdapter.setIndex(position);
        }
    }
}

OrderPop類中涉及到的內(nèi)容挺多,以下將細細講解许帐。
1.--- 聲明中涉及到RecycleView的一個適配器ManagerPopuAdapter,其代碼如下:

/**
 * Instruction: Orderpop的適配器
 * <p>
 * Author:pei
 * Date: 2017/6/29
 * Description:
 */


public class ManagerPopuAdapter<T> extends RecyclerView.Adapter {

    protected Context mContext;
    protected View mLayoutView;
    protected List<T> mData;
    private ViewHolder mViewHolder;
    protected OnRecyclerItemClickListener mOnRecyclerItemClickListener;

    private int mIndex;

    public void setOnRecyclerItemClickListener(OnRecyclerItemClickListener onRecyclerItemClickListener) {
        this.mOnRecyclerItemClickListener = onRecyclerItemClickListener;
    }

    public ManagerPopuAdapter(Context context, List<T> data) {
        this.mContext = context;
        this.mData = data;
    }

    @Override
    public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
        //注:不可使用view=LayoutInflater.from(mContext).inflate(R.layout.item_layout劳坑,null);不然會報錯
        mLayoutView = LayoutInflater.from(mContext).inflate(R.layout.item_popu_order_layout, parent, false);
        return new ViewHolder(mLayoutView);
    }

    @Override
    public int getItemViewType(int position) {
        return super.getItemViewType(position);
    }

    @Override
    public int getItemCount() {
        return mData == null ? 0 : mData.size();
    }

    @Override
    public void onBindViewHolder(RecyclerView.ViewHolder holder, int position) {
        mViewHolder = ((ViewHolder) holder);

        initData(position);
        setListener(position);
    }

    private void initData(int position) {
        String content =mData.get(position).toString();
        mViewHolder.tvContent.setText(content);

        if(mIndex==position){
            mViewHolder.tvContent.setSelected(true);
        }else{
            mViewHolder.tvContent.setSelected(false);
        }

    }

    private void setListener(final int position) {
        mViewHolder.tvContent.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                if (mOnRecyclerItemClickListener != null) {
                    mOnRecyclerItemClickListener.onRecyclerClick(position);
                }
            }
        });
    }

    public void setIndex(int index){
        this.mIndex=index;
    }

    class ViewHolder extends RecyclerView.ViewHolder {

        TextView tvContent;

        public ViewHolder(View view) {
            super(view);
            tvContent=(TextView)view.findViewById(R.id.tv_content);
        }
    }

    public interface OnRecyclerItemClickListener {
        void onRecyclerClick(int position);
    }
}

2.--- ManagerPopuAdapter.java對應的layout----- item_popu_order_layout.xml代碼:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="3dp"
    android:layout_marginBottom="3dp">

    <TextView
        android:id="@+id/tv_content"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:lineSpacingExtra="1dp"
        android:lineSpacingMultiplier="1.0"
        android:layout_marginLeft="2dp"
        android:layout_marginRight="2dp"
        android:padding="3dp"
        android:background="@drawable/manager_fragment_popu_bg"
        android:textColor="@drawable/text_color_bg"
        android:textSize="12sp"/>

</LinearLayout>

3.--- item_popu_order_layout.xml中android:background="@drawable/manager_fragment_popu_bg"對應的drawable文件為:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/manager_fragment_popu_pressed" android:state_selected="true" />
    <item android:drawable="@drawable/manager_fragment_popu_normal" android:state_selected="false"/>
</selector>

manager_fragment_popu_pressed和manager_fragment_popu_normal對應的其實都是純顏色xml文件。
manager_fragment_popu_pressed.xml代碼如下:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
    <solid android:color="@color/color_f5cc1d"></solid>
</shape>

manager_fragment_popu_normal.xml代碼如下:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
    <solid android:color="@color/transparent"></solid>
</shape>

也許有的同學會問android:background="@drawable/manager_fragment_popu_bg文件中為什惡魔不直接用color屬性設置背景切換成畦,而要用color寫個drawable供調(diào)用距芬,其實我一開始也是這樣弄的,無奈報錯羡鸥,具體原因不詳蔑穴,知道的同學可以回復下,此處不做重點惧浴。

4.--- item_popu_order_layout.xml中android:textColor="@drawable/text_color_bg"對應的drawable文件如下:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:color="@color/color_ff5b0a" android:state_selected="true"/>
    <item android:color="@color/black" android:state_selected="false"/>
</selector>

5.---講講OrderPop的構(gòu)造函數(shù)

 public OrderPop(Context context, List<String>datas) {
        super(ScreenUtil.dp2px(100,context), ScreenUtil.dp2px(150,context), R.layout.pop_order, context);
        this.mDatas=datas;

        initView();
        initData();
        setListener();
    }

這里我其實是圖方便存和,所以直接傳了個固定寬度 ScreenUtil.dp2px(100,context) 進去了,實際開發(fā)中因為是點擊某個控件然后在控件下面顯示出來,那么應該傳那個控件的寬度捐腿,至于怎么在MainActivity的oncreate方法中獲取控件寬度纵朋,大家可以看
android獲取控件寬高
這里就不廢話了。

6.---OrderPop的layout布局pop_order.xml代碼如下:

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

    <android.support.v7.widget.RecyclerView
        android:id="@+id/recycler_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scrollbars="vertical"
        android:scrollbarThumbVertical="@color/blue"
        android:scrollbarStyle="outsideOverlay"/>

</LinearLayout>

其中茄袖,android:scrollbars="vertical"是設置滾動條方向操软,android:scrollbarThumbVertical="@color/blue"是設置滾動條顏色,android:scrollbarStyle="outsideOverlay"設置滾動條樣式

7.---講講OrderPop的顯隱動畫問題
在OrderPop類中的initData()方法中涉及到這樣一行代碼:

setAnimationStyle(R.style.popuwindow_up_style);//popuwindow顯示隱藏的動畫

涉及到popuwindow的顯隱動畫問題宪祥,大家可以參考的前言中提到的popuwindow的基本使用文章聂薪,這里就不廢話了。

第三步蝗羊,OrderPop寫好了藏澳,就該看看在MainActivity中是怎么調(diào)用的了,貼出MainActivity的代碼:

/**
 * Created by Admin on 2017/5/19.
 */

public class MainActivity extends BaseActivity implements View.OnClickListener{

    @BindView(R.id.tv_order)
    TextView mTvOrder;

    private static final int DEFAULT_INDEX=0;
    private List<String> mOrderList=new ArrayList<>();
    private OrderPop mOrderPop;

    @Override
    protected int getContentViewId() {
        return R.layout.activity_main;
    }

    @Override
    protected void initData() {
        initOrderTextBar();
    }

    /**訂單列表**/
    private void initOrderTextBar(){
        mOrderList.add("野蠻人");
        mOrderList.add("圣騎士");
        mOrderList.add("亞馬遜");
        mOrderList.add("死靈法師");
        mOrderList.add("法師");
        mOrderList.add("德魯伊");
        mOrderList.add("刺客");
        mOrderPop=new OrderPop(mContext,mOrderList);
        setBarContent(mTvOrder,mOrderList,DEFAULT_INDEX);

        mOrderPop.setOnDismissListener(new PopupWindow.OnDismissListener() {
            @Override
            public void onDismiss(){
                mTvOrder.setSelected(false);
            }
        });
        //mOrderPop項點擊事件
        mOrderPop.getAdapter().setOnRecyclerItemClickListener(new ManagerPopuAdapter.OnRecyclerItemClickListener() {
            @Override
            public void onRecyclerClick(int position) {
                showShortToast(mOrderList.get(position));
                //更新mTvOrder顯示內(nèi)容
                setBarContent(mTvOrder,mOrderList,position);
                //更新mOrderPop視圖選中背景
                mOrderPop.setCurrentIndex(position);
                mOrderPop.notifyDataSetChanged();
            }
        });
    }


    @Override
    protected void setListener() {
        mTvOrder.setOnClickListener(this);
    }

    @Nullable
    @Override
    protected BasePresenter getPresenter() {
        return null;
    }

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

    @Override
    public void onClick(View v) {
        switch (v.getId()) {
            case R.id.tv_order:
                if(mOrderPop!=null&&!mOrderPop.isShowing()){
                    mTvOrder.setSelected(true);//控制mTvOrder變色
                    mOrderPop.showAtLocationGravityBottom(mTvOrder,3);//顯示mOrderPop
                    //更新mOrderPop視圖選中背景
                    mOrderPop.setCurrentIndex(getIndexByTag(mTvOrder));
                    mOrderPop.notifyDataSetChanged();
                }
                break;
            default:
                break;
        }
    }

    private void setBarContent(TextView textView,List<String>data,int position){
        textView.setTag(position);
        textView.setText(data.get(position).toString());
    }

    private int getIndexByTag(TextView textView){
        int index=DEFAULT_INDEX;
        Object obj=textView.getTag();
        if(obj!=null){
            try {
                index=Integer.valueOf(obj.toString());
            } catch (NumberFormatException e) {
                e.printStackTrace();
            }
        }
        return index;
    }
}

MainActivity對應的布局activity_main.xml代碼如下:

<LinearLayout 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"
    android:background="@color/white"
    android:gravity="center"
    android:orientation="vertical">


    <TextView
        android:id="@+id/tv_order"
        android:layout_width="80dp"
        android:layout_height="wrap_content"
        android:lineSpacingExtra="1dp"
        android:lineSpacingMultiplier="1.0"
        android:paddingLeft="5dp"
        android:paddingRight="5dp"
        android:drawableRight="@drawable/manager_fragment_order_bg"
        android:textColor="@drawable/text_color_bg"
        android:textSize="14sp"/>
</LinearLayout>

android:drawableRight="@drawable/manager_fragment_order_bg"中manager_fragment_order_bg.xml對應的代碼如下:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@mipmap/ic_drop_up" android:state_selected="true" />
    <item android:drawable="@mipmap/ic_drop_down" android:state_selected="false"/>
</selector>

ic_drop_up和ic_drop_down對應的分別是一張箭頭向上的圖片和一張箭頭向下的圖片耀找,這里就不多說了翔悠。
android:textColor="@drawable/text_color_bg"的話是設置文字選中和未被選中時顯示的顏色,在上面的第二步第四條已經(jīng)講過了野芒,這里就不說了蓄愁。

ok,整個實現(xiàn)過程大致就是這樣的狞悲。今天關(guān)于PopuWindow實現(xiàn)下拉列表的知識就講到這里了撮抓,謝謝誒。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末效诅,一起剝皮案震驚了整個濱河市胀滚,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌乱投,老刑警劉巖,帶你破解...
    沈念sama閱讀 210,914評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件顷编,死亡現(xiàn)場離奇詭異戚炫,居然都是意外死亡,警方通過查閱死者的電腦和手機媳纬,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,935評論 2 383
  • 文/潘曉璐 我一進店門双肤,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人,你說我怎么就攤上這事「绒龋” “怎么了吮炕?”我有些...
    開封第一講書人閱讀 156,531評論 0 345
  • 文/不壞的土叔 我叫張陵,是天一觀的道長掸茅。 經(jīng)常有香客問我藕咏,道長役耕,這世上最難降的妖魔是什么缩赛? 我笑而不...
    開封第一講書人閱讀 56,309評論 1 282
  • 正文 為了忘掉前任耙箍,我火速辦了婚禮,結(jié)果婚禮上酥馍,老公的妹妹穿的比我還像新娘辩昆。我一直安慰自己,他們只是感情好旨袒,可當我...
    茶點故事閱讀 65,381評論 5 384
  • 文/花漫 我一把揭開白布汁针。 她就那樣靜靜地躺著,像睡著了一般砚尽。 火紅的嫁衣襯著肌膚如雪施无。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,730評論 1 289
  • 那天尉辑,我揣著相機與錄音帆精,去河邊找鬼。 笑死隧魄,一個胖子當著我的面吹牛卓练,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播购啄,決...
    沈念sama閱讀 38,882評論 3 404
  • 文/蒼蘭香墨 我猛地睜開眼襟企,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了狮含?” 一聲冷哼從身側(cè)響起顽悼,我...
    開封第一講書人閱讀 37,643評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎几迄,沒想到半個月后蔚龙,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,095評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡映胁,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,448評論 2 325
  • 正文 我和宋清朗相戀三年木羹,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片解孙。...
    茶點故事閱讀 38,566評論 1 339
  • 序言:一個原本活蹦亂跳的男人離奇死亡坑填,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出弛姜,到底是詐尸還是另有隱情脐瑰,我是刑警寧澤,帶...
    沈念sama閱讀 34,253評論 4 328
  • 正文 年R本政府宣布廷臼,位于F島的核電站苍在,受9級特大地震影響绝页,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜忌穿,卻給世界環(huán)境...
    茶點故事閱讀 39,829評論 3 312
  • 文/蒙蒙 一抒寂、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧掠剑,春花似錦屈芜、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,715評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至眠寿,卻和暖如春躬翁,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背盯拱。 一陣腳步聲響...
    開封第一講書人閱讀 31,945評論 1 264
  • 我被黑心中介騙來泰國打工盒发, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人狡逢。 一個月前我還...
    沈念sama閱讀 46,248評論 2 360
  • 正文 我出身青樓宁舰,卻偏偏與公主長得像,于是被迫代替她去往敵國和親奢浑。 傳聞我的和親對象是個殘疾皇子蛮艰,可洞房花燭夜當晚...
    茶點故事閱讀 43,440評論 2 348

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

  • Android 自定義View的各種姿勢1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 171,732評論 25 707
  • afinalAfinal是一個android的ioc,orm框架 https://github.com/yangf...
    passiontim閱讀 15,406評論 2 45
  • ¥開啟¥ 【iAPP實現(xiàn)進入界面執(zhí)行逐一顯】 〖2017-08-25 15:22:14〗 《//首先開一個線程雀彼,因...
    小菜c閱讀 6,365評論 0 17
  • 下雨了壤蚜,才知道誰會給你送傘;遇事了徊哑,才知道誰對你真心袜刷。有些人,只會錦上添花莺丑,不會雪中送炭水泉;有些人,只會火上澆油窒盐,不...
    心羽暖姐姐閱讀 1,170評論 0 0
  • 課間十分鐘,給孩子們每人發(fā)一個毽子讓他們踢钢拧,看著他們的動作笨拙又可愛蟹漓,一時興起,和孩子們一起踢...... 我的表...
    李小五閱讀 405評論 0 1