feat: add wechat style native message forwarding

This commit is contained in:
kris
2026-03-28 08:39:08 +08:00
parent 200fc18210
commit 7109f1d3db
5 changed files with 464 additions and 12 deletions

View File

@@ -124,6 +124,7 @@
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
<LinearLayout
android:id="@+id/project_chat_composer_row"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/boss_surface"
@@ -163,4 +164,28 @@
android:textColor="@color/boss_surface"
android:textStyle="bold" />
</LinearLayout>
<LinearLayout
android:id="@+id/project_chat_multi_select_actions"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/boss_surface"
android:gravity="center_vertical"
android:orientation="horizontal"
android:paddingLeft="12dp"
android:paddingTop="10dp"
android:paddingRight="12dp"
android:paddingBottom="12dp"
android:visibility="gone">
<Button
android:id="@+id/project_chat_multi_forward"
android:layout_width="match_parent"
android:layout_height="44dp"
android:background="@drawable/bg_primary_button"
android:text="转发"
android:textAllCaps="false"
android:textColor="@color/boss_surface"
android:textStyle="bold" />
</LinearLayout>
</LinearLayout>