【移動應(yīng)用開發(fā)技術(shù)】Android中怎么自定義一個全局懸浮按鈕_第1頁
【移動應(yīng)用開發(fā)技術(shù)】Android中怎么自定義一個全局懸浮按鈕_第2頁
【移動應(yīng)用開發(fā)技術(shù)】Android中怎么自定義一個全局懸浮按鈕_第3頁
【移動應(yīng)用開發(fā)技術(shù)】Android中怎么自定義一個全局懸浮按鈕_第4頁
【移動應(yīng)用開發(fā)技術(shù)】Android中怎么自定義一個全局懸浮按鈕_第5頁
免費預(yù)覽已結(jié)束,剩余1頁可下載查看

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報或認(rèn)領(lǐng)

文檔簡介

【移動應(yīng)用開發(fā)技術(shù)】Android中怎么自定義一個全局懸浮按鈕

本篇文章給大家分享的是有關(guān)Android中怎么自定義一個全局懸浮按鈕,在下覺得挺實用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著在下一起來看看吧。一、首先因為懸浮窗式的所以要添加權(quán)限,對于SDK>=23的需要動態(tài)獲取權(quán)限,我這邊用的是22的

<uses-permission

android:name="android.permission.SYSTEM_ALERT_WINDOW"

/>

<uses-permission

android:name="android.permission.WRITE_SETTINGS"/>二、通過application獲取到全局性的WindowManager的params數(shù)據(jù)

private

WindowManager.LayoutParams

wmParams=new

WindowManager.LayoutParams();

public

WindowManager.LayoutParams

getMywmParams(){

return

wmParams;

}三、自定義ImageView,并實現(xiàn)點擊具有狀態(tài)選擇.其中寫了一個回調(diào)接口用于對點擊事件的處理public

class

CustomeMovebutton

extends

ImageView

{

private

final

int

statusHeight;

int

sW;

int

sH;

private

float

mTouchStartX;

private

float

mTouchStartY;

private

float

x;

private

float

y;

private

boolean

isMove=false;

private

Context

context;

private

WindowManager

wm

=

(WindowManager)

getContext().getApplicationContext().getSystemService(Context.WINDOW_SERVICE);

private

WindowManager.LayoutParams

wmParams

=

((MyApplication)

getContext().getApplicationContext()).getMywmParams();

private

float

mLastX;

private

float

mLastY;

private

float

mStartX;

private

float

mStartY;

private

long

mDownTime;

private

long

mUpTime;

private

OnSpeakListener

listener;

public

CustomeMovebutton(Context

context)

{

this(context,null);

this.context

=

context;

}

public

CustomeMovebutton(Context

context,

AttributeSet

attrs)

{

this(context,

attrs,-1);

}

public

CustomeMovebutton(Context

context,

AttributeSet

attrs,

int

defStyleAttr)

{

super(context,

attrs,defStyleAttr);

sW

=

wm.getDefaultDisplay().getWidth();

sH

=

wm.getDefaultDisplay().getHeight();

statusHeight

=

getStatusHeight(context);

}

/**

*

狀態(tài)欄的高度

*

*/

public

static

int

getStatusHeight(Context

context)

{

int

statusHeight

=

-1;

try

{

Class

clazz

=

Class.forName("ernal.R$dimen");

//使用反射獲取實例

Object

object

=

clazz.newInstance();

int

height

=

Integer.parseInt(clazz.getField("status_bar_height")

.get(object).toString());

statusHeight

=

context.getResources().getDimensionPixelSize(height);

}

catch

(Exception

e)

{

e.printStackTrace();

}

return

statusHeight;

}

@Override

public

boolean

onTouchEvent(MotionEvent

event)

{

//獲取相對屏幕的坐標(biāo),即以屏幕左上角為原點

x

=

event.getRawX();

y

=

event.getRawY()

-

statusHeight;

//statusHeight是系統(tǒng)狀態(tài)欄的高度

switch

(event.getAction())

{

case

MotionEvent.ACTION_DOWN:

//按下

setImageResource(R.drawable.btn_voice_pressed);

mTouchStartX

=

event.getX();

mTouchStartY

=

event.getY();

mStartX

=

event.getRawX();

mStartY

=

event.getRawY();

mDownTime

=

System.currentTimeMillis();

isMove

=

false;

break;

case

MotionEvent.ACTION_MOVE:

//手指移動

updateViewPosition();

isMove

=

true;

break;

case

MotionEvent.ACTION_UP:

//手抬起

setImageResource(R.drawable.btn_voice_rest);

mLastX

=

event.getRawX();

mLastY

=

event.getRawY();

mUpTime

=

System.currentTimeMillis();

//按下到抬起的時間大于500毫秒,并且抬手到抬手絕對值大于20像素處理點擊事件

if(mUpTime

-

mDownTime

<

500){

if(Math.abs(mStartX-

mLastX

)<

20.0

&&

Math.abs(mStartY

-

mLastY)

<

20.0){

if

(listener!=null){

listener.onSpeakListener();

}

}

}

break;

}

return

true;

}

private

void

updateViewPosition()

{

wmParams.x

=

(int)

(x

-

mTouchStartX);

wmParams.y

=

(int)

(y-

mTouchStartY);

wm.updateViewLayout(this,

wmParams);

//刷新顯示

}

/**

*

設(shè)置點擊回調(diào)接口

*/

public

interface

OnSpeakListener{

void

onSpeakListener();

}

public

void

setOnSpeakListener(OnSpeakListener

listener){

this.listener=listener;

}

}四、Activity中使用,其中有設(shè)置圖片的參數(shù)和位置參數(shù)public

class

MainActivity

extends

AppCompatActivity{

private

WindowManager

wm;

private

WindowManager.LayoutParams

wmParams;

private

CustomeMovebutton

CustomeMovebutton;

@Override

protected

void

onCreate(Bundle

savedInstanceState)

{

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

wm

=

(WindowManager)

getApplicationContext().getSystemService(Context.WINDOW_SERVICE);

DisplayMetrics

dm

=

getResources().getDisplayMetrics();

int

widthPixels

=

dm.widthPixels;

int

heightPixels

=

dm.heightPixels;

wmParams

=

((MyApplication)

getApplication()).getMywmParams();

wmParams.type

=

WindowManager.LayoutParams.TYPE_SYSTEM_ALERT;

wmParams.format=

PixelFormat.RGBA_8888;//設(shè)置背景圖片

wmParams.flags=

WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL

|

WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE

;//

wmParams.gravity

=

Gravity.LEFT|Gravity.TOP;//

wmParams.x

=

widthPixels-150;

//設(shè)置位置像素

wmParams.y

=

heightPixels-110;

wmParams.width=200;

//設(shè)置圖片大小

wmParams.height=200;

CustomeMovebutton

=

new

CustomeMovebutton(getApplicationContext());

CustomeMovebutton.setImageResource(R.drawable.btn_voice_rest);

wm.addView(CustomeMovebutton,

wmParams);

CustomeMovebutton.setOnSpeakListener(new

CustomeMovebutton.OnSpeakListener()

{

@Override

public

void

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

最新文檔

評論

0/150

提交評論