如何正确设置通知区域中的图标?

时间:2014-02-27 01:40:46

标签: android android-layout

我正在尝试在Android应用程序的通知区域中设置一个图标。

我注意到自动收报机中的图标似乎被切断了。当自动收报机消失时,通知区域中的图标看起来不错。这是我设置图标的代码:

String msg = "Calculation completed. Tap to view result.";
final Intent restartActivityIntent = new Intent(context, NumberOfPrimesActivity.class);
final PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, restartActivityIntent, PendingIntent.FLAG_UPDATE_CURRENT);
RemoteViews mContentView = new RemoteViews(context.getPackageName(), R.layout.custom_notification);
mContentView.setImageViewResource(R.id.image, R.drawable.two);
mContentView.setTextViewText(R.id.text, msg);
Notification.Builder notificationBuilder = new Notification.Builder(context).setSmallIcon(R.drawable.two).setContentTitle("Sum of Primes").setContentText(msg).setAutoCancel(true).setContentIntent(pendingIntent).setTicker(msg);
NotificationManager manager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
manager.notify(NOTIFICATION_ID, notificationBuilder.build());

这是我的通知的自定义布局:

<?xml version="1.0" encoding="utf-8"?>
   <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:id="@+id/toast_layout_root"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:background="#7777"
      android:padding="3dp">

      <ImageView android:id="@+id/image"
         android:layout_width="44dp"
         android:layout_height="44dp"
         android:layout_marginRight="10dp"
         android:contentDescription="alert"
         android:src="@drawable/two" />

      <TextView
         android:id="@+id/text"
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:textColor="#FFF"
         android:textSize="24sp" />

   </LinearLayout>

以下是我的res目录的样子:

enter image description here

two.png文件夹中的ldpi文件为22x22。

最后,这里有两个截图。第一个显示带有图标的自动收报机。第二个显示自动收报机消失后的图标。第二个屏幕截图中的图标看起来不错。

enter image description here enter image description here

更新

two.png文件夹中的mdpi文件为48x48。

two.png文件夹中的hdpi文件为72x72。

two.png文件夹中的xhdpi文件为92x92。

two.png文件夹中的xxhdpi文件为144x144。

我正在使用模拟器来测试我的程序。我有两个模拟器。一个是Nexus 7(800 x 1280),另一个是Nexus 4(768 x 1280)。

在两个模拟器上,自动收报机中的图标被切断。

1 个答案:

答案 0 :(得分:4)

看起来无论出于何种原因,自动调整视图中的图标都不会自动调整大小,但在通知视图中会显示。

根据Android Iconography“通知图标必须为24x24 dp。”,可转换为不同屏幕密度的以下尺寸:

ldpi:18 x 18px
mdpi:24 x 24px
hdpi:36 x 36px
xhdpi:48 x 48px

因此,如果您相应地调整two.png文件夹中的res图标,则不会在代码和通知视图中切断图标。