当前位置:  编程技术>移动开发
本页文章导读:
    ▪ViewFlipper的施用        ViewFlipper的使用 通过查看API文档可以发现,有个android.widget.ViewAnimator类继承至FrameLayout,ViewAnimator类的作用是为FrameLayout里面的View切换提供动画效果。该类有如下几个和动画相关的函数: l.........
    ▪ 图片圆角展示        图片圆角显示 首先加入头文件#import <QuartzCore/QuartzCore.h>,并载入CoreGraphics.framework框架。   self = [super initWithNibName:@"testViewController" bundle:nil]; if (self) { UIImageView *headerImage = self.image; C.........
    ▪ ViewFlipper组合手势OnGestureListener制作的滑动切换效果       ViewFlipper结合手势OnGestureListener制作的滑动切换效果 文章分类:移动开发 先要了解ViewFlipper,详细见: http://gundumw100.iteye.com/admin/blogs/896840 OnGestureListener和OnDoubleTapListener接口定义:  Java代.........

[1]ViewFlipper的施用
    来源: 互联网  发布时间: 2014-02-18
ViewFlipper的使用
通过查看API文档可以发现,有个android.widget.ViewAnimator类继承至FrameLayout,ViewAnimator类的作用是为FrameLayout里面的View切换提供动画效果。该类有如下几个和动画相关的函数:
l setInAnimation:设置View进入屏幕时候使用的动画,该函数有两个版本,一个接受单个参数,类型为android.view.animation.Animation;一个接受两个参数,类型为Context和int,分别为Context对象和定义Animation的resourceID。

setOutAnimation: 设置View退出屏幕时候使用的动画,参数setInAnimation函数一样。
showNext: 调用该函数来显示FrameLayout里面的下一个View。
showPrevious: 调用该函数来显示FrameLayout里面的上一个View。

一般不直接使用ViewAnimator而是使用它的两个子类ViewFlipper和ViewSwitcher。ViewFlipper可以用来指定FrameLayout内多个View之间的切换效果,可以一次指定也可以每次切换的时候都指定单独的效果。该类额外提供了如下几个函数:

isFlipping: 用来判断View切换是否正在进行
setFilpInterval:设置View之间切换的时间间隔
startFlipping:使用上面设置的时间间隔来开始切换所有的View,切换会循环进行
stopFlipping: 停止View切换
ViewSwitcher 顾名思义Switcher特指在两个View之间切换。可以通过该类指定一个ViewSwitcher.ViewFactory 工程类来创建这两个View。该类也具有两个子类ImageSwitcher、TextSwitcher分别用于图片和文本切换。


ViewFlipper示例
记住,ViewFlipper是继承至FrameLayout的,所以它是一个Layout里面可以放置多个View。在示例中定义一个ViewFlipper,里面包含三个ViewGroup作为示例的三个屏幕,每个ViewGroup中包含一个按钮和一张图片,点击按钮则显示下一个屏幕。代码如下(res\layout\main.xml):
view plaincopy to clipboardprint?
<?xml version="1.0" encoding="utf-8"?>   
<LinearLayout   
    xmlns:android="http://schemas.android.com/apk/res/android"  
    android:orientation="vertical"    
    android:layout_width="fill_parent"  
    android:layout_height="fill_parent">   
    <ViewFlipper android:id="@+id/details"  
       android:layout_width="fill_parent"    
       android:layout_height="fill_parent"  
       android:persistentDrawingCache="animation"  
       android:flipInterval="1000"  
       android:inAnimation="@anim/push_left_in"  
