我在Android中做了这类通知,但不知怎么得到了以下类型的异常。请帮我解决这个问题。我已经为rootview使用了height 64dp,这是通知的自定义视图。然后使用notificationCompat生成器中的setContent设置此自定义视图。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="64dp"
android:layout_marginLeft="@dimen/marginBig"
android:layout_marginRight="@dimen/marginBig">
<ImageView
android:id="@+id/mg_logo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="12dp"
android:src="@drawable/mg_round_image"/>
<TextView
android:id="@+id/mg_emergency"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@id/mg_logo"
android:layout_toRightOf="@id/mg_logo"
android:text="@string/mg_emergency_card"
android:textAppearance="@style/P1.Medium.Vermillion"/>
<TextView
android:id="@+id/call_ambulance"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@id/mg_emergency"
android:layout_alignParentRight="true"
android:layout_marginLeft="4dp"
android:layout_marginRight="@dimen/marginBig"
android:clickable="true"
android:text="@string/call_ambulance"
android:textAllCaps="true"
android:textAppearance="@style/P3.Bold.Vermillion"/>
<TextView
android:id="@+id/vertical_line"
android:layout_width="1dp"
android:layout_height="wrap_content"
android:layout_alignBottom="@id/mg_logo"
android:layout_alignTop="@id/call_ambulance"
android:layout_toLeftOf="@id/call_ambulance"
android:background="@color/divider_line">
</TextView>
<TextView
android:id="@+id/emergency_contact_number"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@id/mg_emergency"
android:layout_below="@id/mg_emergency"
android:layout_marginRight="8dp"
android:layout_toLeftOf="@id/vertical_line"
android:lines="2"
android:text="@string/my_emergency_contact"
android:textAppearance="@style/P2.Regular.Grey2"
tools:text="My Emergency Contact Manisha- 0987654321"/>
<TextView
android:id="@+id/horizontal_line"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_centerVertical="true"
android:layout_toRightOf="@id/vertical_line"
android:background="@color/divider_line">
</TextView>
<TextView
android:id="@+id/send_alert_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@id/call_ambulance"
android:layout_below="@id/call_ambulance"
android:layout_marginTop="8dp"
android:clickable="true"
android:text="@string/send_alerts"
android:textAllCaps="true"
android:textAppearance="@style/P3.Bold.Primary"/>
</RelativeLayout>
这个问题的答案是愚蠢的.....我只是将rootview(相对布局)的边距从@dimen/marginBig改为硬代码(16dp),它工作得很好。@m_awadi在这篇文章中的回答android-发布了错误通知-无法扩展RemoteViews:StatusBarNotification帮助我实现。
这在我的所有设备上都很好用,但: 我只在安装了Android牛轧糖的设备上收到了大量关于Crashlytics的问题: 致命异常:Android.app.RemoteServiceException:从包My.package发布了错误通知:无法展开以下内容的RemoteViews:StatusBarNotification(PKG=My.package User=UserHandle{0}ID=-
当我尝试为通知使用一些自定义布局时,我遇到了一个令人作呕的例外。我已经裁剪了图像和2个文本视图的通知,以方便解决方案的查找,但它仍然不会工作。所有类似问题的建议都于事无补((( 这是广播接收机的代码: 在Nexus4@4.4.4上测试
这个问题以前有人问过,但没有一个答案帮助我因此张贴我的案件。 我正在尝试使用布局文件构建自定义通知。但我得到以下错误: Android.app.RemoteServiceException:从包com.eswaraj.app.eswaraj发布的错误通知:无法展开以下内容的RemoteViews:StatusBarNotification(pkg=com.eswaraj.app.eswaraj u
这是我的代码: 有谁能帮我解决这个问题吗
有时我的应用程序会出现这种异常: 代码创建通知: