mvc+xrecyclerview+SQL+自定义控件

效果图


第二个页面


代码:



主页面

package com.example.yk_lx1;

import android.animation.Animator;
import android.animation.AnimatorListenerAdapter;
import android.animation.ObjectAnimator;
import android.annotation.SuppressLint;
import android.content.Intent;
import android.graphics.Color;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.DisplayMetrics;
import android.view.View;
import android.widget.TextView;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity implements View.OnClickListener{
    private int i=0;
    private com.example.yk_lx1.tixing tixing;
    private int widthPixels;
    private int heightPixels;
    private int y;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        findViewById(R.id.jia).setOnClickListener(this);
        tixing = findViewById(R.id.tixing01);
        //用DisplayMetrics获取屏幕宽高
        DisplayMetrics displayMetrics = new DisplayMetrics();
        getWindowManager().getDefaultDisplay().getMetrics(displayMetrics);
        //赋值
        widthPixels = displayMetrics.widthPixels;
        heightPixels = displayMetrics.heightPixels;
    }

    @Override
    public void onClick(View view) {
        switch (view.getId()){
            case R.id.jia:
                i++;
                final TextView textView = new TextView(MainActivity.this);
                textView.setText(i+"");
                //判断接口后面拼接的值不能大于十
                if (i<10) {
                    textView.setTag("0"+i);
                }else
                {
                    textView.setTag(i);
                }
                textView.setHeight(heightPixels/30);
                textView.setWidth(widthPixels/3);
                if (i%3==0){
                    textView.setBackgroundColor(Color.RED);
                }else if (i%3==1)
                {
                    textView.setBackgroundColor(Color.YELLOW);
                }else
                {
                    textView.setBackgroundColor(Color.BLUE);
                }
                tixing.addView(textView);
                tianjiadonghua(textView);
                //长按删除
                textView.setOnLongClickListener(new View.OnLongClickListener() {
                    @Override
                    public boolean onLongClick(View v) {
                        //删除动画:透明
                        ObjectAnimator alpha = ObjectAnimator.ofFloat(textView, "alpha", 1.0f, 0.0f);
                        alpha.setDuration(3000);
                        alpha.start();
                        //调用方法,让动画执行后再执行删除
                        alpha.addListener(new AnimatorListenerAdapter() {
                            @Override
                            public void onAnimationEnd(Animator animation) {
                                tixing.removeView(textView);
                            }
                        });
                        return true;
                    }
                });
                //点击条目跳转传值
                textView.setOnClickListener(new View.OnClickListener() {
                    @Override
                    public void onClick(View view) {
                        Intent intent = new Intent(MainActivity.this,Main2Activity.class);
                        intent.putExtra("aaa",textView.getTag()+"");
                        Toast.makeText(MainActivity.this,textView+"",Toast.LENGTH_SHORT).show();
                        startActivity(intent);
                    }
                });
                break;
        }
    }
    //添加动画
    private void tianjiadonghua(TextView textView) {
        ObjectAnimator translationX = ObjectAnimator.ofFloat(textView, "translationX", -800f,0);
        translationX.setDuration(1000);
        translationX.start();

    }
}
 

第二个图片

package com.example.yk_lx1;

import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.support.v7.widget.LinearLayoutManager;
import android.util.Log;
import android.view.View;
import android.widget.Toast;

import com.google.gson.Gson;
import com.jcodecraeer.xrecyclerview.XRecyclerView;

import java.util.ArrayList;
import java.util.List;

public class Main2Activity extends AppCompatActivity {

    private XRecyclerView xrecy;
    private SJKshujv sjKshujv;
    private String aaa;
    private String url;
    private int i=1;
    private int p=2;
    private  int pp=0;
    //定义一个大集合
    private List<user.DataBean> list = new ArrayList<user.DataBean>();
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main2);
        //使用的时候只要在判断中调用静态方法就可以,传入参数是个上下文,记得添加权限
//        if (Panduan.NetUtils.isNetConnected(this)){
//            //网络连接,写入正常的运行代码
//
//        }else{
//            //跳转到网络设置界面
//            Intent wifiSettingsIntent=new Intent("android.settings.WIFI_SETTINGS");
//            startActivity(wifiSettingsIntent);
//
//        }
        initView();
        //有网络时执行代码
        if (wangluo.isConn(this)){
            Toast.makeText(this,"网络正常",Toast.LENGTH_SHORT).show();
            zhuan();
        }else{//没有网络时加载有网时缓存的数据
            pp=10;
            wangluo.showNoNetWorkDlg(this);
            String shuju = sjKshujv.queryData("shuju");
            jiexi(shuju);
        }
        shuaxin();
    }

    private void shuaxin() {
        xrecy.setLoadingListener(new XRecyclerView.LoadingListener() {
            @Override
            public void onRefresh() {
                if (pp == 10){
                    Toast.makeText(Main2Activity.this,"没有网络",Toast.LENGTH_SHORT).show();
                    xrecy.refreshComplete();
                }else{
                    p = 2;
                    Toast.makeText(Main2Activity.this,"下拉刷新",Toast.LENGTH_SHORT).show();
                    zhuan();
                }
            }

            @Override
            public void onLoadMore() {
                if (pp == 10){
                    Toast.makeText(Main2Activity.this,"没有网络",Toast.LENGTH_SHORT).show();
                    xrecy.refreshComplete();
                }else{
                    p = 1;
                    pp = 0;
                    Toast.makeText(Main2Activity.this,"上拉加载",Toast.LENGTH_SHORT).show();
                    zhuan();
                }
            }
        });
    }


    private void zhuan() {
        okhttp getshu = okhttp.getshu();
        getshu.say(url, new okhttp.fun1() {
            @Override
            public void onres(String string) {
                jiexi(string);
            }
        });
    }
    //解析数据
    private void jiexi(String shuju) {
        //使用Gson解析
        Gson gson = new Gson();
        Log.i("zzz",3333+shuju);
        //拼接接口:
        //1.剪切数据
        String replace = shuju.replace("null(", "").replace(")", "");
        //2.赋值拼接
        sjKshujv.insertData("shuju",replace);
        //解析
        user user = gson.fromJson(replace, user.class);
        //放入list集合中
        List<user.DataBean> data = user.getData();
        //判断
        if (p == 2){
            //刷新大集合
            list.clear();
        }
        //实现局部刷新
        //把数据放入大集合中
        list.addAll(data);
        //适配器
        MyAdapter myAdapter = new MyAdapter(list, Main2Activity.this);
        xrecy.setAdapter(myAdapter);
        //布局适配
        xrecy.setLayoutManager(new LinearLayoutManager(Main2Activity.this));
        //判断
        if (p == 2){
            xrecy.refreshComplete();
        }else{
            xrecy.loadMoreComplete();
        }
    }


    private void initView() {
        //获取id
        xrecy = findViewById(R.id.xrecy);
        sjKshujv = new SJKshujv(Main2Activity.this);
        //接受第一个页面传过来的值
        Intent intent = getIntent();
        aaa = intent.getStringExtra("aaa");
        url="http://ttpc.dftoutiao.com/jsonpc/refresh?type=50"+aaa;
        //吐司一下
        Toast.makeText(this,aaa,Toast.LENGTH_SHORT).show();
    }
}
 

ok

package com.example.yk_lx1;

import android.os.Handler;
import android.telecom.Call;

import java.io.IOException;
import java.util.concurrent.TimeUnit;

import okhttp3.Callback;
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.Response;


/**
 * data:2018/05/31.
 * author : 殷成龙(Administrator)
 * function :
 */
public class okhttp {

    private static Handler mhandler;
    private final OkHttpClient ok;
    private static okhttp okhttp;

    private okhttp()
    {
        ok = new OkHttpClient.Builder()
                .connectTimeout(10, TimeUnit.SECONDS)
                .readTimeout(10, TimeUnit.SECONDS)
                .writeTimeout(10, TimeUnit.SECONDS)
                .build();
        mhandler = new Handler();
    }
    public static okhttp getshu()
    {
        if (okhttp==null) {
            okhttp = new okhttp();
        }
        return okhttp;
    }
    interface fun1
    {
        void onres(String string);
    }
    private static void onsuccess(final String string,final fun1 callback)
    {
        mhandler.post(new Runnable() {
            @Override
            public void run() {
                if (callback!=null)
                {
                    callback.onres(string);
                }
            }
        });
    }
    public void say(String url, final fun1 callback)
    {
        Request build = new Request.Builder().url(url).build();
        ok.newCall(build).enqueue(new Callback() {
            @Override
            public void onFailure(okhttp3.Call call, IOException e) {

            }

            @Override
            public void onResponse(okhttp3.Call call, Response response) throws IOException {
                onsuccess(response.body().string(),callback);
            }
        });
    }
}
 

网络判断类

package com.example.yk_lx1;

import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;


/**
 * data:2018/05/31.
 * author : 殷成龙(Administrator)
 * function :
 */

public class wangluo {
        /*
     * 判断网络连接是否已开
     * true 已打开  false 未打开
     * */
        public static boolean isConn(Context context){
            boolean bisConnFlag=false;
            ConnectivityManager conManager = (ConnectivityManager)context.getSystemService(Context.CONNECTIVITY_SERVICE);
            NetworkInfo network = conManager.getActiveNetworkInfo();
            if(network!=null){
                bisConnFlag=conManager.getActiveNetworkInfo().isAvailable();
            }
            return bisConnFlag;
        }

        /**
         * 当判断当前手机没有网络时选择是否打开网络设置
         * @param context
         */
        public static void showNoNetWorkDlg(final Context context) {
            AlertDialog.Builder builder = new AlertDialog.Builder(context);
            builder.setIcon(R.mipmap.ic_launcher)         //
                    .setTitle(R.string.app_name)            //
                    .setMessage("当前无网络").setPositiveButton("设置", new DialogInterface.OnClickListener() {

                @Override
                public void onClick(DialogInterface dialog, int which) {
                    // 跳转到系统的网络设置界面
                    Intent intent = null;
                    // 先判断当前系统版本
                    if(android.os.Build.VERSION.SDK_INT > 10){  // 3.0以上
                        intent = new Intent(android.provider.Settings.ACTION_WIRELESS_SETTINGS);
                    }else{
                        intent = new Intent();
                        intent.setClassName("com.android.settings", "com.android.settings.WirelessSettings");
                    }
                    context.startActivity(intent);

                }
            }).setNegativeButton("知道了", null).show();

        }
}
 

创建数据库类

package com.example.yk_lx1;

import android.content.Context;
import android.database.DatabaseErrorHandler;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;

/**
 * data:2018/05/31.
 * author : 殷成龙(Administrator)
 * function :
 */

public class ShuJvKu extends SQLiteOpenHelper {
    public ShuJvKu(Context context) {
        super(context, "mydb", null, 1);
    }

