一个仿网易、今日头条的图片游览器

一个仿网易、今日头条的图片游览器

好吧,我承认,这一阶段自己偷懒了,今天趁着周末,也没有面试,来记录一下最近的项目中用到的吧,一个仿网易、今日头条的图片游览器。
实现也是很简单的,这里用到了git上的一个开源库PhotoView,大家可以下载研究一下。地址:https://github.com/chrisbanes/PhotoView
项目引入就不多说,如果有疑问,可以参考我的另一篇blog,Android Studio如何正确引入AS和ES项目
我这里是把他这里的代码copy到了自己的项目中(另一种引入项目的方式)。
接下来我们就来看下具体的实现吧。
MainActivity.java:
这个就简单了,布局里面就一个button用于跳转,模拟点击图片进入图片游览器中查看详情:

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        findViewById(R.id.btn_start).setOnClickListener(new OnClickListener());
    }

    class OnClickListener implements View.OnClickListener{

        @Override
        public void onClick(View v) {
            startActivity(new Intent(MainActivity.this,NewsViewPagerActivity.class));
        }
    }

}

activity_mian.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >
    <Button
        android:id="@+id/btn_start"
        android:text="点击显示图片游览器"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>

</LinearLayout>

然后在NewsViewPagerActivity这个类中处理我们的逻辑:

package com.example.phototour;

import android.annotation.SuppressLint;
import android.support.v4.view.PagerAdapter;
import android.support.v4.view.ViewPager;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;

import com.example.phototour.photoview.HackyViewPager;
import com.example.phototour.photoview.PhotoView;

public class NewsViewPagerActivity extends AppCompatActivity {

    //图片资源,这个地方可以改成从网络中获取到的图片
    private int[] images = {R.mipmap.img1, R.mipmap.img2, R.mipmap.img3, R.mipmap.img4,
            R.mipmap.img5, R.mipmap.img6};

    //图片资源
    private int[] cars = {R.mipmap.car1, R.mipmap.car2, R.mipmap.car3, R.mipmap.car4, R.mipmap.car5, R.mipmap.car6, R.mipmap.car7};

    //图片的文字描述,在实际项目中这个是从后台获取到的数据,在这里模拟一下
    private String[] descs = {
            "小周非常喜欢《变形金刚》系列科幻电影,于是就话了" +
                    "28万好不容易的买了一台二手年龄5年的雪佛兰大黄蜂,其有这和第一步《变形金刚》基本一样的造型,非常经典美观"
            ,
            "原车主也是一位典型的《变形金刚》影迷,据悉这部电影给雪佛兰科迈罗带来了几十万台的全球销量" +
                    ",小周就是其中一位,犀利的前细长的纯黑色中网显得非常精致" +
                    ",引擎盖有着最纯粹的美式肌肉感"
            ,
            "但是小周花了这么贵的价钱买下来的二手大黄蜂,因为这是一台非常纯粹的美系列肌肉车,排量达到了" +
                    "惊人的3.6L,加上已经5年的车龄,小周经常要去加油站加油,第一因为油耗太大,第二因为邮箱太小"
            ,
            "但是这台大黄蜂还是回头率达到了惊人的95%,很像雪佛兰迈锐宝的尾灯,给人强烈的质感,而粗狂的排气管则给人强烈的肌肉感"
            ,
            "来到这款大黄蜂的车厢,看到了这最新的三幅式的真皮多功能的方向盘,后面的换挡拨片给人强烈的操控感"
            ,
            "中控台非常简洁,但是车载导航却没有,这点需要吐槽,全程需要用手机"
            , "驾驶舱是纯黑色的,而内饰采用了很" +
            "高级的高级绒布材质铺就,座驾的包裹性很强,可以8向调节,按摩,座椅记忆,加热通风等功能,非常实用"};
    //photoview里面的自定义的方法  重写了onInterceptTouchEvent  onTouchEvent来处理事件
    private HackyViewPager mViewPager;
    //显示页数和当前页数
    private TextView picture_iv_index;
    //返回按钮
    private ImageView picture_iv_back;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_news_view_pager);
        initView();
        initParams();
    }


    //初始化参数
    private void initParams() {
        picture_iv_index.setText("1/" + images.length + descs[0]);
        // 绑定适配器
        mViewPager.setAdapter(new ViewPagerAdapter());
        //设置可以滑动监听(viewpager改变的时候调用)
        mViewPager.setOnPageChangeListener(new ViewPagerChangeListener());
        mViewPager.setCurrentItem(0);
        picture_iv_back.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                NewsViewPagerActivity.this.finish();
            }
        });
    }

    //初始化布局控件
    private void initView() {
        mViewPager = (HackyViewPager) findViewById(R.id.photo_vp);
        picture_iv_back = (ImageView) findViewById(R.id.picture_iv_back);
        picture_iv_index = (TextView) findViewById(R.id.picture_iv_index);
    }

    // 查看大图viewpager适配器
    private class ViewPagerAdapter extends PagerAdapter {

        @SuppressLint("InflateParams")
        @Override
        public Object instantiateItem(ViewGroup container, final int position) {
            View view = getLayoutInflater().inflate(R.layout.news_picture_item, null);
            PhotoView picture_iv_item = (PhotoView) view.findViewById(R.id.picture_iv_item);
            // 给imageview设置一个tag,保证异步加载图片时不会乱序
            // AsyncImageLoader.getInstance(NewsPictureActivity.this).loadBitmaps(view, picture_iv_item, ConstantsUtil.IMAGE_URL + dataList.get(position).url, LocalApplication.getInstance().screenW, 0);
            picture_iv_item.setImageResource(cars[position]);
            //把view加载到父容器中
            container.addView(view);
            return view;
        }

        @Override
        public int getCount() {
            return cars.length;
        }

        @Override
        public boolean isViewFromObject(View arg0, Object arg1) {
            return arg0 == arg1;
        }

        @Override
        public void destroyItem(ViewGroup container, int position, Object object) {
            View view = (View) object;
            container.removeView(view);
        }

    }


    // viewpager切换监听器
    private class ViewPagerChangeListener implements ViewPager.OnPageChangeListener {
        @Override
        public void onPageScrollStateChanged(int arg0) {
        }

        @Override
        public void onPageScrolled(int arg0, float arg1, int arg2) {
        }

        @Override
        public void onPageSelected(int arg0) {
            //设置文字
            picture_iv_index.setText((arg0 + 1) + "/" + images.length + " " + descs[0+arg0]);
        }

    }


}

