Android
 Computer >> コンピューター >  >> プログラミング >> Android

プログラムでAndroid携帯モデルをチェックする方法は?


この例は、Androidフォンモデルをプログラムで確認する方法を示しています。

ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。

ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。

<? xml version= "1.0" encoding= "utf-8" ?>
<RelativeLayout xmlns: android = "https://schemas.android.com/apk/res/android"
   xmlns: tools = "https://schemas.android.com/tools"
   android :layout_width= "match_parent"
   android :layout_height= "match_parent"
   android :layout_margin= "16dp"
   tools :context= ".MainActivity" >
   <TextView
      android :gravity= "center"
      android :id= "@+id/textView"
      android :layout_width= "match_parent"
      android :layout_height= "wrap_content"
      android :layout_centerInParent= "true"
      android :textSize= "18sp" />
</RelativeLayout>

ステップ3 −次のコードをsrc / MainActivity.java

に追加します
package app.tutorialspoint.com.sample ;
import android.os.Build ;
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 ) ;
      textView .setText(getPhoneModel()) ;
   }
   private String getPhoneModel () {
      return Build. MODEL ;
   }
}

ステップ4 −次のコードをandroidManifest.xmlに追加します

<? xml version= "1.0" encoding= "utf-8" ?>
<manifest xmlns: android = "https://schemas.android.com/apk/res/android"
   package= "app.tutorialspoint.com.sample" >
   <uses-permission android :name= "android.permission.CALL_PHONE" />
   <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モバイルデバイスをコンピューターに接続していると思います。 android studioからアプリを実行するには、プロジェクトのアクティビティファイルの1つを開き、ツールバーの[実行]アイコンをクリックします。オプションとしてモバイルデバイスを選択し、デフォルトの画面を表示するモバイルデバイスを確認します–

プログラムでAndroid携帯モデルをチェックする方法は?


  1. Android スマートフォンがルート化されているかどうかを確認する方法

    Android の使用は、ユーザー フレンドリーで習得しやすく、操作しやすい OS バージョンにより、ユーザー数が大幅に増加しています。 Androidスマートフォンは、ユーザーに魅力的な優れた機能と仕様を提供します。さらに、Google Play ストアで 、ユーザーはさまざまなアプリケーションにアクセスして、複数のタスクを同時に実行できます。また、カスタマイズするための root 化のオプションも提供します。 「応援 」は、root アクセスを取得できるようにするプロセスです Android OS コードに。同様に、「脱獄」は iOS デバイスに使用される用語です。通常、Android

  2. Windows 10 または Windows 11 で Android 通知を確認する方法

    Android スマートフォンには、1 日中、非常に多くの通知が殺到しています。ほとんどの時間を Windows コンピューターで過ごす場合、通知を Windows 画面に表示したいと思うのは自然なことです。 ありがたいことに、Microsoft はこれを可能にする機能を 2019 年に導入しました。2019 年 4 月にテストとして開始されたこの機能は、Your Phone を作成することで可能になりました。 アプリは Android フォンの通知と同期します。 この機能は Windows 10 で導入されましたが、Microsoft は Windows 11 でもそれを維持しています。