Androidの通知アイコンを設定する方法は?
この例は、Android通知アイコンを設定する方法について示しています
ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。
ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。
<? xml version= "1.0" encoding= "utf-8" ?> <android.support.constraint.ConstraintLayout xmlns: android = "https://schemas.android.com/apk/res/android" xmlns: app = "https://schemas.android.com/apk/res-auto" xmlns: tools = "https://schemas.android.com/tools" android :layout_width= "match_parent" android :layout_height= "match_parent" android :padding= "16dp" tools :context= ".MainActivity" > <Button android :id= "@+id/btnCreateNotification" android :layout_width= "0dp" android :layout_height= "wrap_content" android :text= "Create notification" app :layout_constraintBottom_toBottomOf= "parent" app :layout_constraintEnd_toEndOf= "parent" app :layout_constraintStart_toStartOf= "parent" app :layout_constraintTop_toTopOf= "parent" /> </android.support.constraint.ConstraintLayout>
ステップ3 −次のコードをsrc / MainActivity.java
に追加しますpackage app.tutorialspoint.com.notifyme; import android.app.NotificationManager; import android.content.Context; import android.support.v4.app.NotificationCompat; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import java.util.Objects; public class MainActivity extends AppCompatActivity { private final static String default_notification_channel_id = "default"; @Override protected void onCreate (Bundle savedInstanceState) { super .onCreate(savedInstanceState); setContentView(R.layout. activity_main ); Button btnCreateNotification = findViewById(R.id. btnCreateNotification ); btnCreateNotification.setOnClickListener( new View.OnClickListener() { @Override public void onClick (View v) { NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(MainActivity. this, default_notification_channel_id ) .setSmallIcon(R.drawable. ic_launcher_foreground ) .setContentTitle( "Test" ) .setContentText( "Hello! This is my first push notification" ) ; NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context. NOTIFICATION_SERVICE ) ; mNotificationManager.notify( 1 , mBuilder.build()) ; } }); } }
ステップ4 −次のコードをandroidManifest.xmlに追加します
<? xml version= "1.0" encoding= "utf-8" ?> <manifest xmlns: android = "https://schemas.android.com/apk/res/android" package= "app.tutorialspoint.com.notifyme" > <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つを開き、ツールバーの[実行]アイコンをクリックします。オプションとしてモバイルデバイスを選択し、デフォルトの画面を表示するモバイルデバイスを確認します–
-
Android12でアプリのアイコンの形を変更する方法
Androidスマートフォンのアイコンの形を変更することは、スマートフォンに少しパーソナライズを追加するためのシンプルですが効果的な方法です。ただし、Android 12以降、アイコンの形状を変更するためのすべてのオプションが削除されたようです。 Androidでアイコンをカスタマイズできなくなりましたか?まあ、ある種。今日は、Android12のMaterialYouでアイコンの形を変更する方法と、もう少し柔軟性を高めるいくつかの追加オプションについて説明します。 Material You:あまり個人的ではない種類のパーソナライズ 残念ながら、私たちは悪いニュースから始めなければなりま
-
Android でアプリ アイコン バッジを有効または無効にする方法
Android フォンを使用している場合は、通知を受信すると、通知がロック画面にアラートとして表示されることをご存知でしょう。通知シェードを簡単にロック解除して下にスクロールして、通知を表示できます。これとは別に、LED ライトを有効にして、Android フォンの通知アラートに付随させることもできます。ただし、見逃した通知をすべて確認したい場合 アプリ アイコン バッジ ほとんどの Android スマートフォンは、このアプリ アイコン バッジの機能を提供していません。 このアプリ アイコン バッジ機能を使用すると、アプリのアイコンに、Android スマートフォンで特定のアプリの未読通知