安卓初学者笔记(⼆):⼿机震动最简代码
初学者刚接触代码的时候,最容易被很代码搞晕,所以应当给初学者最⼩代的核⼼代码,先搞清楚核⼼代码,再进⾏知识扩展,这样学习的效果才会⽐较好。
⽹上有很多代码,让初学看的头晕眼花,安卓代码复杂的原因,主要有四个:
1、安卓本⾝的版本太多,编程环境相对复杂。
2、作者只讲关键点,但是不关键的地⽅也会影响程序执⾏。还有少数作者是绕着关键点不讲,只讲⽪⽑,⽬的是为了增加下载量。
3、作者术语太多,没有深⼊浅出,不会⽤⽣活化的语⾔讲解。
4、⽹上给出的代码太复杂,与初学者想实现的主要功能⽆关。
以⼿机震动为例(安卓5.0⾄7.0调试通过):
1、需要在l增加⼿机震动的使⽤权限。以下是完整代码:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="schemas.android/apk/res/android"
package="application">
<!-- 打开⼿机震动权限 -->
<uses-permission android:name="android.permission.VIBRATE" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
安卓下载app<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
2、在l页⾯描述⽂件中,增加两个按钮:
<?xml version="1.0" encoding="utf-8"?>
<straint.ConstraintLayout xmlns:android="schemas.android/apk/res/android"
xmlns:app="schemas.android/apk/res-auto"
xmlns:tools="schemas.android/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="application.MainActivity">
<Button
android:id="@+id/startButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="开始震动"
tools:layout_editor_absoluteX="135dp"
tools:layout_editor_absoluteY="50dp" />
<Button
android:id="@+id/stopButton"
android:layout_width="95dp"
android:layout_height="wrap_content"
android:layout_marginStart="132dp"
android:layout_marginTop="36dp"
android:text="停⽌震动"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/startButton" />
</straint.ConstraintLayout>
3、在主程序MainActivity⾥增加如下代码:
application;
t.Context;
import android.hardware.camera2.CameraManager;
import android.os.Vibrator;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class MainActivity extends AppCompatActivity {
private Button startButton,stopButton;
private Vibrator vibrator;
private CameraManager m_Camera ;
@Override
protected void onCreate(Bundle savedInstanceState) {
setContentView(R.layout.activity_main);
startButton=(Button)findViewById(R.id.startButton);
stopButton=(Button)findViewById(R.id.stopButton);
vibrator=(Vibrator)getSystemService(Context.VIBRATOR_SERVICE);
startButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//设置震动的参数
vibrator.vibrate(new long[]{1000,3000,1000,3000},-1);
}
});
stopButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
vibrator.cancel();
}
});
}
}
这样让⼿机震动的功能就实现了。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论