    //创建数据库时被回调-只会回调一次
    //一般用于创建数据表,初使化表中的数据
    @Override
    public void onCreate(SQLiteDatabase sqLiteDatabase) {
        //创建了一个jsoncache数据表
        sqLiteDatabase.execSQL("create table jsoncache(id integer primary key autoincrement,urlpath text,jsondata text)");
    }
    //数据库版本升级时回调
    @Override
    public void onUpgrade(SQLiteDatabase sqLiteDatabase, int oldVersion, int newVersion) {
    }
}
 

数据库添加数据类

package com.example.yk_lx1;

import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.util.Log;

/**
 * data:2018/05/31.
 * author : 殷成龙(Administrator)
 * function :
 */

public class SJKshujv {


    private final ShuJvKu shuJvKu;

    public SJKshujv(Context context) {
        shuJvKu = new ShuJvKu(context);
    }

    //添加方法
    public void insertData(String path,String json){
        //得到一个可读可写的数据库
        SQLiteDatabase database=shuJvKu.getWritableDatabase();

        //先删除,再插入
        database.delete("jsoncache"," urlpath=?",new String[]{path});

        ContentValues contentValues=new ContentValues();
        //key:一定要是数据表中的列名
        contentValues.put("urlpath",path);
        contentValues.put("jsondata",json);


        //第二个参数:强制要插入null值的列的列名
        long rowid = database.insert("jsoncache", null, contentValues);
        Log.d("zzz","插入的数据rowid:"+rowid);
    }
    //查询方法,根据url来查询数据
    public  String queryData(String path){
        Log.d("zzz","---正在查询数据---");
        String data="";
        SQLiteDatabase db = shuJvKu.getReadableDatabase();
        //查询
        Cursor cursor = db.query("jsoncache", null, "urlpath=?", new String[]{path}, null, null, null);
        while (cursor.moveToNext()){
            data=cursor.getString(cursor.getColumnIndex("jsondata"));
        }
        return data;

    }
}
 

第一个页面布局类

package com.example.yk_lx1;

import android.content.Context;
import android.util.AttributeSet;
import android.view.View;
import android.view.ViewGroup;


/**
 * data:2018/05/31.
 * author : 殷成龙(Administrator)
 * function :
 */
public class tixing extends ViewGroup{

    private int measuredWidth;

    public tixing(Context context) {
        super(context);
    }

    public tixing(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public tixing(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        measuredWidth = getMeasuredWidth();
        //测量子View的宽高,只有ViewFroup中有这个方法,直接继承自View是没有这个方法的
        measureChildren(widthMeasureSpec,heightMeasureSpec);

    }

    @Override
    protected void onLayout(boolean b, int i, int i1, int i2, int i3) {

        //拿到子控件的个数
        int childCount = getChildCount();
        //定义一个临时高度
        int startHeight=0;
        int startWidth=0;
        //循环遍历出每一个View
        for(int a=0;a<childCount;a++){
            View v = getChildAt(a);
            //给每一个view设置自己的位置  上  右  下  左
                v.layout(startWidth, startHeight, startWidth + v.getMeasuredWidth(), startHeight + v.getMeasuredHeight());
                startHeight += v.getMeasuredHeight();
                startWidth += v.getMeasuredWidth();
            if (startWidth>=measuredWidth) {
                startWidth=0;
            }

        }
    }
}
 

适配器类

package com.example.yk_lx1;

import android.content.Context;
import android.content.DialogInterface;
import android.support.v7.app.AlertDialog;
import android.support.v7.widget.RecyclerView;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;

import com.bumptech.glide.Glide;
import com.jcodecraeer.xrecyclerview.XRecyclerView;

import java.util.List;

/**
 * data:2018/05/31.
 * author : 殷成龙(Administrator)
 * function :
 */

public class MyAdapter extends XRecyclerView.Adapter<XRecyclerView.ViewHolder>{
    private List<user.DataBean> data;
    private Context context;
    //判断条目的
    private int image1=1;
    private int image3=2;
    public MyAdapter(List<user.DataBean> data, Context context) {
        this.data = data;
        this.context = context;
    }

    //加载布局
    @Override
    public XRecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
        //第一个布局
        View view = View.inflate(context, R.layout.lv, null);
        ViewHolder holder = new ViewHolder(view);
        //第二个布局
        View view1 = View.inflate(context, R.layout.lv2, null);
        ViewHolder viewHolder = new ViewHolder(view1);
        //判断布局
        if (viewType == image1){
            return holder;
        }else{
            return viewHolder;
        }
    }

    //删除框
    @Override
    public void onBindViewHolder(XRecyclerView.ViewHolder holder, final int position) {
        holder.itemView.setOnLongClickListener(new View.OnLongClickListener() {
            @Override
            public boolean onLongClick(View v) {
                //使用AlertDialog.Builder创建一个提示框
                AlertDialog.Builder builder = new AlertDialog.Builder(context);
                //提示框提示
                builder.setMessage("是否删除?");
                //确定按钮
                builder.setNegativeButton("是", new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialog, int which) {
                        //根据id删除条目
                        data.remove(position);
                        //局部刷新
                        notifyItemRemoved(which);
                        //刷新
                        notifyDataSetChanged();

                    }
                });
                //取消按钮
                builder.setPositiveButton("否",null);
                //展示
                builder.show();
                return false;
            }
        });

        //获取多条目数据
        int type = getItemViewType(position);
        //根据type值判断多条目展示的数据
        if (type == image1){
            //获取ViewHolder
            ViewHolder holder1 = (ViewHolder) holder;
            //展示数据
            holder1.tv.setText(data.get(position).getBrief());
            //展示图片
            Glide.with(context).load(data.get(position).getMiniimg().get(0).getSrc()).into(holder1.image1);
        }else{//第二种布局
            //获取第二种布局
            ViewHolder holder1 = (ViewHolder) holder;
            //展示数据
            holder1.tv1.setText(data.get(position).getBrief());
            //展示图片
            Glide.with(context).load(data.get(position).getLbimg().get(0).getSrc()).into(holder1.image01);
            Glide.with(context).load(data.get(position).getMiniimg().get(0).getSrc()).into(holder1.image02);
            Glide.with(context).load(data.get(position).getMiniimg02().get(0).getSrc()).into(holder1.image03);
        }
    }

    @Override
    public int getItemCount() {
        return data.size();
    }
    //判断多条目一共有几个不同条目
    @Override
    public int getItemViewType(int position) {
        int size = data.get(position).getMiniimg().size();
        //根据数值判断
        if (size == 1){
            return image1;
        }else{
            return image3;
        }
    }

    //ViewHolder获取布局id
    class ViewHolder extends XRecyclerView.ViewHolder{
        private final TextView tv;
        private final ImageView image01;
        private final ImageView image02;
        private final ImageView image03;
        private final ImageView image1;
        private final TextView tv1;

        public ViewHolder(View itemView) {
            super(itemView);
            tv = itemView.findViewById(R.id.tv);
            tv1 = itemView.findViewById(R.id.tv1);
            image1 = itemView.findViewById(R.id.image1);
            image01 = itemView.findViewById(R.id.image01);
            image02 = itemView.findViewById(R.id.image02);
            image03 = itemView.findViewById(R.id.image03);
        }
    }
}
 

数据类

package com.example.yk_lx1;

import java.util.List;


/**
 * data:2018/05/31.
 * author : 殷成龙(Administrator)
 * function :
 */

public class user {

    /**
     * stat : 1
     * data : [{"brief":"中国男篮蓝队对决伊朗辽篮外租小将或在家乡父老面前一战成名2018年5月30日晚19时35分,中国男篮蓝队将在沈","customtag":[],"daoPaiKey":"","date":"2018-05-30 15:24","hotnews":"0","isnxw":"0","isrecom":"0","isvideo":"0","kw":[],"lbimg":[{"alt":"","describe":"","idx":1,"imgheight":275,"imgname":"20180530152409_ea88531eec3bcb29ca1988524957b956_5_mwpl_05500201.jpg","imgwidth":550,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530152409_ea88531eec3bcb29ca1988524957b956_5_mwpl_05500201.jpg"}],"miniimg":[{"alt":"","describe":"","idx":1,"imgheight":240,"imgname":"20180530152409_ea88531eec3bcb29ca1988524957b956_5_mwpm_03200403.jpg","imgwidth":320,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530152409_ea88531eec3bcb29ca1988524957b956_5_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":2,"imgheight":240,"imgname":"20180530152409_ea88531eec3bcb29ca1988524957b956_3_mwpm_03200403.jpg","imgwidth":320,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530152409_ea88531eec3bcb29ca1988524957b956_3_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":3,"imgheight":240,"imgname":"20180530152409_ea88531eec3bcb29ca1988524957b956_1_mwpm_03200403.jpg","imgwidth":320,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530152409_ea88531eec3bcb29ca1988524957b956_1_mwpm_03200403.jpg"}],"miniimg02":[{"alt":"","describe":"","idx":1,"imgheight":180,"imgname":"20180530152409_ea88531eec3bcb29ca1988524957b956_5_mwpm_03201609.jpg","imgwidth":320,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530152409_ea88531eec3bcb29ca1988524957b956_5_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":2,"imgheight":180,"imgname":"20180530152409_ea88531eec3bcb29ca1988524957b956_3_mwpm_03201609.jpg","imgwidth":320,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530152409_ea88531eec3bcb29ca1988524957b956_3_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":3,"imgheight":180,"imgname":"20180530152409_ea88531eec3bcb29ca1988524957b956_1_mwpm_03201609.jpg","imgwidth":320,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530152409_ea88531eec3bcb29ca1988524957b956_1_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":4,"imgheight":180,"imgname":"20180530152409_ea88531eec3bcb29ca1988524957b956_4_mwpm_03201609.jpg","imgwidth":320,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530152409_ea88531eec3bcb29ca1988524957b956_4_mwpm_03201609.jpg"}],"miniimg_size":"3","pkey":[],"recommendtype":"-1","rowkey":"9223370509189726098","source":"晚池","tag":[],"topic":"中国男篮蓝队对决伊朗 辽篮外租小将或在家乡父老面前一战成名","type":"tiyu","url":"180530152409709.html","urlpv":"0"},{"brief":"中国男篮蓝队跟伊朗男篮的热身赛即将开打,而大战之前一则花边新闻刷爆了朋友圈:一个粉丝只有1万多的搜狐记者吴頔在","customtag":[],"daoPaiKey":"","date":"2018-05-30 15:01","hotnews":"0","isnxw":"0","isrecom":"0","isvideo":"0","kw":[],"lbimg":[{"alt":"","describe":"","idx":1,"imgheight":204,"imgname":"20180530_9c4beb443e7841532379a24a255e425d_cover_mwpl_05500201.jpg","imgwidth":408,"src":"http://06.imgmini.eastday.com/mobile/20180530/20180530_9c4beb443e7841532379a24a255e425d_cover_mwpl_05500201.jpg"}],"miniimg":[{"alt":"","describe":"","idx":1,"imgheight":204,"imgname":"20180530_9c4beb443e7841532379a24a255e425d_cover_mwpm_03200403.jpg","imgwidth":272,"src":"http://06.imgmini.eastday.com/mobile/20180530/20180530_9c4beb443e7841532379a24a255e425d_cover_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":2,"imgheight":240,"imgname":"20180530_80f9b9a6e63595eced0633384e80f415_cover_mwpm_03200403.jpg","imgwidth":320,"src":"http://06.imgmini.eastday.com/mobile/20180530/20180530_80f9b9a6e63595eced0633384e80f415_cover_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":3,"imgheight":240,"imgname":"20180530_05abd3c225c25552684a4dc699c63a1a_cover_mwpm_03200403.jpg","imgwidth":320,"src":"http://06.imgmini.eastday.com/mobile/20180530/20180530_05abd3c225c25552684a4dc699c63a1a_cover_mwpm_03200403.jpg"}],"miniimg02":[{"alt":"","describe":"","idx":1,"imgheight":180,"imgname":"20180530_9c4beb443e7841532379a24a255e425d_cover_mwpm_03201609.jpg","imgwidth":320,"src":"http://06.imgmini.eastday.com/mobile/20180530/20180530_9c4beb443e7841532379a24a255e425d_cover_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":2,"imgheight":180,"imgname":"20180530_80f9b9a6e63595eced0633384e80f415_cover_mwpm_03201609.jpg","imgwidth":320,"src":"http://06.imgmini.eastday.com/mobile/20180530/20180530_80f9b9a6e63595eced0633384e80f415_cover_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":3,"imgheight":180,"imgname":"20180530_05abd3c225c25552684a4dc699c63a1a_cover_mwpm_03201609.jpg","imgwidth":320,"src":"http://06.imgmini.eastday.com/mobile/20180530/20180530_05abd3c225c25552684a4dc699c63a1a_cover_mwpm_03201609.jpg"}],"miniimg_size":"3","pkey":[],"recommendtype":"-1","rowkey":"9223370509191070397","source":"德译洋洋","tag":[],"topic":"打了这么多年职业队还在国家队笑嘻嘻,他被杜锋批评并不冤枉!","type":"tiyu","url":"180530150145410.html","urlpv":"0"},{"brief":"4月29日,男篮红蓝两队开始集结北京集训。经过一个月的训练,5月30日今晚男篮蓝队将率先出战热身对手是亚洲劲旅","customtag":[],"daoPaiKey":"","date":"2018-05-30 14:57","hotnews":"0","isnxw":"0","isrecom":"0","isvideo":"0","kw":[],"lbimg":[{"alt":"","describe":"","idx":1,"imgheight":275,"imgname":"20180530_0e29f5f668fa8d23f103c78ff37ad716_mwpl_05500201.jpg","imgwidth":550,"src":"http://04.imgmini.eastday.com/mobile/20180530/20180530_0e29f5f668fa8d23f103c78ff37ad716_mwpl_05500201.jpg"}],"miniimg":[{"alt":"","describe":"","idx":1,"imgheight":240,"imgname":"20180530_0e29f5f668fa8d23f103c78ff37ad716_mwpm_03200403.jpg","imgwidth":320,"src":"http://04.imgmini.eastday.com/mobile/20180530/20180530_0e29f5f668fa8d23f103c78ff37ad716_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":2,"imgheight":240,"imgname":"20180530_68f347f161ef7efaf903bc9958c6ef2c_mwpm_03200403.jpg","imgwidth":320,"src":"http://04.imgmini.eastday.com/mobile/20180530/20180530_68f347f161ef7efaf903bc9958c6ef2c_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":3,"imgheight":240,"imgname":"20180530_f92fc6c074e995c494718fb7a002b008_mwpm_03200403.jpg","imgwidth":320,"src":"http://04.imgmini.eastday.com/mobile/20180530/20180530_f92fc6c074e995c494718fb7a002b008_mwpm_03200403.jpg"}],"miniimg02":[{"alt":"","describe":"","idx":1,"imgheight":180,"imgname":"20180530_0e29f5f668fa8d23f103c78ff37ad716_mwpm_03201609.jpg","imgwidth":320,"src":"http://04.imgmini.eastday.com/mobile/20180530/20180530_0e29f5f668fa8d23f103c78ff37ad716_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":2,"imgheight":180,"imgname":"20180530_68f347f161ef7efaf903bc9958c6ef2c_mwpm_03201609.jpg","imgwidth":320,"src":"http://04.imgmini.eastday.com/mobile/20180530/20180530_68f347f161ef7efaf903bc9958c6ef2c_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":3,"imgheight":180,"imgname":"20180530_f92fc6c074e995c494718fb7a002b008_mwpm_03201609.jpg","imgwidth":320,"src":"http://04.imgmini.eastday.com/mobile/20180530/20180530_f92fc6c074e995c494718fb7a002b008_mwpm_03201609.jpg"}],"miniimg_size":"3","pkey":[],"recommendtype":"-1","rowkey":"9223370509191347629","source":"璞玉话体坛","tag":[],"topic":"疑似不合?男篮训练中主帅杜峰发飙怒斥高尚 两人曾有不合传闻","type":"tiyu","url":"180530145708178.html","urlpv":"0"},{"brief":"男篮蓝队凤凰体育讯,北京时间5月30日,中国男篮蓝队将在辽宁省体育馆与来访的伊朗国家队进行球队今夏备战的第一场","customtag":[],"daoPaiKey":"","date":"2018-05-30 14:54","hotnews":"0","isnxw":"0","isrecom":"0","isvideo":"0","kw":[],"lbimg":[{"alt":"","describe":"","idx":1,"imgheight":262,"imgname":"20180530145447_4739db5d4b1802d6b8aa576cb3a14df9_1_mwpl_05500201.jpg","imgwidth":524,"src":"http://02.imgmini.eastday.com/mobile/20180530/20180530145447_4739db5d4b1802d6b8aa576cb3a14df9_1_mwpl_05500201.jpg"}],"miniimg":[{"alt":"","describe":"","idx":1,"imgheight":240,"imgname":"20180530145447_4739db5d4b1802d6b8aa576cb3a14df9_1_mwpm_03200403.jpg","imgwidth":320,"src":"http://02.imgmini.eastday.com/mobile/20180530/20180530145447_4739db5d4b1802d6b8aa576cb3a14df9_1_mwpm_03200403.jpg"}],"miniimg02":[{"alt":"","describe":"","idx":1,"imgheight":180,"imgname":"20180530145447_4739db5d4b1802d6b8aa576cb3a14df9_1_mwpm_03201609.jpg","imgwidth":320,"src":"http://02.imgmini.eastday.com/mobile/20180530/20180530145447_4739db5d4b1802d6b8aa576cb3a14df9_1_mwpm_03201609.jpg"}],"miniimg_size":"1","pkey":[],"recommendtype":"-1","rowkey":"9223370509191488577","source":"赛场速递","tag":[],"topic":"球迷要求退票?男篮战伊朗辽篮球员继续休假不登场","type":"tiyu","url":"180530145447230.html","urlpv":"0"},{"brief":"杜锋竟然一反常态地怒斥昔日爱徒高尚:别让我当着全国媒体的面把你撵出去!北京时间5月30日,中国男篮蓝队将与伊朗","customtag":[],"daoPaiKey":"","date":"2018-05-30 14:51","hotnews":"0","isnxw":"0","isrecom":"0","isvideo":"0","kw":[],"lbimg":[{"alt":"","describe":"","idx":1,"imgheight":275,"imgname":"20180530145115_6eb343cec57895ceba3163c4f45076f0_2_mwpl_05500201.jpg","imgwidth":550,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530145115_6eb343cec57895ceba3163c4f45076f0_2_mwpl_05500201.jpg"}],"miniimg":[{"alt":"","describe":"","idx":1,"imgheight":240,"imgname":"20180530145115_6eb343cec57895ceba3163c4f45076f0_2_mwpm_03200403.jpg","imgwidth":320,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530145115_6eb343cec57895ceba3163c4f45076f0_2_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":2,"imgheight":240,"imgname":"20180530145115_6eb343cec57895ceba3163c4f45076f0_1_mwpm_03200403.jpg","imgwidth":320,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530145115_6eb343cec57895ceba3163c4f45076f0_1_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":3,"imgheight":240,"imgname":"20180530145115_6eb343cec57895ceba3163c4f45076f0_3_mwpm_03200403.jpg","imgwidth":320,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530145115_6eb343cec57895ceba3163c4f45076f0_3_mwpm_03200403.jpg"}],"miniimg02":[{"alt":"","describe":"","idx":1,"imgheight":180,"imgname":"20180530145115_6eb343cec57895ceba3163c4f45076f0_2_mwpm_03201609.jpg","imgwidth":320,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530145115_6eb343cec57895ceba3163c4f45076f0_2_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":2,"imgheight":180,"imgname":"20180530145115_6eb343cec57895ceba3163c4f45076f0_1_mwpm_03201609.jpg","imgwidth":320,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530145115_6eb343cec57895ceba3163c4f45076f0_1_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":3,"imgheight":180,"imgname":"20180530145115_6eb343cec57895ceba3163c4f45076f0_3_mwpm_03201609.jpg","imgwidth":320,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530145115_6eb343cec57895ceba3163c4f45076f0_3_mwpm_03201609.jpg"}],"miniimg_size":"3","pkey":[],"recommendtype":"-1","rowkey":"9223370509191699946","source":"大嘴巴爵爷","tag":[],"topic":"什么仇怨?杜锋竟当媒体面怒斥周琦前队友 网友:你咋不骂于德豪","type":"tiyu","url":"180530145115861.html","urlpv":"0"},{"brief":"北京时间5月30日晚7点半,中国男篮蓝队即将在辽宁体育馆迎来与伊朗男篮的热身赛,作为联赛结束后的首场国家队比赛","customtag":[],"daoPaiKey":"","date":"2018-05-30 14:51","hotnews":"0","isnxw":"0","isrecom":"0","isvideo":"0","kw":[],"lbimg":[{"alt":"","describe":"","idx":1,"imgheight":275,"imgname":"20180530145111_1fa78adb5fc83540f74f6a40985398ed_2_mwpl_05500201.jpg","imgwidth":550,"src":"http://03.imgmini.eastday.com/mobile/20180530/20180530145111_1fa78adb5fc83540f74f6a40985398ed_2_mwpl_05500201.jpg"}],"miniimg":[{"alt":"","describe":"","idx":1,"imgheight":240,"imgname":"20180530145111_1fa78adb5fc83540f74f6a40985398ed_2_mwpm_03200403.jpg","imgwidth":320,"src":"http://03.imgmini.eastday.com/mobile/20180530/20180530145111_1fa78adb5fc83540f74f6a40985398ed_2_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":2,"imgheight":240,"imgname":"20180530145111_1fa78adb5fc83540f74f6a40985398ed_1_mwpm_03200403.jpg","imgwidth":320,"src":"http://03.imgmini.eastday.com/mobile/20180530/20180530145111_1fa78adb5fc83540f74f6a40985398ed_1_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":3,"imgheight":240,"imgname":"20180530145111_1fa78adb5fc83540f74f6a40985398ed_3_mwpm_03200403.jpg","imgwidth":320,"src":"http://03.imgmini.eastday.com/mobile/20180530/20180530145111_1fa78adb5fc83540f74f6a40985398ed_3_mwpm_03200403.jpg"}],"miniimg02":[{"alt":"","describe":"","idx":1,"imgheight":180,"imgname":"20180530145111_1fa78adb5fc83540f74f6a40985398ed_2_mwpm_03201609.jpg","imgwidth":320,"src":"http://03.imgmini.eastday.com/mobile/20180530/20180530145111_1fa78adb5fc83540f74f6a40985398ed_2_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":2,"imgheight":180,"imgname":"20180530145111_1fa78adb5fc83540f74f6a40985398ed_1_mwpm_03201609.jpg","imgwidth":320,"src":"http://03.imgmini.eastday.com/mobile/20180530/20180530145111_1fa78adb5fc83540f74f6a40985398ed_1_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":3,"imgheight":180,"imgname":"20180530145111_1fa78adb5fc83540f74f6a40985398ed_3_mwpm_03201609.jpg","imgwidth":320,"src":"http://03.imgmini.eastday.com/mobile/20180530/20180530145111_1fa78adb5fc83540f74f6a40985398ed_3_mwpm_03201609.jpg"}],"miniimg_size":"3","pkey":[],"recommendtype":"-1","rowkey":"9223370509191704173","source":"洛伊的体育天地","tag":[],"topic":"今晚!男篮颜值担当或成杜锋奇兵,他与辽篮低调哥乃顶尖3D球星?","type":"tiyu","url":"180530145111634.html","urlpv":"0"},{"brief":"虎扑5月30日讯中国篮协下发了2018-19赛季WCBA联赛竞赛规程,联赛将于2018年10月20日开打,体测","customtag":[],"daoPaiKey":"","date":"2018-05-30 14:38","hotnews":"0","isnxw":"0","isrecom":"0","isvideo":"0","kw":[],"lbimg":[{"alt":"","describe":"","idx":1,"imgheight":204,"imgname":"20180530143837_6e4532260817d65502e9015610511aef_1_mwpl_05500201.jpg","imgwidth":408,"src":"http://00.imgmini.eastday.com/mobile/20180530/20180530143837_6e4532260817d65502e9015610511aef_1_mwpl_05500201.jpg"}],"miniimg":[{"alt":"","describe":"","idx":1,"imgheight":204,"imgname":"20180530143837_6e4532260817d65502e9015610511aef_1_mwpm_03200403.jpg","imgwidth":272,"src":"http://00.imgmini.eastday.com/mobile/20180530/20180530143837_6e4532260817d65502e9015610511aef_1_mwpm_03200403.jpg"}],"miniimg02":[{"alt":"","describe":"","idx":1,"imgheight":180,"imgname":"20180530143837_6e4532260817d65502e9015610511aef_1_mwpm_03201609.jpg","imgwidth":320,"src":"http://00.imgmini.eastday.com/mobile/20180530/20180530143837_6e4532260817d65502e9015610511aef_1_mwpm_03201609.jpg"}],"miniimg_size":"1","pkey":[],"recommendtype":"-1","rowkey":"9223370509192458334","source":"虎扑体育","tag":[],"topic":"篮协公布 WCBA 竞赛规程:10 月 20 日开战","type":"tiyu","url":"180530143837473.html","urlpv":"0"},{"brief":"\u201c国家队\u201d这三个字,对于山东男篮主力中锋陶汉林来讲,既是一种荣誉和自豪,同时又充满了失落与无奈。这是陶汉林的第","customtag":[],"daoPaiKey":"","date":"2018-05-30 14:22","hotnews":"0","isnxw":"0","isrecom":"0","isvideo":"0","kw":[],"lbimg":[{"alt":"","describe":"","idx":1,"imgheight":275,"imgname":"20180530_090304a6446765025bb2509686c5897b_mwpl_05500201.jpg","imgwidth":550,"src":"http://03.imgmini.eastday.com/mobile/20180530/20180530_090304a6446765025bb2509686c5897b_mwpl_05500201.jpg"}],"miniimg":[{"alt":"","describe":"","idx":1,"imgheight":240,"imgname":"20180530_090304a6446765025bb2509686c5897b_mwpm_03200403.jpg","imgwidth":320,"src":"http://03.imgmini.eastday.com/mobile/20180530/20180530_090304a6446765025bb2509686c5897b_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":2,"imgheight":240,"imgname":"20180530_c90dfb5250fc880588fc63db685616f3_mwpm_03200403.jpg","imgwidth":320,"src":"http://03.imgmini.eastday.com/mobile/20180530/20180530_c90dfb5250fc880588fc63db685616f3_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":3,"imgheight":240,"imgname":"20180530_5d5baa400033c1ea88df8a7f8fe02df4_mwpm_03200403.jpg","imgwidth":320,"src":"http://03.imgmini.eastday.com/mobile/20180530/20180530_5d5baa400033c1ea88df8a7f8fe02df4_mwpm_03200403.jpg"}],"miniimg02":[{"alt":"","describe":"","idx":1,"imgheight":180,"imgname":"20180530_090304a6446765025bb2509686c5897b_mwpm_03201609.jpg","imgwidth":320,"src":"http://03.imgmini.eastday.com/mobile/20180530/20180530_090304a6446765025bb2509686c5897b_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":2,"imgheight":180,"imgname":"20180530_c90dfb5250fc880588fc63db685616f3_mwpm_03201609.jpg","imgwidth":320,"src":"http://03.imgmini.eastday.com/mobile/20180530/20180530_c90dfb5250fc880588fc63db685616f3_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":3,"imgheight":180,"imgname":"20180530_5d5baa400033c1ea88df8a7f8fe02df4_mwpm_03201609.jpg","imgwidth":320,"src":"http://03.imgmini.eastday.com/mobile/20180530/20180530_5d5baa400033c1ea88df8a7f8fe02df4_mwpm_03201609.jpg"}],"miniimg_size":"3","pkey":[],"recommendtype":"-1","rowkey":"9223370509193449409","source":"鸵鸟体育","tag":[],"topic":"CBA\u201c扣篮王\u201d四起四落,迎国家队最后机会,今晚战伊朗挑大梁","type":"tiyu","url":"180530142206398.html","urlpv":"0"},{"brief":"最近,国家蓝队在沈阳进行了一场公开训练课,由于与伊朗的对抗赛将是中国男篮在休赛期的第一次亮相,所以众多媒体悉数","customtag":[],"daoPaiKey":"","date":"2018-05-30 14:20","hotnews":"0","isnxw":"0","isrecom":"0","isvideo":"0","kw":[],"lbimg":[{"alt":"","describe":"","idx":1,"imgheight":275,"imgname":"20180530142022_4d58985ee94e1580e525c5df52498f66_3_mwpl_05500201.jpg","imgwidth":550,"src":"http://08.imgmini.eastday.com/mobile/20180530/20180530142022_4d58985ee94e1580e525c5df52498f66_3_mwpl_05500201.jpg"}],"miniimg":[{"alt":"","describe":"","idx":1,"imgheight":240,"imgname":"20180530142022_4d58985ee94e1580e525c5df52498f66_3_mwpm_03200403.jpg","imgwidth":320,"src":"http://08.imgmini.eastday.com/mobile/20180530/20180530142022_4d58985ee94e1580e525c5df52498f66_3_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":2,"imgheight":240,"imgname":"20180530142022_4d58985ee94e1580e525c5df52498f66_2_mwpm_03200403.jpg","imgwidth":320,"src":"http://08.imgmini.eastday.com/mobile/20180530/20180530142022_4d58985ee94e1580e525c5df52498f66_2_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":3,"imgheight":240,"imgname":"20180530142022_4d58985ee94e1580e525c5df52498f66_4_mwpm_03200403.jpg","imgwidth":320,"src":"http://08.imgmini.eastday.com/mobile/20180530/20180530142022_4d58985ee94e1580e525c5df52498f66_4_mwpm_03200403.jpg"}],"miniimg02":[{"alt":"","describe":"","idx":1,"imgheight":180,"imgname":"20180530142022_4d58985ee94e1580e525c5df52498f66_3_mwpm_03201609.jpg","imgwidth":320,"src":"http://08.imgmini.eastday.com/mobile/20180530/20180530142022_4d58985ee94e1580e525c5df52498f66_3_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":2,"imgheight":180,"imgname":"20180530142022_4d58985ee94e1580e525c5df52498f66_2_mwpm_03201609.jpg","imgwidth":320,"src":"http://08.imgmini.eastday.com/mobile/20180530/20180530142022_4d58985ee94e1580e525c5df52498f66_2_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":3,"imgheight":180,"imgname":"20180530142022_4d58985ee94e1580e525c5df52498f66_4_mwpm_03201609.jpg","imgwidth":320,"src":"http://08.imgmini.eastday.com/mobile/20180530/20180530142022_4d58985ee94e1580e525c5df52498f66_4_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":4,"imgheight":180,"imgname":"20180530142022_4d58985ee94e1580e525c5df52498f66_1_mwpm_03201609.jpg","imgwidth":320,"src":"http://08.imgmini.eastday.com/mobile/20180530/20180530142022_4d58985ee94e1580e525c5df52498f66_1_mwpm_03201609.jpg"}],"miniimg_size":"3","pkey":[],"recommendtype":"-1","rowkey":"9223370509193552967","source":"刚猪你别跑","tag":[],"topic":"太无脑!宏远弃将开小差再被杜锋呵斥,如此态度他终会被CBA抛弃!","type":"tiyu","url":"180530142022840.html","urlpv":"0"},{"brief":"让山东球迷想不明白的是,休赛期这么多优秀主教练纷纷挪巢的情况下,山东男篮却还是按兵不动,最终选择继续信任凯撒。","customtag":[],"daoPaiKey":"","date":"2018-05-30 14:18","hotnews":"0","isnxw":"0","isrecom":"0","isvideo":"0","kw":[],"lbimg":[{"alt":"","describe":"","idx":1,"imgheight":275,"imgname":"20180530141833_6cbc0a9c84440e918d474f9fb76534b4_4_mwpl_05500201.jpg","imgwidth":550,"src":"http://05.imgmini.eastday.com/mobile/20180530/20180530141833_6cbc0a9c84440e918d474f9fb76534b4_4_mwpl_05500201.jpg"}],"miniimg":[{"alt":"","describe":"","idx":1,"imgheight":240,"imgname":"20180530141833_6cbc0a9c84440e918d474f9fb76534b4_4_mwpm_03200403.jpg","imgwidth":320,"src":"http://05.imgmini.eastday.com/mobile/20180530/20180530141833_6cbc0a9c84440e918d474f9fb76534b4_4_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":2,"imgheight":240,"imgname":"20180530141833_6cbc0a9c84440e918d474f9fb76534b4_1_mwpm_03200403.jpg","imgwidth":320,"src":"http://05.imgmini.eastday.com/mobile/20180530/20180530141833_6cbc0a9c84440e918d474f9fb76534b4_1_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":3,"imgheight":240,"imgname":"20180530141833_6cbc0a9c84440e918d474f9fb76534b4_2_mwpm_03200403.jpg","imgwidth":320,"src":"http://05.imgmini.eastday.com/mobile/20180530/20180530141833_6cbc0a9c84440e918d474f9fb76534b4_2_mwpm_03200403.jpg"}],"miniimg02":[{"alt":"","describe":"","idx":1,"imgheight":180,"imgname":"20180530141833_6cbc0a9c84440e918d474f9fb76534b4_4_mwpm_03201609.jpg","imgwidth":320,"src":"http://05.imgmini.eastday.com/mobile/20180530/20180530141833_6cbc0a9c84440e918d474f9fb76534b4_4_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":2,"imgheight":180,"imgname":"20180530141833_6cbc0a9c84440e918d474f9fb76534b4_1_mwpm_03201609.jpg","imgwidth":320,"src":"http://05.imgmini.eastday.com/mobile/20180530/20180530141833_6cbc0a9c84440e918d474f9fb76534b4_1_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":3,"imgheight":180,"imgname":"20180530141833_6cbc0a9c84440e918d474f9fb76534b4_2_mwpm_03201609.jpg","imgwidth":320,"src":"http://05.imgmini.eastday.com/mobile/20180530/20180530141833_6cbc0a9c84440e918d474f9fb76534b4_2_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":4,"imgheight":180,"imgname":"20180530141833_6cbc0a9c84440e918d474f9fb76534b4_3_mwpm_03201609.jpg","imgwidth":320,"src":"http://05.imgmini.eastday.com/mobile/20180530/20180530141833_6cbc0a9c84440e918d474f9fb76534b4_3_mwpm_03201609.jpg"}],"miniimg_size":"3","pkey":[],"recommendtype":"-1","rowkey":"9223370509193662788","source":"伟伟道来说体育","tag":[],"topic":"凯撒立军令状保饭碗,一条件可自动免职,山东男篮为保守付出代价","type":"tiyu","url":"180530141833019.html","urlpv":"0"},{"brief":"男篮蓝队凤凰体育讯今晚,中国男篮国家队蓝队将在沈阳开启今夏男篮蓝队一系列热身赛的首秀。本次热身赛蓝队的对手是伊","customtag":[],"daoPaiKey":"","date":"2018-05-30 14:13","hotnews":"0","isnxw":"0","isrecom":"0","isvideo":"0","kw":[],"lbimg":[{"alt":"","describe":"","idx":1,"imgheight":226,"imgname":"20180530141322_2eee17e0b439aa3c18287bff183bd0d3_1_mwpl_05500201.jpg","imgwidth":452,"src":"http://08.imgmini.eastday.com/mobile/20180530/20180530141322_2eee17e0b439aa3c18287bff183bd0d3_1_mwpl_05500201.jpg"}],"miniimg":[{"alt":"","describe":"","idx":1,"imgheight":240,"imgname":"20180530141322_2eee17e0b439aa3c18287bff183bd0d3_1_mwpm_03200403.jpg","imgwidth":320,"src":"http://08.imgmini.eastday.com/mobile/20180530/20180530141322_2eee17e0b439aa3c18287bff183bd0d3_1_mwpm_03200403.jpg"}],"miniimg02":[{"alt":"","describe":"","idx":1,"imgheight":180,"imgname":"20180530141322_2eee17e0b439aa3c18287bff183bd0d3_1_mwpm_03201609.jpg","imgwidth":320,"src":"http://08.imgmini.eastday.com/mobile/20180530/20180530141322_2eee17e0b439aa3c18287bff183bd0d3_1_mwpm_03201609.jpg"}],"miniimg_size":"1","pkey":[],"recommendtype":"-1","rowkey":"9223370509193973465","source":"凤凰网","tag":[],"topic":"伊朗派主力挑战蓝队 杜锋:年轻队员尤其要珍惜机会","type":"tiyu","url":"180530141322342.html","urlpv":"0"},{"brief":"虎扑5月30日讯新疆队前锋可兰白克前不久入选了中国男篮蓝队大名单,今晚他也将代表中国男篮蓝队出战中伊男篮对抗赛","customtag":[],"daoPaiKey":"","date":"2018-05-30 14:13","hotnews":"0","isnxw":"0","isrecom":"0","isvideo":"0","kw":[],"lbimg":[{"alt":"","describe":"","idx":1,"imgheight":204,"imgname":"20180530141312_86bdd0b5fe9eeb4dff2c6d4f4e5eac07_1_mwpl_05500201.jpg","imgwidth":408,"src":"http://05.imgmini.eastday.com/mobile/20180530/20180530141312_86bdd0b5fe9eeb4dff2c6d4f4e5eac07_1_mwpl_05500201.jpg"}],"miniimg":[{"alt":"","describe":"","idx":1,"imgheight":204,"imgname":"20180530141312_86bdd0b5fe9eeb4dff2c6d4f4e5eac07_1_mwpm_03200403.jpg","imgwidth":272,"src":"http://05.imgmini.eastday.com/mobile/20180530/20180530141312_86bdd0b5fe9eeb4dff2c6d4f4e5eac07_1_mwpm_03200403.jpg"}],"miniimg02":[{"alt":"","describe":"","idx":1,"imgheight":180,"imgname":"20180530141312_86bdd0b5fe9eeb4dff2c6d4f4e5eac07_1_mwpm_03201609.jpg","imgwidth":320,"src":"http://05.imgmini.eastday.com/mobile/20180530/20180530141312_86bdd0b5fe9eeb4dff2c6d4f4e5eac07_1_mwpm_03201609.jpg"}],"miniimg_size":"1","pkey":[],"recommendtype":"-1","rowkey":"9223370509193983664","source":"虎扑体育","tag":[],"topic":"可兰白克谈年轻球员:希望可以多交流","type":"tiyu","url":"180530141312143.html","urlpv":"0"},{"brief":"今晚,中伊男篮对抗赛首场比赛将在辽宁体育馆打响,由杜锋率领的中国男篮蓝队迎战伊朗国家队,这也是2017-18赛","customtag":[],"daoPaiKey":"","date":"2018-05-30 14:09","hotnews":"0","isnxw":"0","isrecom":"0","isvideo":"0","kw":[],"lbimg":[{"alt":"","describe":"","idx":1,"imgheight":275,"imgname":"20180530_13a9e9b79d7d95e208fec0127d0c0267_cover_mwpl_05500201.jpg","imgwidth":550,"src":"http://09.imgmini.eastday.com/mobile/20180530/20180530_13a9e9b79d7d95e208fec0127d0c0267_cover_mwpl_05500201.jpg"}],"miniimg":[{"alt":"","describe":"","idx":1,"imgheight":240,"imgname":"20180530_13a9e9b79d7d95e208fec0127d0c0267_cover_mwpm_03200403.jpg","imgwidth":320,"src":"http://09.imgmini.eastday.com/mobile/20180530/20180530_13a9e9b79d7d95e208fec0127d0c0267_cover_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":2,"imgheight":240,"imgname":"20180530_dff84a0567f3e80527abd4c1582883ba_cover_mwpm_03200403.jpg","imgwidth":320,"src":"http://09.imgmini.eastday.com/mobile/20180530/20180530_dff84a0567f3e80527abd4c1582883ba_cover_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":3,"imgheight":240,"imgname":"20180530_456ccf7ae28d91f09b5f1edc17e12cf1_cover_mwpm_03200403.jpg","imgwidth":320,"src":"http://09.imgmini.eastday.com/mobile/20180530/20180530_456ccf7ae28d91f09b5f1edc17e12cf1_cover_mwpm_03200403.jpg"}],"miniimg02":[{"alt":"","describe":"","idx":1,"imgheight":180,"imgname":"20180530_13a9e9b79d7d95e208fec0127d0c0267_cover_mwpm_03201609.jpg","imgwidth":320,"src":"http://09.imgmini.eastday.com/mobile/20180530/20180530_13a9e9b79d7d95e208fec0127d0c0267_cover_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":2,"imgheight":180,"imgname":"20180530_dff84a0567f3e80527abd4c1582883ba_cover_mwpm_03201609.jpg","imgwidth":320,"src":"http://09.imgmini.eastday.com/mobile/20180530/20180530_dff84a0567f3e80527abd4c1582883ba_cover_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":3,"imgheight":180,"imgname":"20180530_456ccf7ae28d91f09b5f1edc17e12cf1_cover_mwpm_03201609.jpg","imgwidth":320,"src":"http://09.imgmini.eastday.com/mobile/20180530/20180530_456ccf7ae28d91f09b5f1edc17e12cf1_cover_mwpm_03201609.jpg"}],"miniimg_size":"3","pkey":[],"recommendtype":"-1","rowkey":"9223370509194224248","source":"篮球资讯快递","tag":[],"topic":"中国男篮坏消息,蓝队队内唯一大牌缺阵,伊朗大胜毫无悬念!","type":"tiyu","url":"180530140911559.html","urlpv":"0"},{"brief":"北京时间5月30日,中国男篮蓝队将在沈阳迎来与伊朗男篮的第一场热身赛,有记者爆料,在当天上午的热身训练时,一次","customtag":[],"daoPaiKey":"","date":"2018-05-30 13:38","hotnews":"0","isnxw":"0","isrecom":"0","isvideo":"0","kw":[],"lbimg":[{"alt":"","describe":"","idx":1,"imgheight":275,"imgname":"20180530_13749e67b07354e5879cdf889f1f4345_cover_mwpl_05500201.jpg","imgwidth":550,"src":"http://06.imgmini.eastday.com/mobile/20180530/20180530_13749e67b07354e5879cdf889f1f4345_cover_mwpl_05500201.jpg"}],"miniimg":[{"alt":"","describe":"","idx":1,"imgheight":240,"imgname":"20180530_13749e67b07354e5879cdf889f1f4345_cover_mwpm_03200403.jpg","imgwidth":320,"src":"http://06.imgmini.eastday.com/mobile/20180530/20180530_13749e67b07354e5879cdf889f1f4345_cover_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":2,"imgheight":240,"imgname":"20180530_7747f7ee7e8e1e63116bb08348d53e13_cover_mwpm_03200403.jpg","imgwidth":320,"src":"http://06.imgmini.eastday.com/mobile/20180530/20180530_7747f7ee7e8e1e63116bb08348d53e13_cover_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":3,"imgheight":240,"imgname":"20180530_1cebdeac1550810bd8b673650866933f_cover_mwpm_03200403.jpg","imgwidth":320,"src":"http://06.imgmini.eastday.com/mobile/20180530/20180530_1cebdeac1550810bd8b673650866933f_cover_mwpm_03200403.jpg"}],"miniimg02":[{"alt":"","describe":"","idx":1,"imgheight":180,"imgname":"20180530_13749e67b07354e5879cdf889f1f4345_cover_mwpm_03201609.jpg","imgwidth":320,"src":"http://06.imgmini.eastday.com/mobile/20180530/20180530_13749e67b07354e5879cdf889f1f4345_cover_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":2,"imgheight":180,"imgname":"20180530_7747f7ee7e8e1e63116bb08348d53e13_cover_mwpm_03201609.jpg","imgwidth":320,"src":"http://06.imgmini.eastday.com/mobile/20180530/20180530_7747f7ee7e8e1e63116bb08348d53e13_cover_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":3,"imgheight":180,"imgname":"20180530_1cebdeac1550810bd8b673650866933f_cover_mwpm_03201609.jpg","imgwidth":320,"src":"http://06.imgmini.eastday.com/mobile/20180530/20180530_1cebdeac1550810bd8b673650866933f_cover_mwpm_03201609.jpg"}],"miniimg_size":"3","pkey":[],"recommendtype":"-1","rowkey":"9223370509196068675","source":"篮球资讯快递","tag":[],"topic":"中国男篮曝将帅不和,杜峰怒斥高尚:别让我当着媒体的面赶你出去","type":"tiyu","url":"180530133827132.html","urlpv":"0"},{"brief":"经过三年的蛰伏,CUBA九冠王华侨\u200b大学男篮终于重新杀入了四强,凭借郑毅和孟翔这对后场黄金双枪,他们具备了冲击","customtag":[],"daoPaiKey":"","date":"2018-05-30 13:33","hotnews":"0","isnxw":"0","isrecom":"0","isvideo":"0","kw":[],"lbimg":[{"alt":"","describe":"","idx":1,"imgheight":275,"imgname":"20180530133344_a167c88ab228ba4f97c45f3f9d8d6772_1_mwpl_05500201.jpg","imgwidth":550,"src":"http://05.imgmini.eastday.com/mobile/20180530/20180530133344_a167c88ab228ba4f97c45f3f9d8d6772_1_mwpl_05500201.jpg"}],"miniimg":[{"alt":"","describe":"","idx":1,"imgheight":240,"imgname":"20180530133344_a167c88ab228ba4f97c45f3f9d8d6772_1_mwpm_03200403.jpg","imgwidth":320,"src":"http://05.imgmini.eastday.com/mobile/20180530/20180530133344_a167c88ab228ba4f97c45f3f9d8d6772_1_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":2,"imgheight":240,"imgname":"20180530133344_a167c88ab228ba4f97c45f3f9d8d6772_2_mwpm_03200403.jpg","imgwidth":320,"src":"http://05.imgmini.eastday.com/mobile/20180530/20180530133344_a167c88ab228ba4f97c45f3f9d8d6772_2_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":3,"imgheight":240,"imgname":"20180530133344_a167c88ab228ba4f97c45f3f9d8d6772_3_mwpm_03200403.jpg","imgwidth":320,"src":"http://05.imgmini.eastday.com/mobile/20180530/20180530133344_a167c88ab228ba4f97c45f3f9d8d6772_3_mwpm_03200403.jpg"}],"miniimg02":[{"alt":"","describe":"","idx":1,"imgheight":180,"imgname":"20180530133344_a167c88ab228ba4f97c45f3f9d8d6772_1_mwpm_03201609.jpg","imgwidth":320,"src":"http://05.imgmini.eastday.com/mobile/20180530/20180530133344_a167c88ab228ba4f97c45f3f9d8d6772_1_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":2,"imgheight":180,"imgname":"20180530133344_a167c88ab228ba4f97c45f3f9d8d6772_2_mwpm_03201609.jpg","imgwidth":320,"src":"http://05.imgmini.eastday.com/mobile/20180530/20180530133344_a167c88ab228ba4f97c45f3f9d8d6772_2_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":3,"imgheight":180,"imgname":"20180530133344_a167c88ab228ba4f97c45f3f9d8d6772_3_mwpm_03201609.jpg","imgwidth":320,"src":"http://05.imgmini.eastday.com/mobile/20180530/20180530133344_a167c88ab228ba4f97c45f3f9d8d6772_3_mwpm_03201609.jpg"}],"miniimg_size":"3","pkey":[],"recommendtype":"-1","rowkey":"9223370509196351378","source":"叶修缘","tag":[],"topic":"华侨大学男篮挑落清华,重新杀回四强,黄金双枪能否率队夺冠?","type":"tiyu","url":"180530133344429.html","urlpv":"0"},{"brief":"近日,随着世预赛第三个窗口期的临近,加拿大男篮官方公布了世界杯预选赛18人集训队大名单,其中包括多名NBA球员","customtag":[],"daoPaiKey":"","date":"2018-05-30 13:28","hotnews":"0","isnxw":"0","isrecom":"0","isvideo":"0","kw":[],"lbimg":[{"alt":"","describe":"","idx":1,"imgheight":275,"imgname":"20180530132856_60293148485caa32acbf2c3323b30c11_3_mwpl_05500201.jpg","imgwidth":550,"src":"http://05.imgmini.eastday.com/mobile/20180530/20180530132856_60293148485caa32acbf2c3323b30c11_3_mwpl_05500201.jpg"}],"miniimg":[{"alt":"","describe":"","idx":1,"imgheight":240,"imgname":"20180530132856_60293148485caa32acbf2c3323b30c11_3_mwpm_03200403.jpg","imgwidth":320,"src":"http://05.imgmini.eastday.com/mobile/20180530/20180530132856_60293148485caa32acbf2c3323b30c11_3_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":2,"imgheight":240,"imgname":"20180530132856_60293148485caa32acbf2c3323b30c11_2_mwpm_03200403.jpg","imgwidth":320,"src":"http://05.imgmini.eastday.com/mobile/20180530/20180530132856_60293148485caa32acbf2c3323b30c11_2_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":3,"imgheight":240,"imgname":"20180530132856_60293148485caa32acbf2c3323b30c11_1_mwpm_03200403.jpg","imgwidth":320,"src":"http://05.imgmini.eastday.com/mobile/20180530/20180530132856_60293148485caa32acbf2c3323b30c11_1_mwpm_03200403.jpg"}],"miniimg02":[{"alt":"","describe":"","idx":1,"imgheight":180,"imgname":"20180530132856_60293148485caa32acbf2c3323b30c11_3_mwpm_03201609.jpg","imgwidth":320,"src":"http://05.imgmini.eastday.com/mobile/20180530/20180530132856_60293148485caa32acbf2c3323b30c11_3_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":2,"imgheight":180,"imgname":"20180530132856_60293148485caa32acbf2c3323b30c11_2_mwpm_03201609.jpg","imgwidth":320,"src":"http://05.imgmini.eastday.com/mobile/20180530/20180530132856_60293148485caa32acbf2c3323b30c11_2_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":3,"imgheight":180,"imgname":"20180530132856_60293148485caa32acbf2c3323b30c11_1_mwpm_03201609.jpg","imgwidth":320,"src":"http://05.imgmini.eastday.com/mobile/20180530/20180530132856_60293148485caa32acbf2c3323b30c11_1_mwpm_03201609.jpg"}],"miniimg_size":"3","pkey":[],"recommendtype":"-1","rowkey":"9223370509196638937","source":"凤凰网","tag":[],"topic":"细思极恐!半支男篮还不是主力要去打多名NBA球星坐阵的加拿大?","type":"tiyu","url":"180530132856870.html","urlpv":"0"},{"brief":"今晚,中国男篮蓝队将迎来和伊朗队的热身赛,中国队为了备战此次比赛,也是在进行着紧张的训练当中。为了球队能有个好","customtag":[],"daoPaiKey":"","date":"2018-05-30 13:26","hotnews":"0","isnxw":"0","isrecom":"0","isvideo":"0","kw":[],"lbimg":[{"alt":"","describe":"","idx":1,"imgheight":275,"imgname":"20180530132620_ed993cf661733a866af65c77f9ac2a7b_3_mwpl_05500201.jpg","imgwidth":550,"src":"http://01.imgmini.eastday.com/mobile/20180530/20180530132620_ed993cf661733a866af65c77f9ac2a7b_3_mwpl_05500201.jpg"}],"miniimg":[{"alt":"","describe":"","idx":1,"imgheight":240,"imgname":"20180530132620_ed993cf661733a866af65c77f9ac2a7b_3_mwpm_03200403.jpg","imgwidth":320,"src":"http://01.imgmini.eastday.com/mobile/20180530/20180530132620_ed993cf661733a866af65c77f9ac2a7b_3_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":2,"imgheight":240,"imgname":"20180530132620_ed993cf661733a866af65c77f9ac2a7b_1_mwpm_03200403.jpg","imgwidth":320,"src":"http://01.imgmini.eastday.com/mobile/20180530/20180530132620_ed993cf661733a866af65c77f9ac2a7b_1_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":3,"imgheight":240,"imgname":"20180530132620_ed993cf661733a866af65c77f9ac2a7b_2_mwpm_03200403.jpg","imgwidth":320,"src":"http://01.imgmini.eastday.com/mobile/20180530/20180530132620_ed993cf661733a866af65c77f9ac2a7b_2_mwpm_03200403.jpg"}],"miniimg02":[{"alt":"","describe":"","idx":1,"imgheight":180,"imgname":"20180530132620_ed993cf661733a866af65c77f9ac2a7b_3_mwpm_03201609.jpg","imgwidth":320,"src":"http://01.imgmini.eastday.com/mobile/20180530/20180530132620_ed993cf661733a866af65c77f9ac2a7b_3_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":2,"imgheight":180,"imgname":"20180530132620_ed993cf661733a866af65c77f9ac2a7b_1_mwpm_03201609.jpg","imgwidth":320,"src":"http://01.imgmini.eastday.com/mobile/20180530/20180530132620_ed993cf661733a866af65c77f9ac2a7b_1_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":3,"imgheight":180,"imgname":"20180530132620_ed993cf661733a866af65c77f9ac2a7b_2_mwpm_03201609.jpg","imgwidth":320,"src":"http://01.imgmini.eastday.com/mobile/20180530/20180530132620_ed993cf661733a866af65c77f9ac2a7b_2_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":4,"imgheight":180,"imgname":"20180530132620_ed993cf661733a866af65c77f9ac2a7b_4_mwpm_03201609.jpg","imgwidth":320,"src":"http://01.imgmini.eastday.com/mobile/20180530/20180530132620_ed993cf661733a866af65c77f9ac2a7b_4_mwpm_03201609.jpg"}],"miniimg_size":"3","pkey":[],"recommendtype":"-1","rowkey":"9223370509196795140","source":"体育哲人","tag":[],"topic":"笑什么笑?主帅杜锋在训练场上怒斥队员高尚,引起了网友一阵热议","type":"tiyu","url":"180530132620667.html","urlpv":"0"},{"brief":"昨天中国男篮蓝队公布了对伊的比赛人员名单,总共17人,但不包括易建联、韩德君等主要球员,这对于年轻球员来说是一","customtag":[],"daoPaiKey":"","date":"2018-05-30 13:26","hotnews":"0","isnxw":"0","isrecom":"0","isvideo":"0","kw":[],"lbimg":[{"alt":"","describe":"","idx":1,"imgheight":275,"imgname":"20180530132600_808364ef9f30f98bbbad16cc8ed0d0e2_5_mwpl_05500201.jpg","imgwidth":550,"src":"http://01.imgmini.eastday.com/mobile/20180530/20180530132600_808364ef9f30f98bbbad16cc8ed0d0e2_5_mwpl_05500201.jpg"}],"miniimg":[{"alt":"","describe":"","idx":1,"imgheight":240,"imgname":"20180530132600_808364ef9f30f98bbbad16cc8ed0d0e2_5_mwpm_03200403.jpg","imgwidth":320,"src":"http://01.imgmini.eastday.com/mobile/20180530/20180530132600_808364ef9f30f98bbbad16cc8ed0d0e2_5_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":2,"imgheight":240,"imgname":"20180530132600_808364ef9f30f98bbbad16cc8ed0d0e2_2_mwpm_03200403.jpg","imgwidth":320,"src":"http://01.imgmini.eastday.com/mobile/20180530/20180530132600_808364ef9f30f98bbbad16cc8ed0d0e2_2_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":3,"imgheight":240,"imgname":"20180530132600_808364ef9f30f98bbbad16cc8ed0d0e2_3_mwpm_03200403.jpg","imgwidth":320,"src":"http://01.imgmini.eastday.com/mobile/20180530/20180530132600_808364ef9f30f98bbbad16cc8ed0d0e2_3_mwpm_03200403.jpg"}],"miniimg02":[{"alt":"","describe":"","idx":1,"imgheight":180,"imgname":"20180530132600_808364ef9f30f98bbbad16cc8ed0d0e2_5_mwpm_03201609.jpg","imgwidth":320,"src":"http://01.imgmini.eastday.com/mobile/20180530/20180530132600_808364ef9f30f98bbbad16cc8ed0d0e2_5_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":2,"imgheight":180,"imgname":"20180530132600_808364ef9f30f98bbbad16cc8ed0d0e2_2_mwpm_03201609.jpg","imgwidth":320,"src":"http://01.imgmini.eastday.com/mobile/20180530/20180530132600_808364ef9f30f98bbbad16cc8ed0d0e2_2_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":3,"imgheight":180,"imgname":"20180530132600_808364ef9f30f98bbbad16cc8ed0d0e2_3_mwpm_03201609.jpg","imgwidth":320,"src":"http://01.imgmini.eastday.com/mobile/20180530/20180530132600_808364ef9f30f98bbbad16cc8ed0d0e2_3_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":4,"imgheight":180,"imgname":"20180530132600_808364ef9f30f98bbbad16cc8ed0d0e2_1_mwpm_03201609.jpg","imgwidth":320,"src":"http://01.imgmini.eastday.com/mobile/20180530/20180530132600_808364ef9f30f98bbbad16cc8ed0d0e2_1_mwpm_03201609.jpg"}],"miniimg_size":"3","pkey":[],"recommendtype":"-1","rowkey":"9223370509196815021","source":"凤凰网","tag":[],"topic":"对伊名单出来了,没有易建联等主要球员?","type":"tiyu","url":"180530132600786.html","urlpv":"0"},{"brief":"中国男篮的首场热身赛今晚开打今晚,中国男篮今年夏天的第一场热身赛要来了,地点沈阳。在蓝队公布了这次热身赛的名单","customtag":[],"daoPaiKey":"","date":"2018-05-30 13:25","hotnews":"0","isnxw":"0","isrecom":"0","isvideo":"0","kw":[],"lbimg":[{"alt":"","describe":"","idx":1,"imgheight":275,"imgname":"20180530132552_f25c946c8992c614fe7eb07540066322_2_mwpl_05500201.jpg","imgwidth":550,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530132552_f25c946c8992c614fe7eb07540066322_2_mwpl_05500201.jpg"}],"miniimg":[{"alt":"","describe":"","idx":1,"imgheight":240,"imgname":"20180530132552_f25c946c8992c614fe7eb07540066322_2_mwpm_03200403.jpg","imgwidth":320,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530132552_f25c946c8992c614fe7eb07540066322_2_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":2,"imgheight":240,"imgname":"20180530132552_f25c946c8992c614fe7eb07540066322_1_mwpm_03200403.jpg","imgwidth":320,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530132552_f25c946c8992c614fe7eb07540066322_1_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":3,"imgheight":240,"imgname":"20180530132552_f25c946c8992c614fe7eb07540066322_3_mwpm_03200403.jpg","imgwidth":320,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530132552_f25c946c8992c614fe7eb07540066322_3_mwpm_03200403.jpg"}],"miniimg02":[{"alt":"","describe":"","idx":1,"imgheight":180,"imgname":"20180530132552_f25c946c8992c614fe7eb07540066322_2_mwpm_03201609.jpg","imgwidth":320,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530132552_f25c946c8992c614fe7eb07540066322_2_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":2,"imgheight":180,"imgname":"20180530132552_f25c946c8992c614fe7eb07540066322_1_mwpm_03201609.jpg","imgwidth":320,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530132552_f25c946c8992c614fe7eb07540066322_1_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":3,"imgheight":180,"imgname":"20180530132552_f25c946c8992c614fe7eb07540066322_3_mwpm_03201609.jpg","imgwidth":320,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530132552_f25c946c8992c614fe7eb07540066322_3_mwpm_03201609.jpg"}],"miniimg_size":"3","pkey":[],"recommendtype":"-1","rowkey":"9223370509196823116","source":"跳球","tag":[],"topic":"男篮的这17个年轻人,拿什么抗伊?","type":"tiyu","url":"180530132552691.html","urlpv":"0"},{"brief":"朱芳雨回柳州举办训练营,他能为广东宏远找到第二个朱芳雨吗?日前据南国早报报道广东宏远现任总经理、柳籍著名篮球运","customtag":[],"daoPaiKey":"","date":"2018-05-30 13:17","hotnews":"0","isnxw":"0","isrecom":"0","isvideo":"0","kw":[],"lbimg":[{"alt":"","describe":"","idx":1,"imgheight":249,"imgname":"20180530_00b096ae32400edcd0e73348cf0fe45f_cover_mwpl_05500201.jpg","imgwidth":499,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530_00b096ae32400edcd0e73348cf0fe45f_cover_mwpl_05500201.jpg"}],"miniimg":[{"alt":"","describe":"","idx":1,"imgheight":240,"imgname":"20180530_00b096ae32400edcd0e73348cf0fe45f_cover_mwpm_03200403.jpg","imgwidth":320,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530_00b096ae32400edcd0e73348cf0fe45f_cover_mwpm_03200403.jpg"}],"miniimg02":[{"alt":"","describe":"","idx":1,"imgheight":180,"imgname":"20180530_00b096ae32400edcd0e73348cf0fe45f_cover_mwpm_03201609.jpg","imgwidth":320,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530_00b096ae32400edcd0e73348cf0fe45f_cover_mwpm_03201609.jpg"}],"miniimg_size":"1","pkey":[],"recommendtype":"-1","rowkey":"9223370509197336090","source":"中山印象","tag":[],"topic":"朱芳雨回柳州举办训练营, 他能为广东宏远找到第二个朱芳雨吗?","type":"tiyu","url":"180530131719717.html","urlpv":"0"}]
     */

    private String stat;
    private List<DataBean> data;

    public String getStat() {
        return stat;
    }

    public void setStat(String stat) {
        this.stat = stat;
    }

    public List<DataBean> getData() {
        return data;
    }

    public void setData(List<DataBean> data) {
        this.data = data;
    }

    public static class DataBean {
        /**
         * brief : 中国男篮蓝队对决伊朗辽篮外租小将或在家乡父老面前一战成名2018年5月30日晚19时35分,中国男篮蓝队将在沈
         * customtag : []
         * daoPaiKey :
         * date : 2018-05-30 15:24
         * hotnews : 0
         * isnxw : 0
         * isrecom : 0
         * isvideo : 0
         * kw : []
         * lbimg : [{"alt":"","describe":"","idx":1,"imgheight":275,"imgname":"20180530152409_ea88531eec3bcb29ca1988524957b956_5_mwpl_05500201.jpg","imgwidth":550,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530152409_ea88531eec3bcb29ca1988524957b956_5_mwpl_05500201.jpg"}]
         * miniimg : [{"alt":"","describe":"","idx":1,"imgheight":240,"imgname":"20180530152409_ea88531eec3bcb29ca1988524957b956_5_mwpm_03200403.jpg","imgwidth":320,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530152409_ea88531eec3bcb29ca1988524957b956_5_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":2,"imgheight":240,"imgname":"20180530152409_ea88531eec3bcb29ca1988524957b956_3_mwpm_03200403.jpg","imgwidth":320,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530152409_ea88531eec3bcb29ca1988524957b956_3_mwpm_03200403.jpg"},{"alt":"","describe":"","idx":3,"imgheight":240,"imgname":"20180530152409_ea88531eec3bcb29ca1988524957b956_1_mwpm_03200403.jpg","imgwidth":320,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530152409_ea88531eec3bcb29ca1988524957b956_1_mwpm_03200403.jpg"}]
         * miniimg02 : [{"alt":"","describe":"","idx":1,"imgheight":180,"imgname":"20180530152409_ea88531eec3bcb29ca1988524957b956_5_mwpm_03201609.jpg","imgwidth":320,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530152409_ea88531eec3bcb29ca1988524957b956_5_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":2,"imgheight":180,"imgname":"20180530152409_ea88531eec3bcb29ca1988524957b956_3_mwpm_03201609.jpg","imgwidth":320,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530152409_ea88531eec3bcb29ca1988524957b956_3_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":3,"imgheight":180,"imgname":"20180530152409_ea88531eec3bcb29ca1988524957b956_1_mwpm_03201609.jpg","imgwidth":320,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530152409_ea88531eec3bcb29ca1988524957b956_1_mwpm_03201609.jpg"},{"alt":"","describe":"","idx":4,"imgheight":180,"imgname":"20180530152409_ea88531eec3bcb29ca1988524957b956_4_mwpm_03201609.jpg","imgwidth":320,"src":"http://07.imgmini.eastday.com/mobile/20180530/20180530152409_ea88531eec3bcb29ca1988524957b956_4_mwpm_03201609.jpg"}]
         * miniimg_size : 3
         * pkey : []
         * recommendtype : -1
         * rowkey : 9223370509189726098
         * source : 晚池
         * tag : []
         * topic : 中国男篮蓝队对决伊朗 辽篮外租小将或在家乡父老面前一战成名
         * type : tiyu
         * url : 180530152409709.html
         * urlpv : 0
         */

        private String brief;
        private String daoPaiKey;
        private String date;
        private String hotnews;
        private String isnxw;
        private String isrecom;
        private String isvideo;
        private String miniimg_size;
        private String recommendtype;
        private String rowkey;
        private String source;
        private String topic;
        private String type;
        private String url;
        private String urlpv;
        private List<?> customtag;
        private List<?> kw;
        private List<LbimgBean> lbimg;
        private List<MiniimgBean> miniimg;
        private List<Miniimg02Bean> miniimg02;
        private List<?> pkey;
        private List<?> tag;

        public String getBrief() {
            return brief;
        }

        public void setBrief(String brief) {
            this.brief = brief;
        }

        public String getDaoPaiKey() {
            return daoPaiKey;
        }

        public void setDaoPaiKey(String daoPaiKey) {
            this.daoPaiKey = daoPaiKey;
        }

        public String getDate() {
            return date;
        }

        public void setDate(String date) {
            this.date = date;
        }

        public String getHotnews() {
            return hotnews;
        }

        public void setHotnews(String hotnews) {
            this.hotnews = hotnews;
        }

        public String getIsnxw() {
            return isnxw;
        }

        public void setIsnxw(String isnxw) {
            this.isnxw = isnxw;
        }

        public String getIsrecom() {
            return isrecom;
        }

