SMSView/TTSRuleView 的 cardCornerRadius 统一为全局配置:
- 5 个布局文件 app:cardCornerRadius="12dp" → "?attr/borderCornerRadius"
(listview_sms / listview_smsrecycle / listview_ttsplayrule
listview_ttsplayrule_simple / view_smssend)
修复 CardView 裁剪内部 bg_container_border 圆角描边:
- view_smssend.xml:SMSView(CardView)添加 android:padding="2dp"
使内部 LinearLayout 的 bg_container_border 描边不被裁剪
- view_smssend_part1.xml:android:padding 10dp→6dp 与圆角半径对齐
35 lines
1.0 KiB
XML
35 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="6dp" android:background="@drawable/bg_container_border">
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:textSize="20sp"
|
|
android:id="@+id/viewsmssendpart1TextView1"/>
|
|
|
|
<cc.winboll.studio.libaes.views.AOHPCTCSeekBar
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/viewsmssendpart1AOHPCTCSeekBar1"/>
|
|
|
|
<EditText
|
|
android:scrollbars="vertical"
|
|
android:maxHeight="150dp"
|
|
android:layout_width="match_parent"
|
|
android:inputType="textMultiLine"
|
|
android:layout_height="wrap_content"
|
|
android:padding="10dp"
|
|
android:id="@+id/viewsmssendpart1EditText1"
|
|
android:background="@drawable/bg_frame"/>
|
|
|
|
|
|
</LinearLayout>
|
|
|