2019-10-25考试

在这里插入图片描述
在这里插入图片描述

1、 使用ListView,实现图一效果(自定义json数据,标题、时间、来源),
2、 点击 红圈中的 叉 ,在屏幕下方弹出对话框,实现删除功能,并选择原因

public class BaseActivity extends AppCompatActivity implements Callback.CommonCallback<String>{


    @Override
    protected void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
    }
    //    数据加载函数
    public void loadData(String url){
        RequestParams requestParams = new RequestParams(url);
        x.http().get(requestParams,this);
    }
    @Override
    public void onSuccess(String s) {

    }

    @Override
    public void onError(Throwable throwable, boolean b) {

    }

    @Override
    public void onCancelled(CancelledException e) {

    }

    @Override
    public void onFinished() {

    }
}
public class ItemAdapter extends BaseAdapter {
    private Context context;
    List<Bean.ResultBean.DataBean> mDatas;

    public ItemAdapter(Context context, List<Bean.ResultBean.DataBean> mDatas) {
        this.context = context;
        this.mDatas = mDatas;
    }

    @Override
    public int getCount() {
        return mDatas.size();
    }

    @Override
    public Object getItem(int position) {
        return mDatas.get(position);
    }

    @Override
    public long getItemId(int position) {
        return position;
    }

    @Override
    public View getView(final int position, View convertView, final ViewGroup parent) {
        ViewHolder holder=null;
        if (convertView==null){
            convertView= LayoutInflater.from(context).inflate(R.layout.item_lv,null);
            holder=new ViewHolder();
            holder.title=convertView.findViewById(R.id.title);
            holder.time=convertView.findViewById(R.id.time);
            holder.page_url=convertView.findViewById(R.id.page_url);
            holder.image1=convertView.findViewById(R.id.image_1);
            holder.image2=convertView.findViewById(R.id.image_2);
            holder.image3=convertView.findViewById(R.id.image_3);
            holder.delete_image=convertView.findViewById(R.id.delete_image);
            convertView.setTag(holder);
        }else {
           holder= (ViewHolder) convertView.getTag();
        }
        Bean.ResultBean.DataBean dataBean=mDatas.get(position);
        holder.title.setText(dataBean.getTitle());
        holder.time.setText(dataBean.getDate());
        holder.page_url.setText(dataBean.getAuthor_name());
      /*  Picasso.with(context)
                .load("http://08imgmini.eastday.com/mobile/20191025/2019102510_78924da450b44f8d98c8fae6554d5e06_0258_cover_mwpm_03200403.jpg")
                .error(R.mipmap.deler)
                .into(holder.image1);*/
        String img1=dataBean.getThumbnail_pic_s();
        if(TextUtils.isEmpty(img1)){
            holder.image1.setVisibility(View.GONE);
        }else {
            holder.image1.setVisibility(View.VISIBLE);
            Picasso.with(context).load(img1).into(holder.image1);
        }
        String img2=dataBean.getThumbnail_pic_s02();
        if(TextUtils.isEmpty(img2)){
            holder.image2.setVisibility(View.GONE);
        }else {
            holder.image2.setVisibility(View.VISIBLE);
            Picasso.with(context).load(img2).into(holder.image2);
        }
        String img3=dataBean.getThumbnail_pic_s03();
        if(TextUtils.isEmpty(img3)){
            holder.image3.setVisibility(View.GONE);
        }else {
            holder.image3.setVisibility(View.VISIBLE);
            Picasso.with(context).load(img3).into(holder.image3);
        }
        holder.delete_image.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                mOnItemDeleteListener.onImageClick(position);
            }
        });
        return convertView;
    }
    /**
     * 删除按钮的监听接口
     */
    public interface onItemDeleteListener {
        void onImageClick(int position);
    }

    private onItemDeleteListener mOnItemDeleteListener;

    public void setOnItemDeleteClickListener(onItemDeleteListener mOnItemDeleteListener) {
        this.mOnItemDeleteListener = mOnItemDeleteListener;
    }

    class ViewHolder{
        ImageView image1,image2,image3,delete_image;
        TextView title,time,page_url;
    }
}

```css
public class MainActivity extends BaseActivity implements View.OnClickListener {
ListView main_lv;
ItemAdapter adapter;
List<Bean.ResultBean.DataBean> mDatas=new ArrayList<>();;
    String json;
    Dialog dialog;
    CheckBox check1,check2,check3,check4;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        json = getJson("json.txt", this);
        main_lv=findViewById(R.id.main_lv);
        adapter=new ItemAdapter(this,mDatas);
        main_lv.setAdapter(adapter);

        Gson gson=new Gson();
        Bean bean=gson.fromJson(json, Bean.class);
        List<Bean.ResultBean.DataBean> dataBeans=bean.getResult().getData();
        mDatas.addAll(dataBeans);
        main_lv.setOnItemClickListener(new AdapterView.OnItemClickListener() {
            @Override
            public void onItemClick(AdapterView<?> parent, View view, int position, long id) {

            }
        });
        //ListView item 中的图片的点击事件
        adapter.setOnItemDeleteClickListener(new ItemAdapter.onItemDeleteListener() {
            @Override
            public void onImageClick(int i) {
               // List.remove(i);
                show(i);
                Toast.makeText(MainActivity.this, "delete item:" + i, Toast.LENGTH_SHORT).show();
            }
        });
//15062322210
    }
    public static String getJson(String fileName, Context context) {
        //将json数据变成字符串
        StringBuilder stringBuilder = new StringBuilder();
        try {
            //获取assets资源管理器
            AssetManager assetManager = context.getAssets();
            //通过管理器打开文件并读取
            BufferedReader bf = new BufferedReader(new InputStreamReader(assetManager.open(fileName)));
            String line;
            while ((line = bf.readLine()) != null) {
                stringBuilder.append(line);
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
        return stringBuilder.toString();
    }
    public void show(int i){
        dialog = new Dialog(this,R.style.ActionSheetDialogStyle);
        //填充对话框的布局
       View inflate = LayoutInflater.from(this).inflate(R.layout.dialog_layout, null);
        //初始化控件
         check1=inflate.findViewById(R.id.check1);
       check2=inflate.findViewById(R.id.check2);
        check3=inflate.findViewById(R.id.check3);
        check4=inflate.findViewById(R.id.check4);
        Button btnclose=inflate.findViewById(R.id.btnclose);
       btnclose.setOnClickListener(this);
        String s=mDatas.get(i).getAuthor_name();
        check4.setText("来自"+s+"的不看");
        //将布局设置给Dialog
        dialog.setContentView(inflate);
        //获取当前Activity所在的窗体
        Window dialogWindow = dialog.getWindow();
        //设置Dialog从窗体底部弹出
        dialogWindow.setGravity( Gravity.BOTTOM);
        //获得窗体的属性
        WindowManager.LayoutParams lp = dialogWindow.getAttributes();
        lp.y = 2;//设置Dialog距离底部的距离
//       将属性设置给窗体
        dialogWindow.setAttributes(lp);
        dialog.show();//显示对话框
    }

    @Override
    public void onClick(View v) {
        switch (v.getId()){
            case R.id.btnclose:{
                if(check1.isChecked()||check2.isChecked()||check3.isChecked()||check4.isChecked()) {
                    Bean.ResultBean.DataBean favContexted2 = (Bean.ResultBean.DataBean) main_lv.getAdapter().getItem(0);
                    mDatas.remove(favContexted2);
                    adapter.notifyDataSetChanged();
                    dialog.cancel();
                }
                Toast.makeText(MainActivity.this, "必须选择一个原因" , Toast.LENGTH_SHORT).show();
                break;
            }
        }
    }
}

// 此类象征着整个程序对象,一旦应用程序被开启,此类会首先运行
public class UniteApp extends Application {

    @Override
    public void onCreate() {
        super.onCreate();
        //初始化xUtils
        x.Ext.init(this);
    }
}

```css
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:orientation="vertical"
    android:layout_height="match_parent"
    tools:context=".MainActivity">
<ListView
    android:id="@+id/main_lv"
    android:layout_width="match_parent"
    android:layout_height="match_parent"></ListView>

</LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:orientation="vertical"
    android:background="#F8F7F7"
    android:layout_height="match_parent">
    <TextView
        android:id="@+id/diotitle"
        android:layout_width="match_parent"
        android:layout_height="45dp"
        android:text="请选择原因!"
        android:textSize="35dp"
        android:gravity="center_horizontal"
        android:textStyle="bold"
        />
    <View
        android:layout_width="match_parent"
        android:layout_height="4px"
        android:background="#C7C9C3"
        />
    <CheckBox
        android:id="@+id/check1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="2dp"
        android:textStyle="bold"
        android:checked="true"
        android:layoutDirection="rtl"
        android:scaleX="1"
        android:scaleY="1"
        android:text="就是不喜欢,任性"
        android:textSize="25sp"
      />
    <CheckBox
        android:id="@+id/check2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="2dp"
        android:textStyle="bold"
        android:layoutDirection="rtl"
        android:scaleX="1"
        android:scaleY="1"
        android:text="不爱看“娱乐”类"
        android:textSize="25sp"
        />
    <CheckBox
        android:id="@+id/check3"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="2dp"
        android:textStyle="bold"
        android:layoutDirection="rtl"
        android:scaleX="1"
        android:scaleY="1"
        android:text="不爱看“明星”类"
        android:textSize="25sp"
        />
    <CheckBox
        android:id="@+id/check4"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="2dp"
        android:textStyle="bold"
        android:layoutDirection="rtl"
        android:scaleX="1"
        android:scaleY="1"
        android:text="来自“”不看"
        android:textSize="25sp"
        />
    <Button
        android:id="@+id/btnclose"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="30dp"
        android:text="直接删除"
        android:background="#F8F7F7"
        android:gravity="center_horizontal"
        android:textColor="#E71111"/>
</LinearLayout>
<?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">
<TextView
    android:id="@+id/title"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
   android:textSize="20sp"
    android:textStyle="bold"
    android:text="3林心如自曝嫁给霍建华的真实原因,网友听了好酸!"/>
<ImageView
    android:id="@+id/image_1"
    android:layout_width="120dp"
    android:layout_height="120dp"
    android:src="@mipmap/ic_launcher"
    android:layout_below="@+id/title"
    />
    <ImageView
        android:id="@+id/image_2"
        android:layout_width="120dp"
        android:layout_height="120dp"
        android:src="@mipmap/ic_launcher"
        android:layout_below="@+id/title"
        android:layout_marginLeft="12dp"
        android:layout_toRightOf="@id/image_1"
        />
    <ImageView
        android:id="@+id/image_3"
        android:layout_width="120dp"
        android:layout_height="120dp"
        android:src="@mipmap/ic_launcher"
        android:layout_below="@+id/title"
        android:layout_marginLeft="12dp"
        android:layout_toRightOf="@id/image_2"
        />
    <TextView
        android:id="@+id/time"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="20sp"
        android:text="2019-12-12 10:19"
        android:layout_below="@id/image_1"/>
    <TextView
        android:id="@+id/page_url"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@id/time"
        android:layout_below="@id/image_1"
        android:layout_marginLeft="15dp"
        android:textSize="20sp"
        android:text="新浪娱乐"/>
    <ImageView
        android:id="@+id/delete_image"
        android:layout_width="30dp"
        android:layout_height="30dp"
        android:src="@mipmap/deler"
        android:layout_alignParentRight="true"
        android:layout_below="@id/image_1"
        />
</RelativeLayout>
  <style name="ActionSheetDialogStyle" parent="@android:style/Theme.Dialog">

        <!-- 背景透明 -->
        <item name="android:windowBackground">@android:color/transparent</item>
        <item name="android:windowContentOverlay">@null</item>
        <!-- 浮于Activity之上 -->
        <item name="android:windowIsFloating">true</item>
        <!-- 边框 -->
        <item name="android:windowFrame">@null</item>
        <!-- Dialog以外的区域模糊效果 -->
        <item name="android:backgroundDimEnabled">true</item>
        <!-- 无标题 -->
        <item name="android:windowNoTitle">true</item>
        <!-- 半透明 -->
        <item name="android:windowIsTranslucent">true</item>
        <!-- Dialog进入及退出动画 -->
        <item name="android:windowAnimationStyle">@style/ActionSheetDialogAnimation</item>
    </style>
    <!-- ActionSheet进出动画 -->
    <style name="ActionSheetDialogAnimation" parent="@android:style/Animation.Dialog">
        <item name="android:windowEnterAnimation">@anim/actionsheet_dialog_in</item>
        <item name="android:windowExitAnimation">@anim/actionsheet_dialog_out</item>
    </style>
<?xml version="1.0" encoding="utf-8"?>
<translate xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="200"
    android:fromYDelta="0"
    android:toYDelta="100%" />
