Merge pull request #56 from BlackyHawky/Popup_corner

Fixed missing rounded popups and rounded selector for base themes
This commit is contained in:
Helium314 2023-08-05 10:22:20 +02:00 committed by GitHub
commit afa0670aba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,24 +1,15 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2014 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<selector xmlns:android="http://schemas.android.com/apk/res/android"> <selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" > <item android:state_pressed="true" >
<shape android:shape="rectangle"> <shape android:shape="rectangle">
<solid android:color="@color/key_background_normal_lxx_base_border" /> <solid android:color="@color/key_background_normal_lxx_base_border" />
<corners android:radius="3dp" />
</shape>
</item>
<item>
<shape android:shape="rectangle" >
<solid android:color="@android:color/white" />
<corners android:radius="3dp" />
</shape> </shape>
</item> </item>
<item android:drawable="@android:color/white" />
</selector> </selector>