溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Android的手勢(shì)的保存

發(fā)布時(shí)間:2020-03-03 09:31:00 來(lái)源:網(wǎng)絡(luò) 閱讀:552 作者:YuLi1207 欄目:移動(dòng)開(kāi)發(fā)

 對(duì)手勢(shì)感到好奇從網(wǎng)上學(xué)習(xí)了一部分。

 保存:

 在xml中添加手勢(shì)繪制即類(lèi)似畫(huà)板可以繪制手勢(shì)的:

 <android.gesture.GestureOverlayView
        android:id="@+id/gesture"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

設(shè)置手勢(shì)的一些屬性:

mGov = (GestureOverlayView) findViewById(R.id.gesture);
		// 設(shè)置手勢(shì)多筆畫(huà)繪制
	mGov.setGestureStrokeType(GestureOverlayView.GESTURE_STROKE_TYPE_MULTIPLE);
		// 設(shè)置手勢(shì)繪制顏色
		mGov.setGestureColor(Color.BLUE);
		// 設(shè)置還未形成的手勢(shì)顏色為紅色
		mGov.setUncertainGestureColor(Color.RED);
		// 設(shè)置手勢(shì)粗細(xì)
		mGov.setGestureStrokeWidth(15);
		mGov.setGestureVisible(true);
		mGov.setFadeOffset(2000);
		// 綁定監(jiān)聽(tīng)
		mGov.addOnGesturePerformedListener(this);

設(shè)置手勢(shì)的監(jiān)聽(tīng):

// 手勢(shì)繪制完成后保存
		View dialogView = getLayoutInflater().inflate(R.layout.show_gesture,
				null);
		ImageView show = (ImageView) dialogView.findViewById(R.id.show);
		final EditText editext = (EditText) dialogView.findViewById(R.id.name);
		Bitmap bitmap = gesture.toBitmap(128, 128, 10, Color.BLACK);
		show.setImageBitmap(bitmap);

		new AlertDialog.Builder(MainActivity.this).setView(dialogView)
		.setPositiveButton("確定", new OnClickListener() {

			@Override
			public void onClick(DialogInterface dialog, int which) {
				GestureLibrary gestureLibrary = GestureLibraries
					.fromFile(Environment
						.getExternalStorageDirectory()
							+ File.separator + "yl_yl");
			gestureLibrary.addGesture(editext.getText().toString(),gesture);
				gestureLibrary.save();
				if (gestureLibrary.load()) {
					Toast.makeText(MainActivity.this, "保存成功",
							Toast.LENGTH_SHORT).show();
				} else {
					Toast.makeText(MainActivity.this, "保存失敗",
							Toast.LENGTH_SHORT).show();
				}
			}
		}).setNegativeButton("取消", null).show();

最后要解綁手勢(shì)監(jiān)聽(tīng):

protected void onDestroy() {
		mGov.removeOnGesturePerformedListener(this);
		super.onDestroy();
	}

手勢(shì)預(yù)覽xml:

Android的手勢(shì)的保存

這樣手勢(shì)就可以保存了。當(dāng)然為了可以保存多個(gè)手勢(shì),手勢(shì)的名字可以用時(shí)間來(lái)命名。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI