当前位置:  编程技术>综合
本页文章导读:
    ▪android 类似网易首页的图片切换(viewPager)      1.activity调用 private View viewImage() { LinearLayout.LayoutParams mParams = new LinearLayout.LayoutParams( LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT); viewPager = null; View view = getLayoutInflat.........
    ▪android 实现下拉刷新      1.布局文件 listview <com.and.netease.utils.MyListView             android:id="@+id/lv_b" android:layout_width="fill_parent"            .........
    ▪设计模式-命令模式      命令(Command)模式属于对象的行为模式,把一个请求或者操作封装到一个对象中,允许系统使用不同的请求把客户端参数化,对请求排队或者记录到请求日志,可以提供命令的撤销和恢复功能。.........

[1]android 类似网易首页的图片切换(viewPager)
    来源:    发布时间: 2013-11-10
1.activity调用
private View viewImage() {
LinearLayout.LayoutParams mParams = new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.WRAP_CONTENT,
LinearLayout.LayoutParams.WRAP_CONTENT);
viewPager = null;
View view = getLayoutInflater().inflate(R.layout.news_lstview_header,
null);
viewPager = (ViewPager) view.findViewById(R.id.news_layout_viewPager);
viewPager.setLayoutParams(new ListView.LayoutParams(
ListView.LayoutParams.FILL_PARENT, 300));
List<View> list = new ArrayList<View>();
for (int i = 0; i < 3; i++) {
ImageView imgView = new ImageView(this);
imgView.setLayoutParams(mParams);
imgView.setImageResource(pics[i]);
list.add(imgView);
}
viewPager.setAdapter(new MyPagerAdapter(list));
viewPager.setCurrentItem(0);

return viewPager;
}
2.适配器
package com.and.netease.utils;

import java.util.List;

import android.os.Parcelable;
import android.support.v4.view.PagerAdapter;
import android.support.v4.view.ViewPager;
import android.view.View;

public class MyPagerAdapter extends PagerAdapter {

List<View> views;
public MyPagerAdapter(List<View> v) {
super();
    views = v;
}
@Override
public void destroyItem(View v, int pos, Object arg2) {
((ViewPager) v).removeView(views.get(pos));
}

@Override
public void finishUpdate(View arg0) {

}

@Override
public int getCount() {
if (views != null)
        {
            return views.size();
        }
       
        return 0;
}

@Override
public Object instantiateItem(View v, int pos) {
((ViewPager) v).addView(views.get(pos));
return views.get(pos);
}

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

@Override
public void restoreState(Parcelable arg0, ClassLoader arg1) {

}

@Override
public Parcelable saveState() {
return null;
}

@Override
public void startUpdate(View arg0) {

}
}


已有 0 人发表留言,猛击->>这里<<-参与讨论


ITeye推荐
  • —软件人才免语言低担保 赴美带薪读研!—




    
[2]android 实现下拉刷新
    来源:    发布时间: 2013-11-10
1.布局文件 listview
<com.and.netease.utils.MyListView
            android:id="@+id/lv_b" android:layout_width="fill_parent"
            android:layout_height="fill_parent" android:layout_marginRight="10dip"
            />
2.刷新的header 布局
<?xml version="1.0" encoding="utf-8"?>
<!-- ListView的头部 -->
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:background="#ffffff"
>
  <!-- 内容 -->
  <RelativeLayout
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:id="@+id/head_contentLayout"
  android:paddingLeft="30dp"
  >
  <!-- 箭头图像、进度条 -->
  <FrameLayout
  android:layout_width="18dip"
  android:layout_height="wrap_content"
  android:layout_alignParentLeft="true"
  android:layout_centerVertical="true"
  >
  <!-- 箭头 -->
  <ImageView
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_gravity="center"
  android:src="/blog_article/@drawable/arrow_down/index.html"
  android:id="@+id/head_arrowImageView"
  />
  <!-- 进度条 -->
  <ProgressBar
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
 
  android:layout_gravity="center"
  android:id="@+id/head_progressBar"
  android:visibility="gone"
  />
  </FrameLayout>
  <!-- 提示、最近更新 -->
  <LinearLayout
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_centerHorizontal="true"
  android:orientation="vertical"
  android:gravity="center_horizontal"
  >
  <!-- 提示 -->
  <TextView
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="下拉刷新"
  android:textSize="15dp"
  android:id="@+id/head_tipsTextView"
  />
  <!-- 最近更新 -->
  <TextView
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:id="@+id/head_lastUpdatedTextView"
  android:text="上次更新"
  android:textSize="12dp"
  />
  </LinearLayout>
  </RelativeLayout>
