一、在Android应用开发中,使用系统桌面背景作为应用的背景,需要把应用的背景设置为透明背景,然后设置窗口的属性为FLAG_SHOW_WALLPAPER即可显示背景。
1>.修改AndroidManifest.xml文件里面activity属性:
<activity android:name=".WallPaperTest"
android:label="@string/app_name"
android:theme="@android:style/Theme.Translucent">
2>.然后在使用的时候,在onCreate里面添加一个窗口属性
getWindow().addFlags(WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
二、背景拖动主要是使用了WallpaperManager这个类的两个方法
public voidsetWallpaperOffsetSteps(float xStep, float yStep)
1>.修改ScrollLayout的类,让它支持显示系统背景,并且拖动的时候背景也跟着拖动.基本类文件ScrollLayout.java
[java] view plain copy
packagecom.yao_guet;
importandroid.app.WallpaperManager;
importandroid.content.Context;
importandroid.os.IBinder;
importandroid.util.AttributeSet;
importandroid.util.Log;
importandroid.view.MotionEvent;
importandroid.view.VelocityTracker;
importandroid.view.View;
importandroid.view.ViewConfiguration;
importandroid.view.ViewGroup;
importandroid.widget.Scroller;
/**
* 仿Launcher中的WorkSapce,可以左右滑动切换屏幕的类,支持显示系统背景和滑动
* @author Hekang
* blog: 6600s.diandian.com
* date: 2012-04-22
*/
publicclassScrollLayoutextendsViewGroup {
privatestaticfinalString TAG ="ScrollLayout";
privateScroller mScroller;
privateVelocityTracker mVelocityTracker;
privateintmCurScreen;
privateintmDefaultScreen =0;
privatestaticfinalintTOUCH_STATE_REST =0;
privatestaticfinalintTOUCH_STATE_SCROLLING =1;
privatestaticfinalintSNAP_VELOCITY =600;
privateintmTouchState = TOUCH_STATE_REST;
privateintmTouchSlop;
privatefloatmLastMotionX;
privatefloatmLastMotionY;
privateWallpaperManager mWallpaperManager;
privateintmScrollX;
publicScrollLayout(Context context, AttributeSet attrs) {
this(context, attrs,0);
// TODO Auto-generated constructor stub
}
publicScrollLayout(Context context, AttributeSet attrs,intdefStyle) {
super(context, attrs, defStyle);
// TODO Auto-generated constructor stub
mWallpaperManager = WallpaperManager.getInstance(context);
mScroller =newScroller(context);
mCurScreen = mDefaultScreen;
mTouchSlop = ViewConfiguration.get(getContext()).getScaledTouchSlop();
}
@Override
protectedvoidonLayout(booleanchanged,intl,intt,intr,intb) {
// TODO Auto-generated method stub
Log.e(TAG,"onLayout");
intchildLeft =0;
finalintchildCount = getChildCount();
for(inti=0; i<childCount; i++) {
finalView childView = getChildAt(i);
if(childView.getVisibility() != View.GONE) {
finalintchildWidth = childView.getMeasuredWidth();
childView.layout(childLeft,0,
childLeft+childWidth, childView.getMeasuredHeight());
childLeft += childWidth;
}
}
updateWallpaperOffset();
}
@Override
protectedvoidonMeasure(intwidthMeasureSpec,intheightMeasureSpec) {
Log.e(TAG,"onMeasure");
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
finalintwidth = MeasureSpec.getSize(widthMeasureSpec);
finalintwidthMode = MeasureSpec.getMode(widthMeasureSpec);
if(widthMode != MeasureSpec.EXACTLY) {
thrownewIllegalStateException("ScrollLayout only canmCurScreen run at EXACTLY mode!");
}
finalintheightMode = MeasureSpec.getMode(heightMeasureSpec);
if(heightMode != MeasureSpec.EXACTLY) {
thrownewIllegalStateException("ScrollLayout only can run at EXACTLY mode!");
}
// The children are given the same width and height as the scrollLayout
finalintcount = getChildCount();
for(inti =0; i < count; i++) {
getChildAt(i).measure(widthMeasureSpec, heightMeasureSpec);
}
// Log.e(TAG, "moving to screen "+mCurScreen);
scrollTo(mCurScreen * width,0);
}
/**
* According to the position of current layout
* scroll to the destination page.
*/
publicvoidsnapToDestination() {
finalintscreenWidth = getWidth();
finalintdestScreen = (getScrollX()+ screenWidth/2)/screenWidth;
snapToScreen(destScreen);
}
publicvoidsnapToScreen(intwhichScreen) {
// get the valid layout page
whichScreen = Math.max(0, Math.min(whichScreen, getChildCount()-1));
if(getScrollX() != (whichScreen*getWidth())) {
finalintdelta = whichScreen*getWidth()-getScrollX();
mScroller.startScroll(getScrollX(),0,
delta,0, Math.abs(delta)*2);
mCurScreen = whichScreen;
invalidate();// Redraw the layout
}
}
publicvoidsetToScreen(intwhichScreen) {
whichScreen = Math.max(0, Math.min(whichScreen, getChildCount()-1));
mCurScreen = whichScreen;
scrollTo(whichScreen*getWidth(),0);
}
publicintgetCurScreen() {
returnmCurScreen;
}
@Override
publicvoidcomputeScroll() {
// TODO Auto-generated method stub
mScrollX = mScroller.getCurrX();
if(mScroller.computeScrollOffset()) {
scrollTo(mScroller.getCurrX(), mScroller.getCurrY());
updateWallpaperOffset();
postInvalidate();
}
}
@Override
publicbooleanonTouchEvent(MotionEvent event) {
// TODO Auto-generated method stub
if(mVelocityTracker ==null) {
mVelocityTracker = VelocityTracker.obtain();
}
mVelocityTracker.addMovement(event);
finalintaction = event.getAction();
finalfloatx = event.getX();
finalfloaty = event.getY();
switch(action) {
caseMotionEvent.ACTION_DOWN:
Log.e(TAG,"event down!");
if(!mScroller.isFinished()){
mScroller.abortAnimation();
}
mLastMotionX = x;
break;
caseMotionEvent.ACTION_MOVE:
intdeltaX = (int)(mLastMotionX - x);
mLastMotionX = x;
scrollBy(deltaX,0);
updateWallpaperOffset();
break;
caseMotionEvent.ACTION_UP:
Log.e(TAG,"event : up");
// if (mTouchState == TOUCH_STATE_SCROLLING) {
finalVelocityTracker velocityTracker = mVelocityTracker;
velocityTracker.computeCurrentVelocity(1000);
intvelocityX = (int) velocityTracker.getXVelocity();
Log.e(TAG,"velocityX:"+velocityX);
if(velocityX > SNAP_VELOCITY && mCurScreen >0) {
// Fling enough to move left
Log.e(TAG,"snap left");
snapToScreen(mCurScreen -1);
}elseif(velocityX < -SNAP_VELOCITY
&& mCurScreen < getChildCount() -1) {
// Fling enough to move right
Log.e(TAG,"snap right");
snapToScreen(mCurScreen +1);
}else{
snapToDestination();
}
if(mVelocityTracker !=null) {
mVelocityTracker.recycle();
mVelocityTracker =null;
}
// }
mTouchState = TOUCH_STATE_REST;
break;
caseMotionEvent.ACTION_CANCEL:
mTouchState = TOUCH_STATE_REST;
break;
}
returntrue;
}
@Override
publicbooleanonInterceptTouchEvent(MotionEvent ev) {
// TODO Auto-generated method stub
Log.e(TAG,"onInterceptTouchEvent-slop:"+mTouchSlop);
finalintaction = ev.getAction();
if((action == MotionEvent.ACTION_MOVE) &&
(mTouchState != TOUCH_STATE_REST)) {
returntrue;
}
finalfloatx = ev.getX();
finalfloaty = ev.getY();
switch(action) {
caseMotionEvent.ACTION_MOVE:
finalintxDiff = (int)Math.abs(mLastMotionX-x);
if(xDiff>mTouchSlop) {
mTouchState = TOUCH_STATE_SCROLLING;
}
break;
caseMotionEvent.ACTION_DOWN:
mLastMotionX = x;
mLastMotionY = y;
mTouchState = mScroller.isFinished()? TOUCH_STATE_REST : TOUCH_STATE_SCROLLING;
break;
caseMotionEvent.ACTION_CANCEL:
caseMotionEvent.ACTION_UP:
mTouchState = TOUCH_STATE_REST;
break;
}
returnmTouchState != TOUCH_STATE_REST;
}
privatevoidupdateWallpaperOffset() {
intscrollRange = getChildAt(getChildCount() -1).getRight() - getWidth();
IBinder token = getWindowToken();
if(token !=null) {
mWallpaperManager.setWallpaperOffsetSteps(1.0f / (getChildCount() -1),0);
mWallpaperManager.setWallpaperOffsets(getWindowToken(),
Math.max(0.f, Math.min(getScrollX()/(float)scrollRange,1.f)),0);
}
}
}
2>.测试代码WallPaperTest.java:
[java] view plain copy
packagecom.yao_guet;
importandroid.app.Activity;
importandroid.app.WallpaperManager;
importandroid.content.Context;
importandroid.os.Bundle;
importandroid.view.KeyEvent;
importandroid.view.Window;
importandroid.view.WindowManager;
publicclassWallPaperTestextendsActivity {
@Override
protectedvoidonCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.wallpaper_test);
getWindow().addFlags(WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
}
@Override
protectedvoidonDestroy() {
// TODO Auto-generated method stub
super.onDestroy();
}
@Override
publicbooleanonKeyDown(intkeyCode, KeyEvent event) {
// TODO Auto-generated method stub
returnsuper.onKeyDown(keyCode, event);
}
}
3>.layout布局文件wallpaper_test.xml:
[html] view plain copy
<?xmlversion="1.0"encoding="utf-8"?>
<com.sf.test.ScrollLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/WallPaperTest"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="This is page 1"/>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="This is page 2"/>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="This is page 3"/>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="This is page 4"/>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="This is page 5"/>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="This is page 6"/>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="This is page 7"/>
</LinearLayout>
</com.sf.test.ScrollLayout>
4>.最后记得修改AndroidManifest.xml文件
<activity android:name=".WallPaperTest"
android:label="@string/app_name"
android:theme="@android:style/Theme.Translucent">
相关推荐
前辈写的例子,正好做项目需要,对我帮助很大,整理成了代码工程。 原文地址: http://blog.csdn.net/yao_guet/article/details/6572739 如有侵犯您的权益,请告知我。
"Android类似桌面应用拖动的GridView"是指一个特殊定制的GridView,它模仿了Android桌面应用的交互方式,允许用户通过拖放操作来改变GridView中各个元素的位置。这种功能在创建自定义启动器、文件管理器或个性化布局...
在Android中,Drag and Drop(拖放)是一种交互方式,让用户可以通过触摸屏或物理按键将一个对象(如图标、文本或图片)从一处移动到另一处。在Launcher中,这个功能主要应用于移动应用快捷方式、小部件或文件夹的...
在Android系统中,桌面拖拽效果是用户交互的重要组成部分,它极大地提升了用户的操作体验。本文将深入探讨Android桌面拖拽效果的实现原理、关键技术和优化方法。 首先,我们需要理解Android桌面的基本架构。Android...
在Android系统中,Launcher是用户与设备交互的主要入口,它是一个桌面应用,负责显示应用程序的图标、快捷方式以及小部件等。"安卓Launcher桌面相关-Android实现图标拖拽"这个压缩包文件似乎包含了一些关于如何在...
总的来说,“可视化Android开发系统”借助BASIC语言的易用性,降低了Android应用开发的复杂度,使得更多人有机会参与到移动应用的创新之中。它不仅适合初学者入门,也对有经验的开发者提供了一种快速原型开发的途径...
在Android平台上,开发一款悬浮笔记应用是一项有趣且实用的任务,它允许用户在任何其他应用程序之上进行笔记记录,提高工作效率和学习便利性。本教程将详细讲解如何实现这样的功能,主要聚焦于Android悬浮框的使用。...
在Android系统中,桌面悬浮窗是一种非常实用的功能,它可以在用户使用其他应用程序的同时显示重要的信息或者提供便捷的操作入口。本文将深入探讨如何实现一个具备自由拖动和智能隐藏功能的Android桌面悬浮窗。 首先...
在Android中,可以使用`EditText`作为输入控件,用户在此输入文字。为了保存这些笔记,开发者通常会利用SQLite数据库进行本地存储,或者使用云同步服务如Google Drive进行远程备份。笔记数据结构的设计包括标题、...
4.2 将背景图片作为按钮 4.3 用toast实现提示 4.4 用checkbox实现一个简单的物品清单 4.5 实现同意条款效果 4.6 radiogroup选择 4.7 imageview相框 4.8 spinner选择处理 4.9 gallery相簿 4.10 用.iava.io.file实现...
在Android开发中,创建一个类似安卓系统桌面的用户体验,其中包括长按拖拽功能,是提升应用交互性的重要一环。这个项目"类似安卓系统桌面(长按拖拽效果)"显然是一个实现这一功能的示例代码,适用于Eclipse开发环境...
第10章 Android应用开发 实例 10.1 情境模式 10.2 文件管理器 10.3 通讯录 10.4 音乐播放器 10.5 天气预报 10.6 个人地图 10.7 Widget日历 10.8 小结 第11 章Android游戏开发实例 11.1 手机游戏开发简介 11.2 游戏...
本教程将详细介绍如何在Android中自定义Seekbar,包括设置自定义图片和背景颜色。 首先,我们需要创建一个新的XML布局文件来定义自定义Seekbar。这个文件通常会放在res/layout目录下,例如命名为`custom_seekbar....
《Android应用开发揭秘》全部实例源代码,配合《Android应用开发揭秘》使用 前言 第一部分 准备篇 第1章 Android开发简介 1.1 Android基本概念 1.1.1 Android简介 1.1.2 Android的系统构架 1.1.3 ...
- **概述**:深入讲解Android中的Service组件及其使用方法。 - **应用场景**:实现后台任务和服务。 **33. Android下添加耳机插拔提示** - **概述**:实现耳机插拔时的通知提示。 - **应用场景**:提高用户体验。 ...
Android中的坐标系统可能与用户预期的屏幕坐标不一致,因此需要进行坐标转换。使用`view.getLocationOnScreen(int[])`或`view.getX()`和`view.getY()`获取控件在屏幕上的绝对位置,再根据ACTION_MOVE事件中的偏移量...
在Android应用开发中,"Android应用源码之(鼠标关节拖拽Body)"的主题涉及到了一些高级的用户交互技术。这个源码可能包含了如何实现通过鼠标或触摸设备的关节拖动功能,让应用中的对象(例如游戏中的角色或者界面元素...
总之,Android中实现拖拽控件交换位置需要理解触摸事件处理,自定义ViewGroup并重写触摸事件,以及合理处理位置交换和边界检测。通过优化视觉效果和封装代码,可以提高用户体验并促进代码的复用。
杨丰盛,Android应用开发先驱,对Android有深入研究,实战经验极其丰富。精通Java、C、C++等语言,专注于移动通信软件开发,在机顶盒软件开发和MTK平台软件开发方面有非常深厚的积累。2007年获得中国软件行业协会...
总之,通过结合RecyclerView、ItemTouchHelper和自定义Adapter,我们可以轻松实现Android应用中的可拖拽移动列表。这个功能增强了用户的交互体验,使得数据排序变得更加直观和便捷。在实际开发中,根据项目需求,你...