修改联系人查询发送的窗口,设置输入框号码完全匹配某个联系人时,才显示号码对应的联系人名称。
This commit is contained in:
		| @@ -1,8 +1,8 @@ | |||||||
| #Created by .winboll/winboll_app_build.gradle | #Created by .winboll/winboll_app_build.gradle | ||||||
| #Fri Sep 05 17:21:44 GMT 2025 | #Fri Sep 05 17:49:46 GMT 2025 | ||||||
| stageCount=8 | stageCount=8 | ||||||
| libraryProject= | libraryProject= | ||||||
| baseVersion=15.3 | baseVersion=15.3 | ||||||
| publishVersion=15.3.7 | publishVersion=15.3.7 | ||||||
| buildCount=10 | buildCount=16 | ||||||
| baseBetaVersion=15.3.8 | baseBetaVersion=15.3.8 | ||||||
|   | |||||||
| @@ -57,7 +57,7 @@ public class ComposeSMSActivity extends BaseActivity { | |||||||
|     @Override |     @Override | ||||||
|     protected void onCreate(Bundle savedInstanceState) { |     protected void onCreate(Bundle savedInstanceState) { | ||||||
|         super.onCreate(savedInstanceState); |         super.onCreate(savedInstanceState); | ||||||
| 		LogUtils.d(TAG, "onCreate"); |         LogUtils.d(TAG, "onCreate"); | ||||||
|         setContentView(R.layout.activity_composesms); |         setContentView(R.layout.activity_composesms); | ||||||
|  |  | ||||||
|         // 初始化Intent数据(增加空判断,避免NullPointerException) |         // 初始化Intent数据(增加空判断,避免NullPointerException) | ||||||
| @@ -117,8 +117,9 @@ public class ComposeSMSActivity extends BaseActivity { | |||||||
| 				} | 				} | ||||||
| 			}); | 			}); | ||||||
|  |  | ||||||
|         // 初始化联系人列表 |         // 初始化联系人列表(关键:设置单选模式,确保选中状态生效) | ||||||
|         mlvContracts = (ListView) findViewById(R.id.activitycomposesmsListView1); |         mlvContracts = (ListView) findViewById(R.id.activitycomposesmsListView1); | ||||||
|  |         mlvContracts.setChoiceMode(ListView.CHOICE_MODE_SINGLE); // 开启单选,与布局中一致 | ||||||
|  |  | ||||||
|         // 初始化号码输入框(核心:优化文本变化监听逻辑) |         // 初始化号码输入框(核心:优化文本变化监听逻辑) | ||||||
|         metTO = (EditText) findViewById(R.id.activitycomposesmsEditText1); |         metTO = (EditText) findViewById(R.id.activitycomposesmsEditText1); | ||||||
| @@ -172,7 +173,7 @@ public class ComposeSMSActivity extends BaseActivity { | |||||||
|         } |         } | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     // 核心优化:根据输入号码筛选列表(无结果则显示空列表) |     // 核心优化:根据输入号码筛选列表(无结果则显示空列表,优化选中逻辑) | ||||||
|     private void filterListByPhone(String inputPhone) { |     private void filterListByPhone(String inputPhone) { | ||||||
|         PhoneUtil phoneUtil = new PhoneUtil(this); |         PhoneUtil phoneUtil = new PhoneUtil(this); | ||||||
|         List<PhoneBean> allContacts = phoneUtil.getPhoneList(); |         List<PhoneBean> allContacts = phoneUtil.getPhoneList(); | ||||||
| @@ -180,7 +181,7 @@ public class ComposeSMSActivity extends BaseActivity { | |||||||
|  |  | ||||||
|         // 遍历所有联系人,匹配包含输入号码的联系人 |         // 遍历所有联系人,匹配包含输入号码的联系人 | ||||||
|         for (PhoneBean contact : allContacts) { |         for (PhoneBean contact : allContacts) { | ||||||
|             if (contact.getTelPhone().contains(inputPhone)  |             if (contact.getTelPhone().contains(inputPhone) | ||||||
|                 || phoneUtil.isTheSamePhoneNumber(contact.getTelPhone(), inputPhone)) { |                 || phoneUtil.isTheSamePhoneNumber(contact.getTelPhone(), inputPhone)) { | ||||||
|                 matchedContacts.add(contact); |                 matchedContacts.add(contact); | ||||||
|             } |             } | ||||||
| @@ -191,22 +192,29 @@ public class ComposeSMSActivity extends BaseActivity { | |||||||
|         // 用筛选结果更新列表(无结果则传入空列表) |         // 用筛选结果更新列表(无结果则传入空列表) | ||||||
|         initAdapter(matchedContacts.isEmpty() ? new ArrayList<PhoneBean>() : matchedContacts); |         initAdapter(matchedContacts.isEmpty() ? new ArrayList<PhoneBean>() : matchedContacts); | ||||||
|  |  | ||||||
|         // 定位到第一个匹配项(如果有) |         // 定位并选中匹配项(如果有) | ||||||
|         if (!matchedContacts.isEmpty()) { |         if (!matchedContacts.isEmpty()) { | ||||||
| 			//LogUtils.d(TAG, String.format("matchedContacts.size() %d", matchedContacts.size())); |             boolean isFound = false; | ||||||
| 			// 先设置列表选中项 |             for (int i = 0; i < matchedContacts.size(); i++) { | ||||||
|             //mlvContracts.setSelection(0); |                 PhoneBean item = matchedContacts.get(i); | ||||||
| 			for (int i = 0; i < matchedContacts.size(); i++) { |                 // 精确匹配号码(兼容区域码格式) | ||||||
| 				PhoneBean item = matchedContacts.get(i); |                 if (phoneUtil.isTheSamePhoneNumber(item.getTelPhone(), inputPhone)) { | ||||||
| 				//LogUtils.d(TAG, String.format("item.getTelPhone() %s", item.getTelPhone())); |                     mtvTOName.setText(item.getName()); | ||||||
| 				//LogUtils.d(TAG, String.format("metTO.getText() %s", metTO.getText())); |                     // 关键:先滚动到目标位置,再设置选中状态 | ||||||
| 				if (item.getTelPhone().equals(metTO.getText().toString())) { |                     mlvContracts.setSelection(i); | ||||||
| 					mtvTOName.setText(item.getName()); |                     // 主动设置选中(确保样式生效,兼容部分系统) | ||||||
| 					mlvContracts.setSelection(i); |                     mlvContracts.setItemChecked(i, true); | ||||||
| 					LogUtils.d(TAG, String.format("%s match %s", metTO.getText().toString(), item.getTelPhone())); |                     LogUtils.d(TAG, String.format("%s 匹配 %s,选中位置:%d", inputPhone, item.getTelPhone(), i)); | ||||||
| 					break; |                     isFound = true; | ||||||
| 				} |                     break; | ||||||
| 			} |                 } | ||||||
|  |             } | ||||||
|  |             // 若未精确匹配,选中第一个结果 | ||||||
|  |             /*if (!isFound) { | ||||||
|  |                 mlvContracts.setSelection(0); | ||||||
|  |                 mlvContracts.setItemChecked(0, true); | ||||||
|  |                 mtvTOName.setText(matchedContacts.get(0).getName()); | ||||||
|  |             }*/ | ||||||
|         } else { |         } else { | ||||||
|             mtvTOName.setText(""); // 无结果时清空姓名显示 |             mtvTOName.setText(""); // 无结果时清空姓名显示 | ||||||
|         } |         } | ||||||
| @@ -219,7 +227,9 @@ public class ComposeSMSActivity extends BaseActivity { | |||||||
|         List<PhoneBean> matchedContacts = phoneUtil.getPhonesByName(searchName); |         List<PhoneBean> matchedContacts = phoneUtil.getPhonesByName(searchName); | ||||||
|         initAdapter(matchedContacts); |         initAdapter(matchedContacts); | ||||||
|         if (!matchedContacts.isEmpty()) { |         if (!matchedContacts.isEmpty()) { | ||||||
|  |             // 选中第一个结果并设置样式 | ||||||
|             mlvContracts.setSelection(0); |             mlvContracts.setSelection(0); | ||||||
|  |             mlvContracts.setItemChecked(0, true); | ||||||
|         } |         } | ||||||
|     } |     } | ||||||
|  |  | ||||||
| @@ -259,7 +269,7 @@ public class ComposeSMSActivity extends BaseActivity { | |||||||
|         return 0; |         return 0; | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     // 初始化或更新列表适配器 | 	// 初始化或更新列表适配器 | ||||||
|     private void initAdapter(List<PhoneBean> initData) { |     private void initAdapter(List<PhoneBean> initData) { | ||||||
|         mAdapterData.clear(); // 清空旧数据 |         mAdapterData.clear(); // 清空旧数据 | ||||||
|         final PhoneUtil phoneUtil = new PhoneUtil(this); |         final PhoneUtil phoneUtil = new PhoneUtil(this); | ||||||
| @@ -293,19 +303,45 @@ public class ComposeSMSActivity extends BaseActivity { | |||||||
|             mSimpleAdapter.setDropDownViewResource(R.layout.listview_contracts); |             mSimpleAdapter.setDropDownViewResource(R.layout.listview_contracts); | ||||||
|             mlvContracts.setAdapter(mSimpleAdapter); |             mlvContracts.setAdapter(mSimpleAdapter); | ||||||
|  |  | ||||||
|             // 列表项点击事件 |             // 列表项点击事件:点击时主动设置选中状态,确保样式突显 | ||||||
|             mlvContracts.setOnItemClickListener(new AdapterView.OnItemClickListener() { |             mlvContracts.setOnItemClickListener(new AdapterView.OnItemClickListener() { | ||||||
| 					@Override | 					@Override | ||||||
| 					public void onItemClick(AdapterView<?> parent, View view, int position, long id) { | 					public void onItemClick(AdapterView<?> parent, View view, int position, long id) { | ||||||
| 						if (position < mAdapterData.size()) { | 						if (position < mAdapterData.size()) { | ||||||
|  | 							// 1. 主动设置当前项为选中状态 | ||||||
|  | 							mlvContracts.setItemChecked(position, true); | ||||||
|  | 							// 2. 更新号码输入框和姓名显示 | ||||||
| 							String phone = mAdapterData.get(position).get(MAP_PHONE).toString(); | 							String phone = mAdapterData.get(position).get(MAP_PHONE).toString(); | ||||||
| 							metTO.setText(phone); | 							metTO.setText(phone); | ||||||
| 							mtvTOName.setText(phoneUtil.getNameByPhone(phone)); | 							mtvTOName.setText(phoneUtil.getNameByPhone(phone)); | ||||||
|  | 							// 3. 滚动到点击位置(确保可见) | ||||||
|  | 							mlvContracts.setSelection(position); | ||||||
| 						} | 						} | ||||||
| 					} | 					} | ||||||
| 				}); | 				}); | ||||||
|  |  | ||||||
|  |             // 列表项选中状态变化监听(可选,增强选中反馈) | ||||||
|  |             mlvContracts.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() { | ||||||
|  | 					@Override | ||||||
|  | 					public void onItemSelected(AdapterView<?> parent, View view, int position, long id) { | ||||||
|  | 						// 选中时可添加额外反馈(如改变文本颜色,可选) | ||||||
|  | 						if (view != null) { | ||||||
|  | 							TextView tvName = (TextView) view.findViewById(R.id.listviewcontractsTextView1); | ||||||
|  | 							TextView tvPhone = (TextView) view.findViewById(R.id.listviewcontractsTextView2); | ||||||
|  | 							if (tvName != null) tvName.setTextColor(getResources().getColor(R.color.white)); | ||||||
|  | 							if (tvPhone != null) tvPhone.setTextColor(getResources().getColor(R.color.white)); | ||||||
|  | 						} | ||||||
|  | 					} | ||||||
|  |  | ||||||
|  | 					@Override | ||||||
|  | 					public void onNothingSelected(AdapterView<?> parent) { | ||||||
|  | 						// 未选中时无操作 | ||||||
|  | 					} | ||||||
|  | 				}); | ||||||
|         } else { |         } else { | ||||||
|             mSimpleAdapter.notifyDataSetChanged(); // 数据更新时通知适配器 |             // 数据更新时,先取消所有旧选中状态,再通知适配器刷新 | ||||||
|  |             mlvContracts.clearChoices(); | ||||||
|  |             mSimpleAdapter.notifyDataSetChanged(); | ||||||
|         } |         } | ||||||
|     } |     } | ||||||
|  |  | ||||||
|   | |||||||
| @@ -0,0 +1,9 @@ | |||||||
|  | <?xml version="1.0" encoding="utf-8"?> | ||||||
|  | <selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||||||
|  |     <!-- 选中状态:深灰色背景(可根据需求调整颜色) --> | ||||||
|  |     <item android:state_selected="true" android:drawable="@color/list_item_selected"/> | ||||||
|  |     <!-- 按压状态:浅灰色背景 --> | ||||||
|  |     <item android:state_pressed="true" android:drawable="@color/list_item_pressed"/> | ||||||
|  |     <!-- 默认状态:透明背景 --> | ||||||
|  |     <item android:drawable="@android:color/transparent"/> | ||||||
|  | </selector> | ||||||
| @@ -1,109 +1,112 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||||
| <LinearLayout | <LinearLayout | ||||||
| 	xmlns:android="http://schemas.android.com/apk/res/android" |     xmlns:android="http://schemas.android.com/apk/res/android" | ||||||
| 	android:orientation="vertical" |     android:orientation="vertical" | ||||||
| 	android:layout_width="match_parent" |     android:layout_width="match_parent" | ||||||
| 	android:layout_height="match_parent"> |     android:layout_height="match_parent"> | ||||||
|  |  | ||||||
| 	<cc.winboll.studio.libaes.views.AToolbar |     <cc.winboll.studio.libaes.views.AToolbar | ||||||
| 		android:layout_width="match_parent" |         android:layout_width="match_parent" | ||||||
| 		android:layout_height="@dimen/toolbar_height" |         android:layout_height="@dimen/toolbar_height" | ||||||
| 		android:id="@+id/activitycomposesmsASupportToolbar1"/> |         android:id="@+id/activitycomposesmsASupportToolbar1"/> | ||||||
|  |  | ||||||
| 	<LinearLayout |     <LinearLayout | ||||||
| 		android:orientation="horizontal" |         android:orientation="horizontal" | ||||||
| 		android:layout_width="match_parent" |         android:layout_width="match_parent" | ||||||
| 		android:layout_height="wrap_content" |         android:layout_height="wrap_content" | ||||||
| 		android:background="@drawable/bg_frame"> |         android:background="@drawable/bg_frame"> | ||||||
|  |  | ||||||
| 		<RelativeLayout |         <RelativeLayout | ||||||
| 			android:layout_width="match_parent" |             android:layout_width="match_parent" | ||||||
| 			android:layout_height="wrap_content" |             android:layout_height="wrap_content" | ||||||
| 			android:id="@+id/activitycomposesmsRelativeLayout1"> |             android:id="@+id/activitycomposesmsRelativeLayout1"> | ||||||
|  |  | ||||||
| 			<LinearLayout |             <LinearLayout | ||||||
| 				android:orientation="horizontal" |                 android:orientation="horizontal" | ||||||
| 				android:layout_width="wrap_content" |                 android:layout_width="wrap_content" | ||||||
| 				android:layout_height="wrap_content" |                 android:layout_height="wrap_content" | ||||||
| 				android:id="@+id/activitycomposesmsLinearLayout1" |                 android:id="@+id/activitycomposesmsLinearLayout1" | ||||||
| 				android:gravity="center_vertical" |                 android:gravity="center_vertical" | ||||||
| 				android:layout_alignParentRight="true" |                 android:layout_alignParentRight="true" | ||||||
| 				android:layout_marginRight="10dp" |                 android:layout_marginRight="10dp" | ||||||
| 				android:layout_marginLeft="10dp" |                 android:layout_marginLeft="10dp" | ||||||
| 				android:layout_alignParentLeft="true"> |                 android:layout_alignParentLeft="true"> | ||||||
|  |  | ||||||
| 				<TextView |                 <TextView | ||||||
| 					android:layout_width="wrap_content" |                     android:layout_width="wrap_content" | ||||||
| 					android:layout_height="wrap_content" |                     android:layout_height="wrap_content" | ||||||
| 					android:text="(拼音搜索):"/> |                     android:text="(拼音搜索):"/> | ||||||
|  |  | ||||||
| 				<EditText |                 <EditText | ||||||
| 					android:layout_width="80dp" |                     android:layout_width="80dp" | ||||||
| 					android:ems="10" |                     android:ems="10" | ||||||
| 					android:layout_height="wrap_content" |                     android:layout_height="wrap_content" | ||||||
| 					android:id="@+id/activitycomposesmsEditText2"/> |                     android:id="@+id/activitycomposesmsEditText2"/> | ||||||
|  |  | ||||||
| 				<TextView |                 <TextView | ||||||
| 					android:layout_width="wrap_content" |                     android:layout_width="wrap_content" | ||||||
| 					android:layout_height="wrap_content" |                     android:layout_height="wrap_content" | ||||||
| 					android:layout_alignParentTop="true" |                     android:layout_alignParentTop="true" | ||||||
| 					android:layout_toRightOf="@id/activitycomposesmsEditText2" |                     android:layout_toRightOf="@id/activitycomposesmsEditText2" | ||||||
| 					android:id="@+id/activitycomposesmsTextView2" |                     android:id="@+id/activitycomposesmsTextView2" | ||||||
| 					android:layout_weight="1.0"/> |                     android:layout_weight="1.0"/> | ||||||
|  |  | ||||||
| 			</LinearLayout> |             </LinearLayout> | ||||||
|  |  | ||||||
| 			<LinearLayout |             <LinearLayout | ||||||
| 				android:orientation="horizontal" |                 android:orientation="horizontal" | ||||||
| 				android:layout_below="@id/activitycomposesmsLinearLayout1" |                 android:layout_below="@id/activitycomposesmsLinearLayout1" | ||||||
| 				android:layout_alignParentRight="true" |                 android:layout_alignParentRight="true" | ||||||
| 				android:layout_marginRight="10dp" |                 android:layout_marginRight="10dp" | ||||||
| 				android:layout_marginLeft="10dp" |                 android:layout_marginLeft="10dp" | ||||||
| 				android:layout_alignParentLeft="true" |                 android:layout_alignParentLeft="true" | ||||||
| 				android:layout_width="wrap_content" |                 android:layout_width="wrap_content" | ||||||
| 				android:layout_height="wrap_content" |                 android:layout_height="wrap_content" | ||||||
| 				android:gravity="center_vertical"> |                 android:gravity="center_vertical"> | ||||||
|  |  | ||||||
| 				<TextView |                 <TextView | ||||||
| 					android:layout_width="wrap_content" |                     android:layout_width="wrap_content" | ||||||
| 					android:layout_height="wrap_content" |                     android:layout_height="wrap_content" | ||||||
| 					android:text="(SMS TO) :" |                     android:text="(SMS TO) :" | ||||||
| 					android:id="@+id/activitycomposesmsTextView1"/> |                     android:id="@+id/activitycomposesmsTextView1"/> | ||||||
|  |  | ||||||
| 				<EditText |                 <EditText | ||||||
| 					android:layout_width="wrap_content" |                     android:layout_width="wrap_content" | ||||||
| 					android:inputType="phone" |                     android:inputType="phone" | ||||||
| 					android:layout_height="wrap_content" |                     android:layout_height="wrap_content" | ||||||
| 					android:ems="10" |                     android:ems="10" | ||||||
| 					android:id="@+id/activitycomposesmsEditText1"/> |                     android:id="@+id/activitycomposesmsEditText1"/> | ||||||
|  |  | ||||||
| 			</LinearLayout> |             </LinearLayout> | ||||||
|  |  | ||||||
| 		</RelativeLayout> |         </RelativeLayout> | ||||||
|  |  | ||||||
| 	</LinearLayout> |     </LinearLayout> | ||||||
|  |  | ||||||
| 	<RelativeLayout |     <RelativeLayout | ||||||
| 		android:layout_width="match_parent" |         android:layout_width="match_parent" | ||||||
| 		android:layout_height="0dp" |         android:layout_height="0dp" | ||||||
| 		android:padding="10dp" |         android:padding="10dp" | ||||||
| 		android:layout_weight="1.0"> |         android:layout_weight="1.0"> | ||||||
|  |  | ||||||
| 		<ListView |         <!-- 关键修改:添加 listSelector 属性,关联选中样式 --> | ||||||
| 			android:layout_alignParentTop="true" |         <ListView | ||||||
| 			android:layout_width="match_parent" |             android:layout_alignParentTop="true" | ||||||
| 			android:layout_height="wrap_content" |             android:layout_width="match_parent" | ||||||
| 			android:layout_above="@+id/activitycomposesmsinclude1" |             android:layout_height="wrap_content" | ||||||
| 			android:id="@+id/activitycomposesmsListView1"/> |             android:layout_above="@+id/activitycomposesmsinclude1" | ||||||
|  |             android:id="@+id/activitycomposesmsListView1" | ||||||
|  |             android:listSelector="@drawable/listview_item_selector" | ||||||
|  |             android:choiceMode="singleChoice"/> <!-- 开启单选模式,确保选中状态唯一 --> | ||||||
|  |  | ||||||
| 		<include |         <include | ||||||
| 			layout="@layout/view_smssend" |             layout="@layout/view_smssend" | ||||||
| 			android:layout_alignParentBottom="true" |             android:layout_alignParentBottom="true" | ||||||
| 			android:layout_width="match_parent" |             android:layout_width="match_parent" | ||||||
| 			android:layout_height="wrap_content" |             android:layout_height="wrap_content" | ||||||
| 			android:id="@+id/activitycomposesmsinclude1"/> |             android:id="@+id/activitycomposesmsinclude1"/> | ||||||
|  |  | ||||||
| 	</RelativeLayout> |     </RelativeLayout> | ||||||
|  |  | ||||||
| </LinearLayout> | </LinearLayout> | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,5 +1,8 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||||
| <resources> | <resources> | ||||||
|  |  | ||||||
|  |     <color name="white">#FFFFFFFF</color> | ||||||
|  | 	 | ||||||
|     <color name="colorSMSSendColor">#FFDCDA3D</color> |     <color name="colorSMSSendColor">#FFDCDA3D</color> | ||||||
|     <color name="colorSMSInboxColor">#FF3DDC84</color> |     <color name="colorSMSInboxColor">#FF3DDC84</color> | ||||||
|     <color name="colorTTSRuleViewBackgroundColor">#FFDCDA3D</color> |     <color name="colorTTSRuleViewBackgroundColor">#FFDCDA3D</color> | ||||||
| @@ -7,11 +10,11 @@ | |||||||
|     <color name="colorSMSSendColorDepth">#FFA28BFF</color> |     <color name="colorSMSSendColorDepth">#FFA28BFF</color> | ||||||
|     <color name="colorSMSInboxColorDepth">#FF8BAEFF</color> |     <color name="colorSMSInboxColorDepth">#FF8BAEFF</color> | ||||||
|     <color name="colorTTSRuleViewBackgroundColorDepth">#FFA28BFF</color> |     <color name="colorTTSRuleViewBackgroundColorDepth">#FFA28BFF</color> | ||||||
|      |  | ||||||
|     <color name="colorSMSSendColorSky">#FFFFEB8C</color> |     <color name="colorSMSSendColorSky">#FFFFEB8C</color> | ||||||
|     <color name="colorSMSInboxColorSky">#FF8CD9FF</color> |     <color name="colorSMSInboxColorSky">#FF8CD9FF</color> | ||||||
|     <color name="colorTTSRuleViewBackgroundColorSky">#FFFFEB8C</color> |     <color name="colorTTSRuleViewBackgroundColorSky">#FFFFEB8C</color> | ||||||
|      |  | ||||||
|     <color name="colorSMSSendColorGolden">#FF78BDFF</color> |     <color name="colorSMSSendColorGolden">#FF78BDFF</color> | ||||||
|     <color name="colorSMSInboxColorGolden">#FFFFED78</color> |     <color name="colorSMSInboxColorGolden">#FFFFED78</color> | ||||||
|     <color name="colorTTSRuleViewBackgroundColorGolden">#FF78BDFF</color> |     <color name="colorTTSRuleViewBackgroundColorGolden">#FF78BDFF</color> | ||||||
| @@ -19,9 +22,13 @@ | |||||||
|     <color name="colorSMSSendColorMemor">#FF5AEB53</color> |     <color name="colorSMSSendColorMemor">#FF5AEB53</color> | ||||||
|     <color name="colorSMSInboxColorMemor">#FFE653EB</color> |     <color name="colorSMSInboxColorMemor">#FFE653EB</color> | ||||||
|     <color name="colorTTSRuleViewBackgroundColorMemor">#FF5AEB53</color> |     <color name="colorTTSRuleViewBackgroundColorMemor">#FF5AEB53</color> | ||||||
|      |  | ||||||
|     <color name="colorSMSSendColorTao">#FFB4B4B4</color> |     <color name="colorSMSSendColorTao">#FFB4B4B4</color> | ||||||
|     <color name="colorSMSInboxColorTao">#FFD9D9D9</color> |     <color name="colorSMSInboxColorTao">#FFD9D9D9</color> | ||||||
|     <color name="colorTTSRuleViewBackgroundColorTao">#FFB4B4B4</color> |     <color name="colorTTSRuleViewBackgroundColorTao">#FFB4B4B4</color> | ||||||
|      |  | ||||||
|  |     <!-- 列表项选中颜色(深灰) --> | ||||||
|  |     <color name="list_item_selected">#FF696969</color> | ||||||
|  |     <!-- 列表项按压颜色(浅灰) --> | ||||||
|  |     <color name="list_item_pressed">#FFE0E0E0</color> | ||||||
| </resources> | </resources> | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 ZhanGSKen
					ZhanGSKen