看下activity_news_view_pager.xml:

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

    <com.example.phototour.photoview.HackyViewPager
        android:id="@+id/photo_vp"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:persistentDrawingCache="animation"/>

    <ImageView
        android:id="@+id/picture_iv_back"
        android:layout_marginLeft="10dp"
        android:layout_marginTop="24dp"
        android:scaleType="fitCenter"
        android:src="@mipmap/picture_ic_back"
        android:layout_width="36dp"
        android:layout_height="24dp"/>

    <TextView
        android:id="@+id/picture_iv_index"
        android:layout_gravity="center_vertical|bottom|left"
        android:layout_marginBottom="40dp"
        android:text="1/10"
        android:textColor="@color/white"
        android:textSize="18sp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_gravity="bottom"
        android:layout_marginBottom="10dp"
        android:layout_height="wrap_content">

        <ImageView
            android:id="@+id/like"
            android:layout_marginRight="60dp"
            android:layout_centerVertical="true"
            android:src="@mipmap/listpage_more_like_normal"
            android:layout_width="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_height="wrap_content"/>
        <ImageView
            android:src="@mipmap/ic_repeat_white_18dp"
            android:layout_width="wrap_content"
            android:layout_marginRight="20dp"
            android:layout_centerVertical="true"
            android:layout_alignParentRight="true"
            android:layout_height="wrap_content"/>
    </RelativeLayout>

</FrameLayout>

news_picture_item.xml:
这个就更简单了,里面就只有一个photoview用来显示图片(支持缩放)

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/black"
    android:gravity="center" >

    <com.example.phototour.photoview.PhotoView
        android:id="@+id/picture_iv_item"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</LinearLayout>

好了,基本的情况就可以实现了,这里我的图片资源有限,界面的优化就暂不处理,如果需要的可以反编译一下,获得app里面的图片资源来装饰你的app吧。我们来看下效果图;

这里写图片描述

好了,这里上传一下github地址,大家可以下载研究。里面的几个重要的工具类可以在项目中看到,这里就不上传代码了:https://github.com/wuyinlei/phototour

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

推荐阅读更多精彩内容