<?xml version="1.0" encoding="utf-8"?>
<translate xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="200"
    android:fromYDelta="100%"
    android:toYDelta="0" />
{
  "reason": "成功的返回",
  "result": {
    "stat": "1",
    "data": [
      {
        "uniquekey": "1a1cf5eaba2f69311e786c361cab9376",
        "title": "林心如自曝嫁给霍建华的真实原因,网友听了好酸!",
        "date": "2019-10-25 10:26",
        "category": "娱乐",
        "author_name": "东方号娱乐",
        "url": "http:\/\/mini.eastday.com\/mobile\/191025102654984.html",
        "thumbnail_pic_s": "http:\/\/08imgmini.eastday.com\/mobile\/20191025\/2019102510_78924da450b44f8d98c8fae6554d5e06_0258_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s02": "http:\/\/08imgmini.eastday.com\/mobile\/20191025\/2019102510_f27e6009b76e40ceb594c58e60dade77_6803_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s03": "http:\/\/08imgmini.eastday.com\/mobile\/20191025\/2019102510_2f750c9c439f47b3b50585ed005bc6bb_7613_cover_mwpm_03200403.jpg"
      },
      {
        "uniquekey": "05cee398ceed6c7fa370b318955dea8b",
        "title": "那英的台风和造型越来越国际化!能撑场面的老牌儿天后也就她了吧",
        "date": "2019-10-25 10:25",
        "category": "娱乐",
        "author_name": "酸辣娱",
        "url": "http:\/\/mini.eastday.com\/mobile\/191025102540304.html",
        "thumbnail_pic_s": "http:\/\/04imgmini.eastday.com\/mobile\/20191025\/2019102510_5b0e5cffc6524f748f19abf395c1203f_9706_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s02": "http:\/\/04imgmini.eastday.com\/mobile\/20191025\/2019102510_70498b3751b845baba3ee9f7bc1410b8_8530_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s03": "http:\/\/04imgmini.eastday.com\/mobile\/20191025\/2019102510_a24df43e015b4e8291051bf02a72f2d2_1522_cover_mwpm_03200403.jpg"
      },
      {
        "uniquekey": "aee9f49e9dedf890f6575ace551d583a",
        "title": "同样是生孩子,何猷君与霍启刚对待妻子的态度,看出谁才是真豪门",
        "date": "2019-10-25 10:25",
        "category": "娱乐",
        "author_name": "阳光八卦君",
        "url": "http:\/\/mini.eastday.com\/mobile\/191025102530252.html",
        "thumbnail_pic_s": "http:\/\/03imgmini.eastday.com\/mobile\/20191025\/2019102510_ffa1c43b524f490ebb5cb04cf7b0bba3_3595_mwpm_03200403.jpg",
        "thumbnail_pic_s02": "http:\/\/03imgmini.eastday.com\/mobile\/20191025\/2019102510_498e895d29fb42b8b7761effee24c6a3_6929_mwpm_03200403.jpg",
        "thumbnail_pic_s03": "http:\/\/03imgmini.eastday.com\/mobile\/20191025\/2019102510_8d3870399c6444bab0649587696c5d4a_6679_mwpm_03200403.jpg"
      },
      {
        "uniquekey": "96fa0556a853a7d235a506a36839e36c",
        "title": "曾登春晚红极一时,如今复出风光不再,大家还记得他吗?",
        "date": "2019-10-25 10:24",
        "category": "娱乐",
        "author_name": "洪洪热点报",
        "url": "http:\/\/mini.eastday.com\/mobile\/191025102451628.html",
        "thumbnail_pic_s": "http:\/\/00imgmini.eastday.com\/mobile\/20191025\/2019102510_e1c12cd4bcbc4c93989dd2454a052d2d_5893_mwpm_03200403.jpg",
        "thumbnail_pic_s02": "http:\/\/00imgmini.eastday.com\/mobile\/20191025\/2019102510_583a9cc51629493e8ce21c583b57daf7_8517_mwpm_03200403.jpg",
        "thumbnail_pic_s03": "http:\/\/00imgmini.eastday.com\/mobile\/20191025\/2019102510_fcea1ceba2624572b4220d3d28b86365_3271_mwpm_03200403.jpg"
      },
      {
        "uniquekey": "68488a00b24caf33f38096994912d824",
        "title": "陈羽凡恋情曝光?与高颜值美女染情侣头,新女友真实身份令人震惊",
        "date": "2019-10-25 10:23",
        "category": "娱乐",
        "author_name": "东方号娱乐",
        "url": "http:\/\/mini.eastday.com\/mobile\/191025102313459.html",
        "thumbnail_pic_s": "http:\/\/07imgmini.eastday.com\/mobile\/20191025\/2019102510_6f6c8b2041a547098e34e4cd64c39db8_4401_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s02": "http:\/\/07imgmini.eastday.com\/mobile\/20191025\/2019102510_c666508e46f74e1b8af012a59a51670b_8803_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s03": "http:\/\/07imgmini.eastday.com\/mobile\/20191025\/2019102510_608088f9f87a4a1eb76370a426929b46_5353_cover_mwpm_03200403.jpg"
      },
      {
        "uniquekey": "0f70e760b8b7ea62cb814e981b55a1af",
        "title": "林更新开餐厅直呼猪肉贵 自夸作品还没拍就被平台预定",
        "date": "2019-10-25 10:23",
        "category": "娱乐",
        "author_name": "娱乐壹观察",
        "url": "http:\/\/mini.eastday.com\/mobile\/191025102301022.html",
        "thumbnail_pic_s": "http:\/\/04imgmini.eastday.com\/mobile\/20191025\/2019102510_cfeedeecdcd84a6c98e9dde9060be2e2_4290_cover_mwpm_03200403.jpg"
      },
      {
        "uniquekey": "4af43605b841f3308d49aee25108f00d",
        "title": "他曾因妻子出轨还被骂性无能而隐退,今再度翻红有新恋情前途大好",
        "date": "2019-10-25 10:22",
        "category": "娱乐",
        "author_name": "听歌打娱",
        "url": "http:\/\/mini.eastday.com\/mobile\/191025102251807.html",
        "thumbnail_pic_s": "http:\/\/04imgmini.eastday.com\/mobile\/20191025\/2019102510_a44118ea672e45cfb23c0faff003fb19_2391_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s02": "http:\/\/04imgmini.eastday.com\/mobile\/20191025\/2019102510_a9dd633f30954bb3b866820239b12a77_6346_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s03": "http:\/\/04imgmini.eastday.com\/mobile\/20191025\/2019102510_586f7cbcd34d4d5096c614a7bf403280_8196_cover_mwpm_03200403.jpg"
      },
      {
        "uniquekey": "aa57314413a837eefc2384329b4e7c91",
        "title": "《甄嬛传》甄嬛如何发现安陵容坏心思?全因后者聪明反被聪明误",
        "date": "2019-10-25 10:22",
        "category": "娱乐",
        "author_name": "妖麟娱乐",
        "url": "http:\/\/mini.eastday.com\/mobile\/191025102251236.html",
        "thumbnail_pic_s": "http:\/\/08imgmini.eastday.com\/mobile\/20191025\/2019102510_934a1f1931fa42fbbbdf2b20db2fcc67_5201_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s02": "http:\/\/08imgmini.eastday.com\/mobile\/20191025\/2019102510_6955ef4c8c3e48eea1afd41da7bf24c3_7327_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s03": "http:\/\/08imgmini.eastday.com\/mobile\/20191025\/2019102510_abd25abf767d4053a4de4465b9239f40_1585_cover_mwpm_03200403.jpg"
      },
      {
        "uniquekey": "3f8e49a12c89ef851a274d95f1583e19",
        "title": "奚梦瑶生子时间真有讲究,宝宝满月当天就是赌王98岁的生日",
        "date": "2019-10-25 10:22",
        "category": "娱乐",
        "author_name": "金牌娱乐",
        "url": "http:\/\/mini.eastday.com\/mobile\/191025102229419.html",
        "thumbnail_pic_s": "http:\/\/00imgmini.eastday.com\/mobile\/20191025\/2019102510_f3e1d3a4bede4ef684ea740ecdf91204_2579_cover_mwpm_03200403.jpg"
      },
      {
        "uniquekey": "0fc84e49ac57acdb8949bb67b7c3d97e",
        "title": "最美20位女明星排名出炉,第一没想到是她!",
        "date": "2019-10-25 10:20",
        "category": "娱乐",
        "author_name": "困倦的毛豆",
        "url": "http:\/\/mini.eastday.com\/mobile\/191025102035948.html",
        "thumbnail_pic_s": "http:\/\/09imgmini.eastday.com\/mobile\/20191025\/2019102510_33974530a2064c61b6714f878314e8fe_6449_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s02": "http:\/\/09imgmini.eastday.com\/mobile\/20191025\/2019102510_6d6dc78c1cf4443283fc422b3d0ec213_0035_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s03": "http:\/\/09imgmini.eastday.com\/mobile\/20191025\/2019102510_04b3ce09d46047828e27efa246544251_3825_cover_mwpm_03200403.jpg"
      },
      {
        "uniquekey": "604d15bbdcadefffb013af19235b5d89",
        "title": "甄嬛传:弘历登基后苏培盛却不见了?姜还是老的辣,早就想好退路",
        "date": "2019-10-25 10:20",
        "category": "娱乐",
        "author_name": "妖麟娱乐",
        "url": "http:\/\/mini.eastday.com\/mobile\/191025102029352.html",
        "thumbnail_pic_s": "http:\/\/07imgmini.eastday.com\/mobile\/20191025\/2019102510_1b054ab4bc2e4c52841a95ecb88242ee_7558_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s02": "http:\/\/07imgmini.eastday.com\/mobile\/20191025\/2019102510_71570123e51f45d7929f1d5c49bcef25_4468_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s03": "http:\/\/07imgmini.eastday.com\/mobile\/20191025\/2019102510_2e425f720b74466d85637a56704b0da4_3355_cover_mwpm_03200403.jpg"
      },
      {
        "uniquekey": "7361531da35af33eb99cb31842061efc",
        "title": "带着江南女子的纤巧,瓜子脸+大眼睛+樱桃唇,古装造型又仙又美",
        "date": "2019-10-25 10:19",
        "category": "娱乐",
        "author_name": "最新热点评述",
        "url": "http:\/\/mini.eastday.com\/mobile\/191025101953102.html",
        "thumbnail_pic_s": "http:\/\/04imgmini.eastday.com\/mobile\/20191025\/2019102510_c8799201fa584dd2b85af2d4b4bcfa01_1913_mwpm_03200403.jpg",
        "thumbnail_pic_s02": "http:\/\/04imgmini.eastday.com\/mobile\/20191025\/2019102510_141c055a7a3d46fbaa699ea81b840fcd_9332_mwpm_03200403.jpg"
      },
      {
        "uniquekey": "3a553742c44c17b33c87fe936978b385",
        "title": "《新女驸马》时隔16年:有人豪门梦碎,他娶央视女主持",
        "date": "2019-10-25 10:18",
        "category": "娱乐",
        "author_name": "洪洪热点报",
        "url": "http:\/\/mini.eastday.com\/mobile\/191025101838498.html",
        "thumbnail_pic_s": "http:\/\/09imgmini.eastday.com\/mobile\/20191025\/2019102510_228f4cf82ad847e99147c981b0b66e37_1658_mwpm_03200403.jpg",
        "thumbnail_pic_s02": "http:\/\/09imgmini.eastday.com\/mobile\/20191025\/2019102510_e38f8561efdb4bdd8d9c6b9814d0336f_1923_mwpm_03200403.jpg",
        "thumbnail_pic_s03": "http:\/\/09imgmini.eastday.com\/mobile\/20191025\/2019102510_f1a88b432b9144a88532af8cd545e934_3328_mwpm_03200403.jpg"
      },
      {
        "uniquekey": "cbbce05ba08a569314af557e25e9431a",
        "title": "《甄嬛传》浣碧自作聪明,殊不知之前对甄嬛做的事让果郡王怨恨?",
        "date": "2019-10-25 10:18",
        "category": "娱乐",
        "author_name": "妖麟娱乐",
        "url": "http:\/\/mini.eastday.com\/mobile\/191025101822491.html",
        "thumbnail_pic_s": "http:\/\/05imgmini.eastday.com\/mobile\/20191025\/2019102510_3032f21661424813b3ca0ab14402b083_5988_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s02": "http:\/\/05imgmini.eastday.com\/mobile\/20191025\/2019102510_08ae2572ae51452c8cd84446a0abd6ce_9906_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s03": "http:\/\/05imgmini.eastday.com\/mobile\/20191025\/2019102510_755523066eab4d71847971a865bc1b8c_2748_cover_mwpm_03200403.jpg"
      },
      {
        "uniquekey": "11d09de8d9d8e448709725908d185a18",
        "title": "《歌手2020》定档!首发嘉宾猜测为张惠妹,三大原因表明",
        "date": "2019-10-25 10:18",
        "category": "娱乐",
        "author_name": "小枫体育",
        "url": "http:\/\/mini.eastday.com\/mobile\/191025101813422.html",
        "thumbnail_pic_s": "http:\/\/08imgmini.eastday.com\/mobile\/20191025\/2019102510_87ac2473c7e048cfb527b7d88cc44da1_0077_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s02": "http:\/\/08imgmini.eastday.com\/mobile\/20191025\/2019102510_48329790f47a4f4f9cbceb2ebcbc496f_7690_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s03": "http:\/\/08imgmini.eastday.com\/mobile\/20191025\/2019102510_8468c668a0ab48e9afecfefd94861265_8343_cover_mwpm_03200403.jpg"
      },
      {
        "uniquekey": "804b3ab1813859fa6e0a6565ff39fbc8",
        "title": "华晨宇演唱会被取消,前经纪人发文讽刺,网粉丝迅速集体围攻",
        "date": "2019-10-25 10:17",
        "category": "娱乐",
        "author_name": "新视点娱乐",
        "url": "http:\/\/mini.eastday.com\/mobile\/191025101756257.html",
        "thumbnail_pic_s": "http:\/\/05imgmini.eastday.com\/mobile\/20191025\/2019102510_2f324801860646e4b217667a25171ae1_1535_mwpm_03200403.jpg",
        "thumbnail_pic_s02": "http:\/\/05imgmini.eastday.com\/mobile\/20191025\/2019102510_672b22dbce5147a98c23a4b3a1d47398_7948_mwpm_03200403.jpg"
      },
      {
        "uniquekey": "b31fac81ab85282b55b030e0c71dffea",
        "title": "有种“撞衫”叫杨颖和杨幂,看到两人的坐姿,谁是腿精一眼明了!",
        "date": "2019-10-25 10:17",
        "category": "娱乐",
        "author_name": "电影娱乐八卦",
        "url": "http:\/\/mini.eastday.com\/mobile\/191025101753573.html",
        "thumbnail_pic_s": "http:\/\/03imgmini.eastday.com\/mobile\/20191025\/2019102510_f86c9ccd77e84612808e268e58a19362_7880_mwpm_03200403.jpg",
        "thumbnail_pic_s02": "http:\/\/03imgmini.eastday.com\/mobile\/20191025\/2019102510_1c2a5a901015445a9a462fdf4314c7e3_9908_mwpm_03200403.jpg",
        "thumbnail_pic_s03": "http:\/\/03imgmini.eastday.com\/mobile\/20191025\/2019102510_d1be3d9eb148459a951053946d541174_2530_mwpm_03200403.jpg"
      },
      {
        "uniquekey": "9731c76a11c2de1a20accc5e098f05e3",
        "title": "胡歌被问“未来老婆”人选,他脱口而出一个名字,网友:赶紧官宣",
        "date": "2019-10-25 10:17",
        "category": "娱乐",
        "author_name": "新视点娱乐",
        "url": "http:\/\/mini.eastday.com\/mobile\/191025101733049.html",
        "thumbnail_pic_s": "http:\/\/09imgmini.eastday.com\/mobile\/20191025\/2019102510_266580a3275e455d856445ee79d8cbd8_4930_mwpm_03200403.jpg",
        "thumbnail_pic_s02": "http:\/\/09imgmini.eastday.com\/mobile\/20191025\/2019102510_630d5f9a5a6e497f9be17b3b6e14663e_1379_mwpm_03200403.jpg",
        "thumbnail_pic_s03": "http:\/\/09imgmini.eastday.com\/mobile\/20191025\/2019102510_ddaf51bf0f9247ef8cbce1c13a11db17_2456_mwpm_03200403.jpg"
      },
      {
        "uniquekey": "321c2e36d0ce4b007bd97d36172b5dde",
        "title": "6位“最耐看”的女星,杨幂上榜,赵丽颖仅第3,第一位百看不厌",
        "date": "2019-10-25 10:16",
        "category": "娱乐",
        "author_name": "小田调娱乐",
        "url": "http:\/\/mini.eastday.com\/mobile\/191025101656545.html",
        "thumbnail_pic_s": "http:\/\/09imgmini.eastday.com\/mobile\/20191025\/2019102510_38e2c9f81ae04585a505e703c2389cd0_4886_mwpm_03200403.jpg",
        "thumbnail_pic_s02": "http:\/\/09imgmini.eastday.com\/mobile\/20191025\/2019102510_f2b83f8c278340de95e3397740dc14fb_8029_mwpm_03200403.jpg",
        "thumbnail_pic_s03": "http:\/\/09imgmini.eastday.com\/mobile\/20191025\/2019102510_d7d67468fc164193abcee5021c4caf8d_7883_mwpm_03200403.jpg"
      },
      {
        "uniquekey": "658b230384ca1c6ae3653b42036ae88e",
        "title": "影视剧中最甜蜜的四对姐弟恋,杨幂黄子韬第三,第一堪称经典!",
        "date": "2019-10-25 10:15",
        "category": "娱乐",
        "author_name": "洪洪热点报",
        "url": "http:\/\/mini.eastday.com\/mobile\/191025101545680.html",
        "thumbnail_pic_s": "http:\/\/00imgmini.eastday.com\/mobile\/20191025\/2019102510_048ecf21a1fa4cc889f8d38e47f1ed4c_0249_mwpm_03200403.jpg",
        "thumbnail_pic_s02": "http:\/\/00imgmini.eastday.com\/mobile\/20191025\/2019102510_738343b97dfe43479c3f3c264022f679_6587_mwpm_03200403.jpg",
        "thumbnail_pic_s03": "http:\/\/00imgmini.eastday.com\/mobile\/20191025\/2019102510_2cace4ac8cfa4339a514c77de505b778_4557_mwpm_03200403.jpg"
      },
      {
        "uniquekey": "40bd053e02af79a372f984442aa8f000",
        "title": "《甄嬛传》皇后到死都不知,胧月为何污蔑她?敬妃还给甄嬛的人情",
        "date": "2019-10-25 10:15",
        "category": "娱乐",
        "author_name": "妖麟娱乐",
        "url": "http:\/\/mini.eastday.com\/mobile\/191025101506742.html",
        "thumbnail_pic_s": "http:\/\/06imgmini.eastday.com\/mobile\/20191025\/2019102510_d182bb9aa69c402bb98fe917019bc82f_9635_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s02": "http:\/\/06imgmini.eastday.com\/mobile\/20191025\/2019102510_aa6be9d0dd294fa8ad7c49aac41b815b_0195_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s03": "http:\/\/06imgmini.eastday.com\/mobile\/20191025\/2019102510_2943cf1129be40d7b54bf33514043238_2355_cover_mwpm_03200403.jpg"
      },
      {
        "uniquekey": "2e4f12665f6d312e397b3c22d5451509",
        "title": "《甄嬛传》皇后一直谋害皇嗣,为何曾怒斥安陵容,救了胧月一命?",
        "date": "2019-10-25 10:13",
        "category": "娱乐",
        "author_name": "妖麟娱乐",
        "url": "http:\/\/mini.eastday.com\/mobile\/191025101338773.html",
        "thumbnail_pic_s": "http:\/\/02imgmini.eastday.com\/mobile\/20191025\/2019102510_b2f3e8266cdd498e9ac03f4fd8589eb0_6883_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s02": "http:\/\/02imgmini.eastday.com\/mobile\/20191025\/2019102510_1f0c6041348f41c69f37ed61e1735055_4155_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s03": "http:\/\/02imgmini.eastday.com\/mobile\/20191025\/2019102510_4cc61a133321487688403aec7624ddf9_0060_cover_mwpm_03200403.jpg"
      },
      {
        "uniquekey": "0d6c524baa092247c423ab3002268441",
        "title": "《釜山行》孔刘携新作回归,大胜《小丑》,口碑为何如此两极分化",
        "date": "2019-10-25 10:13",
        "category": "娱乐",
        "author_name": "独家影视",
        "url": "http:\/\/mini.eastday.com\/mobile\/191025101336784.html",
        "thumbnail_pic_s": "http:\/\/02imgmini.eastday.com\/mobile\/20191025\/2019102510_10f8335451c6406ca1b2d6ea1d0011bd_6543_mwpm_03200403.jpg",
        "thumbnail_pic_s02": "http:\/\/02imgmini.eastday.com\/mobile\/20191025\/2019102510_59020fdc601c43c7839664b8bbbcc384_3196_mwpm_03200403.jpg",
        "thumbnail_pic_s03": "http:\/\/02imgmini.eastday.com\/mobile\/20191025\/2019102510_4bb56210f3ca42dab6b23b3c3f16748c_8290_mwpm_03200403.jpg"
      },
      {
        "uniquekey": "f0d0957d77c2843e091b366478f139f5",
        "title": "曾经当过伴娘的明星,郭晓婷俏皮可爱阿娇令人惊艳,她仙气十足",
        "date": "2019-10-25 10:13",
        "category": "娱乐",
        "author_name": "百么西娱乐",
        "url": "http:\/\/mini.eastday.com\/mobile\/191025101318451.html",
        "thumbnail_pic_s": "http:\/\/02imgmini.eastday.com\/mobile\/20191025\/2019102510_56577606f8b2417685658ef1ce5c221f_7437_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s02": "http:\/\/02imgmini.eastday.com\/mobile\/20191025\/2019102510_7b57d5df79dc44d5832594974f094cc6_4612_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s03": "http:\/\/02imgmini.eastday.com\/mobile\/20191025\/2019102510_72340598e95a4f58b14b845a0082f557_8358_cover_mwpm_03200403.jpg"
      },
      {
        "uniquekey": "ae0ec6fec96e8bdfa76462db21c8293f",
        "title": "同样是饰演嫦娥的古装美人,最后这位究竟是哪来的自信演嫦娥?",
        "date": "2019-10-25 10:12",
        "category": "娱乐",
        "author_name": "娱乐日志菌",
        "url": "http:\/\/mini.eastday.com\/mobile\/191025101243361.html",
        "thumbnail_pic_s": "http:\/\/04imgmini.eastday.com\/mobile\/20191025\/20191025101243_ef462038c6a6725a5367d2353fb6de35_2_mwpm_03200403.jpg",
        "thumbnail_pic_s02": "http:\/\/04imgmini.eastday.com\/mobile\/20191025\/20191025101243_ef462038c6a6725a5367d2353fb6de35_4_mwpm_03200403.jpg",
        "thumbnail_pic_s03": "http:\/\/04imgmini.eastday.com\/mobile\/20191025\/20191025101243_ef462038c6a6725a5367d2353fb6de35_1_mwpm_03200403.jpg"
      },
      {
        "uniquekey": "d1747e0e42d1a0cee6ae4af08568a0d8",
        "title": "《甄嬛传》甄嬛送安陵容的东西,其中一件很致命,是她失宠开端",
        "date": "2019-10-25 10:12",
        "category": "娱乐",
        "author_name": "妖麟娱乐",
        "url": "http:\/\/mini.eastday.com\/mobile\/191025101225662.html",
        "thumbnail_pic_s": "http:\/\/08imgmini.eastday.com\/mobile\/20191025\/2019102510_08d5df445df34d5da59e926d0f373cf8_9761_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s02": "http:\/\/08imgmini.eastday.com\/mobile\/20191025\/2019102510_51a7ce851c634036aadf96cd1caa4cee_2055_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s03": "http:\/\/08imgmini.eastday.com\/mobile\/20191025\/2019102510_d5da170ca7c442af81ecefbc5b7f4e11_1952_cover_mwpm_03200403.jpg"
      },
      {
        "uniquekey": "18b1aff37b0878a2feec253bbb3f1f16",
        "title": "《欢乐颂》里令人惊艳的配角,《琅琊榜》中依然精彩!",
        "date": "2019-10-25 10:12",
        "category": "娱乐",
        "author_name": "洪洪热点报",
        "url": "http:\/\/mini.eastday.com\/mobile\/191025101213050.html",
        "thumbnail_pic_s": "http:\/\/06imgmini.eastday.com\/mobile\/20191025\/2019102510_6628121239ba44cb98d46374d4b6289c_2894_mwpm_03200403.jpg",
        "thumbnail_pic_s02": "http:\/\/06imgmini.eastday.com\/mobile\/20191025\/2019102510_3a8c7dedf85d42dda243082ffa6df68c_6879_mwpm_03200403.jpg",
        "thumbnail_pic_s03": "http:\/\/06imgmini.eastday.com\/mobile\/20191025\/2019102510_b02fe3146f6b423091ef72d0655e950d_3345_mwpm_03200403.jpg"
      },
      {
        "uniquekey": "a2f48a8606f15be042750c5e663ad53b",
        "title": "当年《还珠格》“小鸽子”,为完成学业退圈,结婚两年后突然出家",
        "date": "2019-10-25 10:10",
        "category": "娱乐",
        "author_name": "听歌打娱",
        "url": "http:\/\/mini.eastday.com\/mobile\/191025101035851.html",
        "thumbnail_pic_s": "http:\/\/06imgmini.eastday.com\/mobile\/20191025\/2019102510_2ffcc156ebfd4b47916e542a1e93975b_6152_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s02": "http:\/\/06imgmini.eastday.com\/mobile\/20191025\/2019102510_64ce1e7cbb7445598372af70ac2c2eae_2137_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s03": "http:\/\/06imgmini.eastday.com\/mobile\/20191025\/2019102510_08b40ff37867439c81a08ff094bd8b90_8967_cover_mwpm_03200403.jpg"
      },
      {
        "uniquekey": "3949b889a62d7aef1fb970c561b44d75",
        "title": "《甄嬛传》皇上明知甄嬛是冤枉,为何不帮她反驳?考虑的比较长远",
        "date": "2019-10-25 10:10",
        "category": "娱乐",
        "author_name": "妖麟娱乐",
        "url": "http:\/\/mini.eastday.com\/mobile\/191025101031387.html",
        "thumbnail_pic_s": "http:\/\/06imgmini.eastday.com\/mobile\/20191025\/2019102510_b0ad39f6bcbd4cf1bddb82cedbc2e343_2897_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s02": "http:\/\/06imgmini.eastday.com\/mobile\/20191025\/2019102510_6af2ae19994e4c469aa2bddac8572437_6391_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s03": "http:\/\/06imgmini.eastday.com\/mobile\/20191025\/2019102510_e0a8172dc8a44133ac97c1c00f217d55_4894_cover_mwpm_03200403.jpg"
      },
      {
        "uniquekey": "7539e8d3116163491a1d9ca1484b122e",
        "title": "从超模到豪门阔太,奚梦瑶的速度也太快了吧?",
        "date": "2019-10-25 10:10",
        "category": "娱乐",
        "author_name": "明星粉丝团",
        "url": "http:\/\/mini.eastday.com\/mobile\/191025101014087.html",
        "thumbnail_pic_s": "http:\/\/04imgmini.eastday.com\/mobile\/20191025\/2019102510_5af233a09c964b559f65d5f74f9f81e5_9324_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s02": "http:\/\/04imgmini.eastday.com\/mobile\/20191025\/2019102510_d6e234986fa744998c246c8f118fbf4f_5113_cover_mwpm_03200403.jpg",
        "thumbnail_pic_s03": "http:\/\/04imgmini.eastday.com\/mobile\/20191025\/2019102510_1e05de4f74874e5d9b910780fcdedf94_8324_cover_mwpm_03200403.jpg"
      }
    ]
  },
  "error_code": 0
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值