android:outAnimation="@anim/push_left_out"  
>    
       <LinearLayout   
           android:orientation="vertical"  
           android:layout_width="fill_parent"    
           android:layout_height="fill_parent">   
           <Button   
              android:text="Next"    
              android:id="@+id/Button_next1"  
              android:layout_width="fill_parent"    
              android:layout_height="wrap_content">   
           </Button>   
           <ImageView   
              android:id="@+id/image1"    
              android:src="/blog_article/@drawable/dell1/index.html"  
              android:layout_width="fill_parent"  
              android:layout_height="wrap_content">   
           </ImageView>   
       </LinearLayout>   
    
       <LinearLayout   
           android:orientation="vertical"  
           android:layout_width="fill_parent"    
           android:layout_height="fill_parent">   
           <Button   
              android:text="Next"    
              android:id="@+id/Button_next2"  
              android:layout_width="fill_parent"    
              android:layout_height="wrap_content">   
           </Button>   
           <ImageView   
              android:id="@+id/image2"    
              android:src="/blog_article/@drawable/lg/index.html"  
              android:layout_width="fill_parent"  
              android:layout_height="wrap_content">   
           </ImageView>   
       </LinearLayout>   
          
       <LinearLayout   
           android:orientation="vertical"  
           android:layout_width="fill_parent"    
           android:layout_height="fill_parent">   
           <Button   
              android:text="Next"    
              android:id="@+id/Button_next3"  
              android:layout_width="fill_parent"    
              android:layout_height="wrap_content">   
           </Button>   
           <ImageView   
              android:id="@+id/image3"    
              android:src="/blog_article/@drawable/lenovo/index.html"  
              android:layout_width="fill_parent"  
              android:layout_height="wrap_content">   
           </ImageView>   
       </LinearLayout>   
    
    </ViewFlipper>   
    
</LinearLayout>  

很简单,在Layout定义中指定动画的相关属性就可以了,通过persistentDrawingCache指定缓存策略;flipInterval指定每个View动画之间的时间间隔;inAnimation和outAnimation分别指定View进出使用的动画效果。动画效果定义如下:
view plaincopy to clipboardprint?
res\anim\push_left_in.xml   
<?xml version="1.0" encoding="utf-8"?>   
<set xmlns:android="http://schemas.android.com/apk/res/android">   
    <translate   
    android:fromXDelta="100%p"    
    android:toXDelta="0"    
    android:duration="500"/>   
    <alpha   
    android:fromAlpha="0.0"    
    android:toAlpha="1.0"  
    android:duration="500" />   
</set>   
res\anim\push_left_out.xml   
<?xml version="1.0" encoding="utf-8"?>   
<set xmlns:android="http://schemas.android.com/apk/res/android">   
    <translate   
    android:fromXDelta="0"    
    android:toXDelta="-100%p"    
    android:duration="500"/>   
    <alpha   
    android:fromAlpha="1.0"    
    android:toAlpha="0.0"    
    android:duration="500" />   
</set>  


Activity代码如下(src\cc\c\TestActivity.java):
view plaincopy to clipboardprint?
public class TestActivity extends Activity {   
    private ViewFlipper mViewFlipper;   
    @Override  
    public void onCreate(Bundle savedInstanceState) {   
        super.onCreate(savedInstanceState);   
        setContentView(R.layout.main);   
           
        Button buttonNext1 = (Button) findViewById(R.id.Button_next1);   
        mViewFlipper = (ViewFlipper) findViewById(R.id.flipper);   
        buttonNext1.setOnClickListener(new View.OnClickListener() {   
            public void onClick(View view) {   
                //在layout中定义的属性,也可以在代码中指定   
//             mViewFlipper.setInAnimation(getApplicationContext(), R.anim.push_left_in);   
//             mViewFlipper.setOutAnimation(getApplicationContext(), R.anim.push_left_out);   
//             mViewFlipper.setPersistentDrawingCache(ViewGroup.PERSISTENT_ALL_CACHES);   
//             mViewFlipper.setFlipInterval(1000);   
                mViewFlipper.showNext();   
                //调用下面的函数将会循环显示mViewFlipper内的所有View。   
//             mViewFlipper.startFlipping();   
        }   
        });   
    
        Button buttonNext2 = (Button) findViewById(R.id.Button_next2);   
        buttonNext2.setOnClickListener(new View.OnClickListener() {   
            public void onClick(View view) {   
                mViewFlipper.showNext();   
        }   
    
        });      
        Button buttonNext3 = (Button) findViewById(R.id.Button_next3);   
        buttonNext3.setOnClickListener(new View.OnClickListener() {   
            public void onClick(View view) {   
                mViewFlipper.showNext();   
        }   
    
        });   
    
    }   
    }  