</LinearLayout>
3.核心代码
package com.and.netease.utils;

import java.text.SimpleDateFormat;
import java.util.Date;

import com.and.netease.R;

import android.content.Context;
import android.util.AttributeSet;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.MotionEvent;
import android.view.View;
import android.view.ViewGroup;
import android.view.animation.LinearInterpolator;
import android.view.animation.RotateAnimation;
import android.widget.AbsListView;
import android.widget.AbsListView.OnScrollListener;
import android.widget.BaseAdapter;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.ListView;
import android.widget.ProgressBar;
import android.widget.TextView;


public class MyListView extends ListView implements OnScrollListener {
private static final String TAG = "listview";

    private final static int RELEASE_To_REFRESH = 0;
    private final static int PULL_To_REFRESH = 1;
    private final static int REFRESHING = 2;
    private final static int DONE = 3;
    private final static int LOADING = 4;

    // 实际的padding的距离与界面上偏移距离的比例
    private final static int RATIO = 3;
    private LayoutInflater inflater;
    private LinearLayout headView;

    private TextView tipsTextview;
    private TextView lastUpdatedTextView;
    private ImageView arrowImageView;
    private ProgressBar progressBar;

    private RotateAnimation animation;
    private RotateAnimation reverseAnimation;

    // 用于保证startY的值在一个完整的touch事件中只被记录一次
    private boolean isRecored;

    private int headContentWidth;
    private int headContentHeight;

    private int startY;
    private int firstItemIndex;

    private int state;
    private boolean isBack;
    private OnRefreshListener refreshListener;
    private boolean isRefreshable;

    public MyListView(Context context) {
        super(context);
        init(context);
    }
    public MyListView(Context context, AttributeSet attrs) {
        super(context, attrs);
        init(context);
    }
    private void init(Context context) {
    System.out.println("scroll");
        //setCacheColorHint(context.getResources().getColor(R.color.transparent));
        inflater = LayoutInflater.from(context);
        headView = (LinearLayout) inflater.inflate(R.layout.head, null);
        arrowImageView = (ImageView) headView.findViewById(R.id.head_arrowImageView);
        arrowImageView.setMinimumWidth(70);
        arrowImageView.setMinimumHeight(50);
        progressBar = (ProgressBar) headView.findViewById(R.id.head_progressBar);
        tipsTextview = (TextView) headView.findViewById(R.id.head_tipsTextView);
        lastUpdatedTextView = (TextView) headView.findViewById(R.id.head_lastUpdatedTextView);

        measureView(headView);
        headContentHeight = headView.getMeasuredHeight();
        headContentWidth = headView.getMeasuredWidth();

        headView.setPadding(0, -1 * headContentHeight, 0, 0);
        headView.invalidate();

        Log.v("size", "width:" + headContentWidth + " height:"+ headContentHeight);

        addHeaderView(headView, null, false);
        setOnScrollListener(this);

        animation = new RotateAnimation(0, -180,RotateAnimation.RELATIVE_TO_SELF, 0.5f,
                RotateAnimation.RELATIVE_TO_SELF, 0.5f);
        animation.setInterpolator(new LinearInterpolator());
        animation.setDuration(250);
        animation.setFillAfter(true);

        reverseAnimation = new RotateAnimation(-180, 0,
                RotateAnimation.RELATIVE_TO_SELF, 0.5f,
                RotateAnimation.RELATIVE_TO_SELF, 0.5f);
        reverseAnimation.setInterpolator(new LinearInterpolator());
        reverseAnimation.setDuration(200);
        reverseAnimation.setFillAfter(true);

        state = DONE;
        isRefreshable = false;
    }

    public void onScroll(AbsListView arg0, int firstVisiableItem, int arg2,
            int arg3) {

    
[3]设计模式-命令模式
    来源:    发布时间: 2013-11-10

命令(Command)模式属于对象的行为模式,把一个请求或者操作封装到一个对象中,允许系统使用不同的请求把客户端参数化,对请求排队或者记录到请求日志,可以提供命令的撤销和恢复功能。命令模式是对命令的封装,把发出的命令的责任和执行命令的责任分开,委派给不同的对象。

设计角色:

         客户(Client)角色:创建一个具体命令对象并确定接收者。

         命令(Command)角色:声明一个给所有具体命令的抽象接口。

         具体命令(ConcreteCommand)角色:定义一个接受者和行为之间的弱耦合;实现execute()方法,负责调用接受者的相应操作。execute方法通常叫做执行方法。

         请求者(Invoker)角色:负责调用命令对象执行请求,相关方法叫做行动方法。

         接收者(Reveiver)角色:负责具体实施和执行一个请求。任何一个类都可以成为接收者,实施和执行请求的方法叫做行动方法。

例子:

package cn.design.pattern.demo.command.client;

import cn.design.pattern.demo.command.command.Command;
import cn.design.pattern.demo.command.command.PlayCommand;
import cn.design.pattern.demo.command.command.RewindCommand;
import cn.design.pattern.demo.command.command.StopCommand;
import cn.design.pattern.demo.command.invoker.Keypad;
import cn.design.pattern.demo.command.reviever.AudioPlayer;

/**
 * 客户端:创建命令和确定接收者
 */
public class Client {

	private static Keypad keypad;
	private static AudioPlayer player = new AudioPlayer();		// 接收者
	
	public static void main(String[] args) {
		test1(); test2();
	}
	
	private static void test1() {
		// 创建三个命令并将接收者传入
		Command play = new PlayCommand(player);
		Command stop = new StopCommand(player);
		Command rewind = new RewindCommand(player);
		
		keypad = new Keypad(play, rewind, stop);
		keypad.play(); keypad.stop(); keypad.rewind();
	}
	
	private static void test2() {
		
		Command play = new Command() {
			@Override
			public void execute() {
				player.play();
			}
		};
		Command rewind = new Command() {
			@Override
			public void execute() {
				player.rewind();
			}
		};
		Command stop = new Command() {
			@Override
			public void execute() {
				player.stop();
			}
		};
		
		keypad = new Keypad(play, rewind, stop);
		keypad.play(); keypad.stop(); keypad.rewind();
	}
}

package cn.design.pattern.demo.command.command;

/**
 * 抽象命令角色
 */
public interface Command {

	/**
	 * 执行方法
	 */
	public void execute();
}

package cn.design.pattern.demo.command.command;

import cn.design.pattern.demo.command.reviever.AudioPlayer;

/**
 * 具体命令角色
 * 定义一个接受者和行为之间的弱耦合
 */
public class PlayCommand implements Command {

	private AudioPlayer audioPlayer;	// 接收者
	
	public PlayCommand(AudioPlayer audioPlayer) {
		this.audioPlayer = audioPlayer;
	}
	
	/**
	 * 执行方法
	 */
	@Override
	public void execute() {
		// 调用接收者相应方法,执行命令
		audioPlayer.play();
	}

}

package cn.design.pattern.demo.command.command;

import cn.design.pattern.demo.command.reviever.AudioPlayer;

/**
 * 具体命令角色
 */
public class RewindCommand implements Command {
	
	private AudioPlayer audioPlayer;
	
	public RewindCommand(AudioPlayer audioPlayer) {
		this.audioPlayer = audioPlayer;
	}

	@Override
	public void execute() {
		audioPlayer.rewind();
	}

}

package cn.design.pattern.demo.command.command;

import cn.design.pattern.demo.command.reviever.AudioPlayer;

/**
 * 具体命令角色
 */
public class StopCommand implements Command {

	private AudioPlayer audioPlayer;
	
	public StopCommand(AudioPlayer audioPlayer) {
		this.audioPlayer = audioPlayer;
	}
	
	@Override
	public void execute() {
		audioPlayer.stop();
	}

}

package cn.design.pattern.demo.command.invoker;

import cn.design.pattern.demo.command.command.Command;

/**
 * 请求者角色
 * 负责调用命令对象执行请求
 */
public class Keypad {

	private Command playCmd;		// 命令对象
	private Command rewindCmd;
	private Command stopCmd;

	public Keypad(Command play, Command rewind, Command stop) {
		this.playCmd = play;
		this.rewindCmd = rewind;
		this.stopCmd = stop;
	}

	/**
	 * 行动方法
	 */
	public void play() {
		// 执行命令请求
		playCmd.execute();
	}

	public void rewind() {
		rewindCmd.execute();
	}

	public void stop() {
		stopCmd.execute();
	}
}

package cn.design.pattern.demo.command.reviever;

/**
 * 接收者角色
 */
public class AudioPlayer {

	public void play() {
		System.out.println("播放");
	}
	
	public void rewind() {
		System.out.println("倒带");
	}
	
	public void stop() {
		System.out.println("停止");
	}
}

 特点:

        1.新的命令很容易地被加入到系统里.

        2.允许接受请求的一方决定是否要否决请求.

        3.可以方便地设置一个命令队列.

        4.实现对请求的Undo和Redo.

        5.比较容易地将命令计入日志.



已有 0 人发表留言,猛击->>这里<<-参与讨论


ITeye推荐
  • —软件人才免语言低担保 赴美带薪读研!—




    
最新技术文章:
▪error while loading shared libraries的解決方法    ▪版本控制的极佳实践    ▪安装多个jdk,多个tomcat版本的冲突问题
▪简单选择排序算法    ▪国外 Android资源大集合 和个人学习android收藏    ▪.NET MVC 给loading数据加 ajax 等待loading效果
▪http代理工作原理(3)    ▪关注细节-TWaver Android    ▪Spring怎样把Bean实例暴露出来?
▪java写入excel2007的操作    ▪http代理工作原理(1)    ▪浅谈三层架构
▪http代理工作原理(2)    ▪解析三层架构……如何分层?    ▪linux PS命令
▪secureMRT Linux命令汉字出现乱码    ▪把C++类成员方法直接作为线程回调函数    ▪weak-and算法原理演示(wand)
▪53个要点提高PHP编程效率    ▪linux僵尸进程    ▪java 序列化到mysql数据库中
▪利用ndk编译ffmpeg    ▪活用CSS巧妙解决超长文本内容显示问题    ▪通过DBMS_RANDOM得到随机
▪CodeSmith 使用教程(8): CodeTemplate对象    ▪android4.0 进程回收机制    ▪仿天猫首页-产品分类
▪从Samples中入门IOS开发(四)------ 基于socket的...    ▪工作趣事 之 重装服务器后的网站不能正常访...    ▪java序列化学习笔记
▪Office 2010下VBA Addressof的应用    ▪一起来学ASP.NET Ajax(二)之初识ASP.NET Ajax    ▪更改CentOS yum 源为163的源
▪ORACLE 常用表达式    ▪记录一下,AS3反射功能的实现方法    ▪u盘文件系统问题
▪java设计模式-观察者模式初探    ▪MANIFEST.MF格式总结    ▪Android 4.2 Wifi Display核心分析 (一)
▪Perl 正则表达式 记忆方法    ▪.NET MVC 给loading数据加 ajax 等待laoding效果    ▪java 类之访问权限
▪extjs在myeclipse提示    ▪xml不提示问题    ▪Android应用程序运行的性能设计
▪sharepoint 2010 自定义列表启用版本记录控制 如...    ▪解决UIScrollView截获touch事件的一个极其简单有...    ▪Chain of Responsibility -- 责任链模式
▪运行skyeye缺少libbfd-2.18.50.0.2.20071001.so问题    ▪sharepoint 2010 使用sharepoint脚本STSNavigate方法实...    ▪让javascript显原型!
▪kohana基本安装配置    ▪MVVM开发模式实例解析    ▪sharepoint 2010 设置pdf文件在浏览器中访问
▪spring+hibernate+事务    ▪MyEclipse中文乱码,编码格式设置,文件编码格...    ▪struts+spring+hibernate用jquery实现数据分页异步加...
▪windows平台c++开发"麻烦"总结    ▪Android Wifi几点    ▪Myeclipse中JDBC连接池的配置
▪优化后的冒泡排序算法    ▪elasticsearch RESTful搜索引擎-(java jest 使用[入门])...    ▪MyEclipse下安装SVN插件SubEclipse的方法
▪100个windows平台C++开发错误之七编程    ▪串口转以太网模块WIZ140SR/WIZ145SR 数据手册(版...    ▪初识XML(三)Schema
▪Deep Copy VS Shallow Copy    ▪iphone游戏开发之cocos2d (七) 自定义精灵类,实...    ▪100个windows平台C++开发错误之八编程
▪C++程序的内存布局    ▪将不确定变为确定系列~Linq的批量操作靠的住...    ▪DIV始终保持在浏览器中央,兼容各浏览器版本
▪Activity生命周期管理之三——Stopping或者Restarti...    ▪《C语言参悟之旅》-读书笔记(八)    ▪C++函数参数小结
▪android Content Provider详解九    ▪简单的图片无缝滚动效果    ▪required artifact is missing.
▪c++编程风格----读书笔记(1)    ▪codeforces round 160    ▪【Visual C++】游戏开发笔记四十 浅墨DirectX教程...
▪【D3D11游戏编程】学习笔记十八:模板缓冲区...    ▪codeforces 70D 动态凸包    ▪c++编程风格----读书笔记(2)
▪Android窗口管理服务WindowManagerService计算Activity...    ▪keytool 错误: java.io.FileNotFoundException: MyAndroidKey....    ▪《HTTP权威指南》读书笔记---缓存
▪markdown    ▪[设计模式]总结    ▪网站用户行为分析在用户市场领域的应用
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3