如何在安卓中获取并存储设备 ID?
本示例演示如何获取和存储 Android 中的设备 ID。
步骤 1 - 在 Android Studio 中新建一个项目,转到 File ⇒ New Project 然后填写所有必要信息以创建一个新项目。
步骤 2 - 将以下代码添加到 res/layout/activity_main.xml。
import android.provider.Settings; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.widget.TextView; public class MainActivity extends AppCompatActivity { TextView textView; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); textView = findViewById(R.id.textView); String ID = Settings.Secure.getString(getContentResolver(), Settings.Secure.ANDROID_ID); textView.setText("Device ID: "+ ID); } }
步骤 3 - 将以下代码添加到 src/MainActivity.java
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <TextView android:id="@+id/textView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:textSize="24sp" android:textStyle="bold"/> </RelativeLayout>
步骤 4 - 将以下代码添加到 androidManifest.xml
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="app.com.sample"> <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> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>
让我们尝试运行你的应用程序。我认为你已将真正的安卓移动设备连接到你的电脑。要在 Android Studio 中运行应用程序,请打开项目的某个 activity 文件,然后单击工具栏中的运行 图标。选择你的移动设备作为选项,然后检查你的移动设备,它将显示你的默认屏幕 -
广告