通过手势移动屏幕
上面是通过屏幕上的按钮来在屏幕间切换的,这看起来多少有点不符合OPhone的风格,如果要是能通过手势的左右滑动来实现屏幕的切换就比较优雅了。
通过android.view.GestureDetector类可以检测各种手势事件,该类有两个回调接口分别用来通知具体的事件:

GestureDetector.OnDoubleTapListener:用来通知DoubleTap事件,类似于鼠标的双击事件,该接口有如下三个回调函数:

1.   onDoubleTap(MotionEvent e):通知DoubleTap手势,
2.   onDoubleTapEvent(MotionEvent e):通知DoubleTap手势中的事件,包含down、up和move事件(这里指的是在双击之间发生的事件,例如在同一个地方双击会产生DoubleTap手势,而在DoubleTap手势里面还会发生down和up事件,这两个事件由该函数通知);
3.   onSingleTapConfirmed(MotionEvent e):用来判定该次点击是SingleTap而不是DoubleTap,如果连续点击两次就是DoubleTap手势,如果只点击一次,OPhone系统等待一段时间后没有收到第二次点击则判定该次点击为SingleTap而不是DoubleTap,然后触发SingleTapConfirmed事件。
GestureDetector.OnGestureListener:用来通知普通的手势事件,该接口有如下六个回调函数:
1.   onDown(MotionEvent e):down事件;
2.   onSingleTapUp(MotionEvent e):一次点击up事件;
3.   onShowPress(MotionEvent e):down事件发生而move或则up还没发生前触发该事件;
4.   onLongPress(MotionEvent e):长按事件;
5.   onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY):滑动手势事件;
6.   onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY):在屏幕上拖动事件。

这些事件有些定义的不太容易理解,在示例项目中实现了所有的回调函数,在每个函数中输出相关的日志,对这些事件不理解的可以运行项目,通过不同的操作来触发事件,然后观看logcat输出日志可有助于对这些事件的理解。

在上述事件中,如果在程序中处理的该事件就返回true否则返回false,在GestureDetector中也定义了一个SimpleOnGestureListener类,这是个助手类,实现了上述的所有函数并且都返回false。如果在项目中只需要监听某个事件继承这个类可以少些几个空回调函数。

要走上面的程序中添加滑动手势来实现屏幕切换的话,首先需要定义一个GestureDetector:
private GestureDetector mGestureDetector;

并在onCreate函数中初始化:
mGestureDetector = new GestureDetector(this);

参数是OnGestureListener,然后让TestActivity实现 OnGestureListener 和OnDoubleTapListener接口:


view plaincopy to clipboardprint?
class TestActivity extends Activity implements OnGestureListener , OnDoubleTapListener  
然后在onFling函数中实现切换屏幕的功能:
view plaincopy to clipboardprint?
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX,   
           float velocityY) {   
       Log.d(tag, "...onFling...");   
       if(e1.getX() > e2.getX()) {//move to left   
           mViewFlipper.showNext();   
       }else if(e1.getX() < e2.getX()) {   
           mViewFlipper.setInAnimation(getApplicationContext(), R.anim.push_right_in);   
           mViewFlipper.setOutAnimation(getApplicationContext(), R.anim.push_right_out);   
           mViewFlipper.showPrevious();   
           mViewFlipper.setInAnimation(getApplicationContext(), R.anim.push_left_in);   
           mViewFlipper.setOutAnimation(getApplicationContext(), R.anim.push_left_out);   
       }else {   
           return false;   
       }   
       return true;   
    }  

这里实现的功能是从右往左滑动则切换到上一个View,从左往右滑动则切换到下一个View,并且使用不同的in、out 动画使切换效果看起来统一一些。
然后在onDoubleTap中实现双击自动切换的效果,再次双击则停止:
   
