LayoutInflater: support android:theme attribute

This commit is contained in:
Julian Winkler
2023-11-08 21:29:46 +01:00
parent d025fd3ce3
commit 9f74ab811e
3 changed files with 25 additions and 2 deletions

View File

@@ -1229,7 +1229,7 @@ public class Resources {
* @param other The existing Theme to copy from.
*/
public void setTo(Theme other) {
themeMap = other.themeMap;
themeMap = new HashMap<>(other.themeMap);
}
/**