- 新增正则表达式解析崩溃日志,提取异常类型、消息、原因及堆栈信息 - 实现 extractBriefInfo() 方法,生成结构化的崩溃摘要 - 优化通知内容展示:异常类型 + 错误信息 + 关键堆栈(最多3行) - 添加摘要最大长度控制(200字符),防止内容过长 - 新增展开通知布局文件支持
27 lines
890 B
XML
27 lines
890 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="12dp">
|
|
|
|
<TextView
|
|
android:id="@+id/notification_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="16sp"
|
|
android:textStyle="bold"
|
|
android:textColor="#333333"
|
|
android:singleLine="true"
|
|
android:ellipsize="end" />
|
|
|
|
<TextView
|
|
android:id="@+id/notification_content"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
android:textSize="13sp"
|
|
android:textColor="#666666"
|
|
android:scrollbars="vertical" />
|
|
|
|
</LinearLayout> |