view plaincopy to clipboardprint?
public boolean onDoubleTap(MotionEvent e) {   
       Log.d(tag, "...onDoubleTap...");   
       if(mViewFlipper.isFlipping()) {   
           mViewFlipper.stopFlipping();   
       }else {   
           mViewFlipper.startFlipping();   
       }   
       return true;   
    }  

到这里手势代码就完成了,现在可以通过左右滑动切换View并且双击可以自动切换View。细心的读者这里可能会发现一个问题,上面在创建mGestureDetector 的时候使用的是如下代码:
mGestureDetector = new GestureDetector(this);

这里的参数为OnGestureListener,而且GestureDetector有个函数setOnDoubleTapListener来设置OnDoubleTapListener,在上面的代码中并没有设置OnDoubleTapListener,那么onDoubleTap事件是如何调用的呢?这里的玄机就要去探探 GestureDetector(OnGestureListener l)这个构造函数的源代码了:
view plaincopy to clipboardprint?
    public GestureDetector(OnGestureListener listener) {   
        this(null, listener, null);   
}  

调用了另外一个构造函数:
  
view plaincopy to clipboardprint?
public GestureDetector(Context context, OnGestureListener listener, Handler handler) {   
       if (handler != null) {   
           mHandler = new GestureHandler(handler);   
       } else {   
           mHandler = new GestureHandler();   
       }   
       mListener = listener;   
       if (listener instanceof OnDoubleTapListener) {   
           setOnDoubleTapListener((OnDoubleTapListener) listener);   
       }   
       init(context);   

注意到listener instanceof OnDoubleTapListener没有?现在明白了吧。


[功能]
1. ViewFlipper 可以包含多个View 且View之间的切换有Animation  比如:渐变效果


[代码]
1. 创建包含ViewFlipper 的main.xml 还包含2个Button 用于各个View切换
1.<?xml version="1.0" encoding="utf-8"?> 
2.<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
3.    android:orientation="vertical" 
4.    android:layout_width="fill_parent" 
5.    android:layout_height="fill_parent" 
6.    > 
7.    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
8.    android:orientation="horizontal" 
9.    android:layout_width="wrap_content" 
10.    android:layout_height="wrap_content" 
11.    > 
12.    <Button 
13.    android:id="@+id/previousButton"   
14.    android:layout_width="wrap_content"  
15.    android:layout_height="wrap_content"  
16.    android:text="Previous" 
17.    /> 
18.    <Button 
19.    android:id="@+id/nextButton"   
20.    android:layout_width="wrap_content"  
21.    android:layout_height="wrap_content"  
22.    android:text="Next" 
23.    /> 
24.    </LinearLayout> 
25.<ViewFlipper   
26.    android:id="@+id/flipper" 
27.    android:layout_width="fill_parent"  
28.    android:layout_height="fill_parent"  
29.    android:gravity="center" 
30.    > 
31.</ViewFlipper> 
32.</LinearLayout> 
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    >
<Button
android:id="@+id/previousButton" 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Previous"
    />
    <Button
android:id="@+id/nextButton" 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Next"
    />
    </LinearLayout>
<ViewFlipper 
android:id="@+id/flipper"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:gravity="center"
    >
</ViewFlipper>
</LinearLayout>



2. 设定 Animation 效果
1.flipper = (ViewFlipper) findViewById(R.id.flipper); 
2.flipper.setInAnimation(AnimationUtils.loadAnimation(this, 
3.                android.R.anim.fade_in)); 
4.flipper.setOutAnimation(AnimationUtils.loadAnimation(this, 
5.                android.R.anim.fade_out)); 
flipper = (ViewFlipper) findViewById(R.id.flipper);
flipper.setInAnimation(AnimationUtils.loadAnimation(this,
                android.R.anim.fade_in));
flipper.setOutAnimation(AnimationUtils.loadAnimation(this,
                android.R.anim.fade_out));

3. 在 ViewFlipper  里面增加各种View
1.flipper.addView(addTextByText("HelloAndroid")); 
2.        flipper.addView(addImageById(R.drawable.beijing_003_mb5ucom)); 
3.        flipper.addView(addTextByText("eoe.Android")); 
4.        flipper.addView(addImageById(R.drawable.beijing_004_mb5ucom)); 
5.        flipper.addView(addTextByText("Gryphone")); 
6. 
7.ublic View addTextByText(String text){ 
8.            TextView tv = new TextView(this); 
9.            tv.setText(text); 
10.            tv.setGravity(1); 
11.            return tv; 
12.    } 
13.     
14.    public View addImageById(int id){ 
15.        ImageView iv = new ImageView(this); 
16.        iv.setImageResource(id); 
17.         
18.        return iv; 
19.    } 
flipper.addView(addTextByText("HelloAndroid"));
        flipper.addView(addImageById(R.drawable.beijing_003_mb5ucom));
        flipper.addView(addTextByText("eoe.Android"));
        flipper.addView(addImageById(R.drawable.beijing_004_mb5ucom));
        flipper.addView(addTextByText("Gryphone"));

ublic View addTextByText(String text){
    TextView tv = new TextView(this);
    tv.setText(text);
    tv.setGravity(1);
    return tv;
    }
   
    public View addImageById(int id){
ImageView iv = new ImageView(this);
iv.setImageResource(id);

return iv;
    }


4. View 切换
* 下一个View
1.flipper.showNext(); 
flipper.showNext();

* 上一个View
1.flipper.showPrevious(); 

    
[2] 图片圆角展示
    来源: 互联网  发布时间: 2014-02-18
图片圆角显示

首先加入头文件#import <QuartzCore/QuartzCore.h>,并载入CoreGraphics.framework框架。

 

self = [super initWithNibName:@"testViewController" bundle:nil];
if (self) {
   UIImageView *headerImage = self.image;		
   CALayer *layer = [headerImage layer];
   [layer setMasksToBounds:YES];
   [layer setCornerRadius:5.0];
   [layer setBorderWidth:1.0];
   [layer setBorderColor:[[UIColor redColor] CGColor]];
}

    
[3] ViewFlipper组合手势OnGestureListener制作的滑动切换效果
    来源: 互联网  发布时间: 2014-02-18
ViewFlipper结合手势OnGestureListener制作的滑动切换效果


文章分类:移动开发
先要了解ViewFlipper,详细见: 
http://gundumw100.iteye.com/admin/blogs/896840 

OnGestureListener和OnDoubleTapListener接口定义: 
Java代码  
  • public interface OnGestureListener {  
  •                 // Touch down时触发, e为down时的MotionEvent  
  •                 boolean onDown(MotionEvent e);  
  •                 // 在Touch down之后一定时间(115ms)触发,e为down时的MotionEvent  
  •                 void onShowPress(MotionEvent e);  
  •                 // Touch up时触发,e为up时的MotionEvent  
  •                 boolean onSingleTapUp(MotionEvent e);  
  •                 // 滑动时触发,e1为down时的MotionEvent,e2为move时的MotionEvent  
  •                 boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY);  
  •                 // 在Touch down之后一定时间(500ms)触发,e为down时的MotionEvent  
  •                 void onLongPress(MotionEvent e);  
  •                 // 滑动一段距离,up时触发,e1为down时的MotionEvent,e2为up时的MotionEvent  
  •                 boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY);  
  • }  
  •    
  • public interface OnDoubleTapListener {  
  •                 // 完成一次单击,并确定没有二击事件后触发(300ms),e为down时的MotionEvent  
  •                 boolean onSingleTapConfirmed(MotionEvent e);  
  •                 // 第二次单击down时触发,e为第一次down时的MotionEvent  
  •                 boolean onDoubleTap(MotionEvent e);  
  •                 // 第二次单击down,move和up时都触发,e为不同时机下的MotionEvent  
  •                 boolean onDoubleTapEvent(MotionEvent e);  
  • }  


  • 实例: 
    Java代码  
  • import android.app.Activity;  
  • import android.os.Bundle;  
  • import android.view.GestureDetector;  
  • import android.view.MotionEvent;  
  • import android.view.View;  
  • import android.widget.Button;  
  • import android.widget.ViewFlipper;  
  •   
  • public class FlingSlideActivity extends Activity implements GestureDetector.OnGestureListener,GestureDetector.OnDoubleTapListener{  
  •     private ViewFlipper mViewFlipper;  
  •     private GestureDetector mGestureDetector;  
  •     /** Called when the activity is first created. */  
  •     @Override  
  •     public void onCreate(Bundle savedInstanceState) {  
  •         super.onCreate(savedInstanceState);  
  •         setContentView(R.layout.main);  
  •         mViewFlipper = (ViewFlipper) findViewById(R.id.flipper);  
  •         Button button1 = (Button) findViewById(R.id.Button1);     
  •         button1.setOnClickListener(new View.OnClickListener() {     
  •             public void onClick(View view) {  
  •                 mViewFlipper.showNext();     
  •             }     
  •         });  
  •         Button button2 = (Button) findViewById(R.id.Button2);     
  •         button2.setOnClickListener(new View.OnClickListener() {     
  •             public void onClick(View view) {  
  •                 mViewFlipper.showNext();     
  •             }     
  •         });        
  •         Button button3 = (Button) findViewById(R.id.Button3);     
  •         button3.setOnClickListener(new View.OnClickListener() {     
  •             public void onClick(View view) {  
  •                 mViewFlipper.showNext();     
  •             }  
  •         });  
  •         mGestureDetector = new GestureDetector(this);  
  •     }  
  •     //别忘了覆盖onTouchEvent方法  
  •     @Override  
  •     public boolean onTouchEvent(MotionEvent event) {  
  •         return mGestureDetector.onTouchEvent(event);  
  •     }  
  •     //以下是OnGestureListener需要实现的方法  
  •     public boolean onDown(MotionEvent e) {  
  •         // TODO Auto-generated method stub  
  •         return false;  
  •     }  
  •     public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX,  
  •             float velocityY) {  
  •         // TODO Auto-generated method stub  
  •         if(e1.getX() > e2.getX()) {//向左滑动  
  •             mViewFlipper.setInAnimation(getApplicationContext(), R.anim.push_left_in);     
  •             mViewFlipper.setOutAnimation(getApplicationContext(), R.anim.push_left_out);     
  •            mViewFlipper.showNext();     
  •        }else if(e1.getX() < e2.getX()) {//向右滑动  
  •            mViewFlipper.setInAnimation(getApplicationContext(), R.anim.push_right_in);     
  •            mViewFlipper.setOutAnimation(getApplicationContext(), R.anim.push_right_out);     
  •            mViewFlipper.showPrevious();     
  •        }else {     
  •            return false;     
  •        }     
  •        return true;  
  •     }  
  •   
  •     public void onLongPress(MotionEvent e) {  
  •         // TODO Auto-generated method stub  
  •           
  •     }  
  •   
  •     public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX,  
  •             float distanceY) {  
  •         // TODO Auto-generated method stub  
  •         return false;  
  •     }  
  •   
  •     public void onShowPress(MotionEvent e) {  
  •         // TODO Auto-generated method stub  
  •           
  •     }  
  •   
  •     public boolean onSingleTapUp(MotionEvent e) {  
  •         // TODO Auto-generated method stub  
  •         return false;  
  •     }  
  •     //以下是OnDoubleTapListener需要实现的方法  
  •     public boolean onDoubleTap(MotionEvent e) {  
  •         // TODO Auto-generated method stub  
  •            mViewFlipper.startFlipping(); //双击自动切换界面  
  •            return true;  
  •     }  
  •     public boolean onDoubleTapEvent(MotionEvent e) {  
  •         // TODO Auto-generated method stub  
  •         return false;  
  •     }  
  •     public boolean onSingleTapConfirmed(MotionEvent e) {  
  •         // TODO Auto-generated method stub  
  •         if(mViewFlipper.isFlipping()){ //单击结束自动切换  
  •             mViewFlipper.stopFlipping();  
  •         }  
  •         return false;  
  •     }  
  • font-size: 1em; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 38px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 10px; border-left-width: 1px; border-left-style:
  • 相关
    • 1 Android运用ViewFlipper做页面切换,与手势滑动切换的使用
    • 2 应用ViewFlipper和Gesture实现手势切换
    • 3 tabhost透过手势滑动切换activity
    • 4 tabhost经过手势滑动切换activity
    • 5 Android技术小结(001)—— Tab页面手势滑动切换以及动画效果
    移动开发-热门移动开发-最新移动开发-其它
    • 1 十分难缠的signal 11 (SIGSEGV)
    • 2 Can't create handler inside thread that has not called Looper.prepare() 错误有关问题
    • 3 Dex Loader Unable to execute Multiple dex files define解决办法
    • 4 解决 Google Play下载施用 "Google Play Store 已停止运行&quot
    • 5 WAP网页获得用户的手机号码
    • 6 如何判断Activity是否在运行
    • 7 SlidingMenu+ViewPager兑现侧滑菜单效果
    • 8 makeKeyAndVisible的功用
    • 9 关于Unable to execute dex: Java heap space 解决方法
    • 10 RelativeLayout设置居中对齐有关问题
    • 1 播发声音文件AVAudioPlayer
    • 2 改变银屏显示方式已经加载图片
    • 3 2013-十-31 TCP/IP 协议簇
    • 4 Java I/零 总体框架图
    • 5 拿碗的铠甲勇者
    • 6 女友可能出轨 想知道在QQ和别人的聊天记录
    • 7 objective C中的字符串(3)
    • 8 java.lang.ClassNotFoundException: Didn't find class "Activity" on path: /da
    • 9 LG Optimus G Pro 相干
    • 10 怎么创建对话框
    • 1 深入viewgroup.onintercepttouchevent1点
    • 2 视图切换的形式
    • 3 疑惑为什么报错了
    • 4 Tiledmap编辑操作技巧
    • 5 MGTemplateEngine模版发动机
    • 6 power键跟音量键组合实现截图功能
    • 7 用 lipo 下令裁剪出需要的 architecture
    • 8 实现默认文字统制的textview
    • 9 Andriod耗时操作的处置(音乐播放器欢迎界面)
    • 10 BroadcastReceiver要领
    • 上一篇: 图片圆角展示
    • 下一篇: sd卡 数据读取,展示在手机上


        
    最新技术文章:
    ▪Android开发之登录验证实例教程
    ▪Android开发之注册登录方法示例
    ▪Android获取手机SIM卡运营商信息的方法
    ▪Android实现将已发送的短信写入短信数据库的...
    ▪Android发送短信功能代码
    ▪Android根据电话号码获得联系人头像实例代码
    ▪Android中GPS定位的用法实例
    ▪Android实现退出时关闭所有Activity的方法
    ▪Android实现文件的分割和组装
    ▪Android录音应用实例教程
    ▪Android双击返回键退出程序的实现方法
    ▪Android实现侦听电池状态显示、电量及充电动...
    ▪Android获取当前已连接的wifi信号强度的方法
    ▪Android实现动态显示或隐藏密码输入框的内容
    ▪根据USER-AGENT判断手机类型并跳转到相应的app...
    ▪Android Touch事件分发过程详解
    ▪Android中实现为TextView添加多个可点击的文本
    ▪Android程序设计之AIDL实例详解
    ▪Android显式启动与隐式启动Activity的区别介绍
    ▪Android按钮单击事件的四种常用写法总结
    ▪Android消息处理机制Looper和Handler详解
    ▪Android实现Back功能代码片段总结
    ▪Android实用的代码片段 常用代码总结
    ▪Android实现弹出键盘的方法
    ▪Android中通过view方式获取当前Activity的屏幕截...
    ▪Android提高之自定义Menu(TabMenu)实现方法
    ▪Android提高之多方向抽屉实现方法
    ▪Android提高之MediaPlayer播放网络音频的实现方法...
    ▪Android提高之MediaPlayer播放网络视频的实现方法...
    ▪Android提高之手游转电视游戏的模拟操控
     


    站内导航:


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

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

    浙ICP备11055608号-3