        public void setIsrecom(String isrecom) {
            this.isrecom = isrecom;
        }

        public String getIsvideo() {
            return isvideo;
        }

        public void setIsvideo(String isvideo) {
            this.isvideo = isvideo;
        }

        public String getMiniimg_size() {
            return miniimg_size;
        }

        public void setMiniimg_size(String miniimg_size) {
            this.miniimg_size = miniimg_size;
        }

        public String getRecommendtype() {
            return recommendtype;
        }

        public void setRecommendtype(String recommendtype) {
            this.recommendtype = recommendtype;
        }

        public String getRowkey() {
            return rowkey;
        }

        public void setRowkey(String rowkey) {
            this.rowkey = rowkey;
        }

        public String getSource() {
            return source;
        }

        public void setSource(String source) {
            this.source = source;
        }

        public String getTopic() {
            return topic;
        }

        public void setTopic(String topic) {
            this.topic = topic;
        }

        public String getType() {
            return type;
        }

        public void setType(String type) {
            this.type = type;
        }

        public String getUrl() {
            return url;
        }

        public void setUrl(String url) {
            this.url = url;
        }

        public String getUrlpv() {
            return urlpv;
        }

        public void setUrlpv(String urlpv) {
            this.urlpv = urlpv;
        }

        public List<?> getCustomtag() {
            return customtag;
        }

        public void setCustomtag(List<?> customtag) {
            this.customtag = customtag;
        }

        public List<?> getKw() {
            return kw;
        }

        public void setKw(List<?> kw) {
            this.kw = kw;
        }

        public List<LbimgBean> getLbimg() {
            return lbimg;
        }

        public void setLbimg(List<LbimgBean> lbimg) {
            this.lbimg = lbimg;
        }

        public List<MiniimgBean> getMiniimg() {
            return miniimg;
        }

        public void setMiniimg(List<MiniimgBean> miniimg) {
            this.miniimg = miniimg;
        }

        public List<Miniimg02Bean> getMiniimg02() {
            return miniimg02;
        }

        public void setMiniimg02(List<Miniimg02Bean> miniimg02) {
            this.miniimg02 = miniimg02;
        }

        public List<?> getPkey() {
            return pkey;
        }

        public void setPkey(List<?> pkey) {
            this.pkey = pkey;
        }

        public List<?> getTag() {
            return tag;
        }

        public void setTag(List<?> tag) {
            this.tag = tag;
        }

        public static class LbimgBean {
            /**
             * alt :
             * describe :
             * idx : 1
             * imgheight : 275
             * imgname : 20180530152409_ea88531eec3bcb29ca1988524957b956_5_mwpl_05500201.jpg
             * imgwidth : 550
             * src : http://07.imgmini.eastday.com/mobile/20180530/20180530152409_ea88531eec3bcb29ca1988524957b956_5_mwpl_05500201.jpg
             */

            private String alt;
            private String describe;
            private int idx;
            private int imgheight;
            private String imgname;
            private int imgwidth;
            private String src;

            public String getAlt() {
                return alt;
            }

            public void setAlt(String alt) {
                this.alt = alt;
            }

            public String getDescribe() {
                return describe;
            }

            public void setDescribe(String describe) {
                this.describe = describe;
            }

            public int getIdx() {
                return idx;
            }

            public void setIdx(int idx) {
                this.idx = idx;
            }

            public int getImgheight() {
                return imgheight;
            }

            public void setImgheight(int imgheight) {
                this.imgheight = imgheight;
            }

            public String getImgname() {
                return imgname;
            }

            public void setImgname(String imgname) {
                this.imgname = imgname;
            }

            public int getImgwidth() {
                return imgwidth;
            }

            public void setImgwidth(int imgwidth) {
                this.imgwidth = imgwidth;
            }

            public String getSrc() {
                return src;
            }

            public void setSrc(String src) {
                this.src = src;
            }
        }

        public static class MiniimgBean {
            /**
             * alt :
             * describe :
             * idx : 1
             * imgheight : 240
             * imgname : 20180530152409_ea88531eec3bcb29ca1988524957b956_5_mwpm_03200403.jpg
             * imgwidth : 320
             * src : http://07.imgmini.eastday.com/mobile/20180530/20180530152409_ea88531eec3bcb29ca1988524957b956_5_mwpm_03200403.jpg
             */

            private String alt;
            private String describe;
            private int idx;
            private int imgheight;
            private String imgname;
            private int imgwidth;
            private String src;

            public String getAlt() {
                return alt;
            }

            public void setAlt(String alt) {
                this.alt = alt;
            }

            public String getDescribe() {
                return describe;
            }

            public void setDescribe(String describe) {
                this.describe = describe;
            }

            public int getIdx() {
                return idx;
            }

            public void setIdx(int idx) {
                this.idx = idx;
            }

            public int getImgheight() {
                return imgheight;
            }

            public void setImgheight(int imgheight) {
                this.imgheight = imgheight;
            }

            public String getImgname() {
                return imgname;
            }

            public void setImgname(String imgname) {
                this.imgname = imgname;
            }

            public int getImgwidth() {
                return imgwidth;
            }

            public void setImgwidth(int imgwidth) {
                this.imgwidth = imgwidth;
            }

            public String getSrc() {
                return src;
            }

            public void setSrc(String src) {
                this.src = src;
            }
        }

        public static class Miniimg02Bean {
            /**
             * alt :
             * describe :
             * idx : 1
             * imgheight : 180
             * imgname : 20180530152409_ea88531eec3bcb29ca1988524957b956_5_mwpm_03201609.jpg
             * imgwidth : 320
             * src : http://07.imgmini.eastday.com/mobile/20180530/20180530152409_ea88531eec3bcb29ca1988524957b956_5_mwpm_03201609.jpg
             */

            private String alt;
            private String describe;
            private int idx;
            private int imgheight;
            private String imgname;
            private int imgwidth;
            private String src;

            public String getAlt() {
                return alt;
            }

            public void setAlt(String alt) {
                this.alt = alt;
            }

            public String getDescribe() {
                return describe;
            }

            public void setDescribe(String describe) {
                this.describe = describe;
            }

            public int getIdx() {
                return idx;
            }

            public void setIdx(int idx) {
                this.idx = idx;
            }

            public int getImgheight() {
                return imgheight;
            }

            public void setImgheight(int imgheight) {
                this.imgheight = imgheight;
            }

            public String getImgname() {
                return imgname;
            }

            public void setImgname(String imgname) {
                this.imgname = imgname;
            }

            public int getImgwidth() {
                return imgwidth;
            }

            public void setImgwidth(int imgwidth) {
                this.imgwidth = imgwidth;
            }

            public String getSrc() {
                return src;
            }

            public void setSrc(String src) {
                this.src = src;
            }
        }
    }
}
 

布局

主页面布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    xmlns:android="http://schemas.android.com/apk/res/android">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        >
        <TextView
            android:layout_width="0dp"
            android:layout_weight="3"
            android:layout_height="wrap_content"
            android:text="三色梯"
            android:gravity="center"
            />
        <Button
            android:layout_width="0dp"
            android:layout_weight="1"
            android:layout_height="wrap_content"
            android:text="+"
            android:id="@+id/jia"
            />
    </LinearLayout>
    <com.example.yk_lx1.tixing
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/tixing01"
        >
    </com.example.yk_lx1.tixing>

</LinearLayout>
 

第二个页面布局

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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:layout_height="match_parent"
    tools:context="com.example.yk_lx1.Main2Activity">
<com.jcodecraeer.xrecyclerview.XRecyclerView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/xrecy"></com.jcodecraeer.xrecyclerview.XRecyclerView>
</android.support.constraint.ConstraintLayout>
 

多条目布局1

<?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:orientation="horizontal"
    >
<ImageView
    android:layout_width="100dp"
    android:layout_height="100dp"
    android:src="@drawable/ic_launcher_background"
    android:id="@+id/image1"
    />
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/tv"
        />
</LinearLayout>
 

多条目2

<?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:orientation="vertical"
    >
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/tv1"/>
    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <ImageView
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:src="@drawable/ic_launcher_background"
            android:id="@+id/image01"
            />
        <ImageView
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:src="@drawable/ic_launcher_background"
            android:id="@+id/image02"
            />
        <ImageView
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:src="@drawable/ic_launcher_background"
            android:id="@+id/image03"
            />
    </LinearLayout>

</LinearLayout>
 

清单文件

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.yk_lx1">
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:name=".Main2Activity"></activity>
    </application>

</manifest>

依赖

//OkHttp:
compile 'com.squareup.okhttp3:okhttp:3.6.0'
/*//OkHttp日志拦截器:
implementation 'com.squareup.okhttp3:logging-interceptor:3.10.0'*/
//xRecyclerView:
//compile 'com.jcodecraeer:xrecyclerview:1.3.2'
//xRecyclerView:
compile 'com.jcodecraeer:xrecyclerview:1.3.2'
implementation 'com.android.support:design:26.1.0'
//Glide:
compile 'com.github.bumptech.glide:glide:3.7.0'
//gson:
compile 'com.google.code.gson:gson:2.8.2'



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值