diff options
Diffstat (limited to 'current/support/v7')
246 files changed, 1336 insertions, 889 deletions
diff --git a/current/support/v7/appcompat/libs/android-support-v7-appcompat.jar b/current/support/v7/appcompat/libs/android-support-v7-appcompat.jar Binary files differindex 89995da..fb06d83 100644 --- a/current/support/v7/appcompat/libs/android-support-v7-appcompat.jar +++ b/current/support/v7/appcompat/libs/android-support-v7-appcompat.jar diff --git a/current/support/v7/appcompat/res/anim/abc_popup_enter_material.xml b/current/support/v7/appcompat/res/anim/abc_popup_enter_material.xml new file mode 100644 index 0000000..835f5bb --- /dev/null +++ b/current/support/v7/appcompat/res/anim/abc_popup_enter_material.xml @@ -0,0 +1,22 @@ +<?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. +--> + +<set xmlns:android="http://schemas.android.com/apk/res/android" + android:shareInterpolator="false" > + <alpha android:fromAlpha="0.0" android:toAlpha="1.0" + android:interpolator="@android:anim/decelerate_interpolator" + android:duration="@integer/abc_config_activityShortDur" /> +</set>
\ No newline at end of file diff --git a/current/support/v7/appcompat/res/anim/abc_popup_exit_material.xml b/current/support/v7/appcompat/res/anim/abc_popup_exit_material.xml new file mode 100644 index 0000000..4af3b5e --- /dev/null +++ b/current/support/v7/appcompat/res/anim/abc_popup_exit_material.xml @@ -0,0 +1,22 @@ +<?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. +--> + +<set xmlns:android="http://schemas.android.com/apk/res/android" + android:shareInterpolator="false" > + <alpha android:fromAlpha="1.0" android:toAlpha="0.0" + android:interpolator="@android:anim/decelerate_interpolator" + android:duration="@integer/abc_config_activityShortDur" /> +</set>
\ No newline at end of file diff --git a/current/support/v7/appcompat/res/color/abc_background_cache_hint_selector_material_dark.xml b/current/support/v7/appcompat/res/color/abc_background_cache_hint_selector_material_dark.xml new file mode 100644 index 0000000..e016076 --- /dev/null +++ b/current/support/v7/appcompat/res/color/abc_background_cache_hint_selector_material_dark.xml @@ -0,0 +1,20 @@ +<?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"> + <item android:state_accelerated="false" android:color="@color/background_material_dark" /> + <item android:color="@android:color/transparent" /> +</selector> diff --git a/current/support/v7/appcompat/res/color/abc_background_cache_hint_selector_material_light.xml b/current/support/v7/appcompat/res/color/abc_background_cache_hint_selector_material_light.xml new file mode 100644 index 0000000..290faf1 --- /dev/null +++ b/current/support/v7/appcompat/res/color/abc_background_cache_hint_selector_material_light.xml @@ -0,0 +1,20 @@ +<?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"> + <item android:state_accelerated="false" android:color="@color/background_material_light" /> + <item android:color="@android:color/transparent" /> +</selector> diff --git a/current/support/v7/appcompat/res/color/abc_primary_text_disable_only_material_dark.xml b/current/support/v7/appcompat/res/color/abc_primary_text_disable_only_material_dark.xml new file mode 100644 index 0000000..724c255 --- /dev/null +++ b/current/support/v7/appcompat/res/color/abc_primary_text_disable_only_material_dark.xml @@ -0,0 +1,20 @@ +<?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"> + <item android:state_enabled="false" android:color="@color/bright_foreground_disabled_material_dark"/> + <item android:color="@color/bright_foreground_material_dark"/> +</selector> diff --git a/current/support/v7/appcompat/res/color/abc_primary_text_disable_only_material_light.xml b/current/support/v7/appcompat/res/color/abc_primary_text_disable_only_material_light.xml new file mode 100644 index 0000000..7395e68 --- /dev/null +++ b/current/support/v7/appcompat/res/color/abc_primary_text_disable_only_material_light.xml @@ -0,0 +1,20 @@ +<?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"> + <item android:state_enabled="false" android:color="@color/bright_foreground_disabled_material_light"/> + <item android:color="@color/bright_foreground_material_light"/> +</selector> diff --git a/current/support/v7/appcompat/res/color/abc_primary_text_material_dark.xml b/current/support/v7/appcompat/res/color/abc_primary_text_material_dark.xml new file mode 100644 index 0000000..003a965 --- /dev/null +++ b/current/support/v7/appcompat/res/color/abc_primary_text_material_dark.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2008 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"> + <item android:state_enabled="false" android:color="@color/primary_text_disabled_default_material_dark"/> + <item android:color="@color/primary_text_default_material_dark"/> +</selector> diff --git a/current/support/v7/appcompat/res/color/abc_primary_text_material_light.xml b/current/support/v7/appcompat/res/color/abc_primary_text_material_light.xml new file mode 100644 index 0000000..7fd8c83 --- /dev/null +++ b/current/support/v7/appcompat/res/color/abc_primary_text_material_light.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2004 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"> + <item android:state_enabled="false" android:color="@color/primary_text_disabled_default_material_dark"/> + <item android:color="@color/primary_text_default_material_light"/> +</selector> diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_bottom_solid_dark_holo.9.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_bottom_solid_dark_holo.9.png Binary files differdeleted file mode 100644 index 769463b..0000000 --- a/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_bottom_solid_dark_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_bottom_solid_light_holo.9.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_bottom_solid_light_holo.9.png Binary files differdeleted file mode 100644 index 7305047..0000000 --- a/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_bottom_solid_light_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_bottom_transparent_dark_holo.9.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_bottom_transparent_dark_holo.9.png Binary files differdeleted file mode 100644 index 712a551..0000000 --- a/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_bottom_transparent_dark_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_bottom_transparent_light_holo.9.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_bottom_transparent_light_holo.9.png Binary files differdeleted file mode 100644 index bf3b943..0000000 --- a/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_bottom_transparent_light_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_solid_dark_holo.9.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_solid_dark_holo.9.png Binary files differdeleted file mode 100644 index cbbaec5..0000000 --- a/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_solid_dark_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_solid_light_holo.9.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_solid_light_holo.9.png Binary files differdeleted file mode 100644 index af917e5..0000000 --- a/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_solid_light_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_stacked_solid_dark_holo.9.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_stacked_solid_dark_holo.9.png Binary files differdeleted file mode 100644 index 0520e5a..0000000 --- a/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_stacked_solid_dark_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_stacked_solid_light_holo.9.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_stacked_solid_light_holo.9.png Binary files differdeleted file mode 100644 index e3e3f93..0000000 --- a/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_stacked_solid_light_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_stacked_transparent_dark_holo.9.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_stacked_transparent_dark_holo.9.png Binary files differdeleted file mode 100644 index 1e39572..0000000 --- a/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_stacked_transparent_dark_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_stacked_transparent_light_holo.9.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_stacked_transparent_light_holo.9.png Binary files differdeleted file mode 100644 index a16db85..0000000 --- a/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_stacked_transparent_light_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_transparent_dark_holo.9.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_transparent_dark_holo.9.png Binary files differdeleted file mode 100644 index 0eff695..0000000 --- a/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_transparent_dark_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_transparent_light_holo.9.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_transparent_light_holo.9.png Binary files differdeleted file mode 100644 index 219b170..0000000 --- a/current/support/v7/appcompat/res/drawable-hdpi/abc_ab_transparent_light_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_cab_background_bottom_holo_dark.9.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_cab_background_bottom_holo_dark.9.png Binary files differdeleted file mode 100644 index 1d836f6..0000000 --- a/current/support/v7/appcompat/res/drawable-hdpi/abc_cab_background_bottom_holo_dark.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_cab_background_bottom_holo_light.9.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_cab_background_bottom_holo_light.9.png Binary files differdeleted file mode 100644 index 5818666..0000000 --- a/current/support/v7/appcompat/res/drawable-hdpi/abc_cab_background_bottom_holo_light.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_cab_background_top_holo_dark.9.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_cab_background_top_holo_dark.9.png Binary files differdeleted file mode 100644 index 564fb34..0000000 --- a/current/support/v7/appcompat/res/drawable-hdpi/abc_cab_background_top_holo_dark.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_cab_background_top_holo_light.9.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_cab_background_top_holo_light.9.png Binary files differdeleted file mode 100644 index ae21b76..0000000 --- a/current/support/v7/appcompat/res/drawable-hdpi/abc_cab_background_top_holo_light.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_ic_ab_back_holo_dark.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_ic_ab_back_holo_dark.png Binary files differdeleted file mode 100644 index 897a1c1..0000000 --- a/current/support/v7/appcompat/res/drawable-hdpi/abc_ic_ab_back_holo_dark.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_ic_ab_back_holo_light.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_ic_ab_back_holo_light.png Binary files differdeleted file mode 100644 index 0c89f71..0000000 --- a/current/support/v7/appcompat/res/drawable-hdpi/abc_ic_ab_back_holo_light.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_ic_ab_back_material_dark.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_ic_ab_back_material_dark.png Binary files differnew file mode 100644 index 0000000..8e08b54 --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-hdpi/abc_ic_ab_back_material_dark.png diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_ic_ab_back_material_light.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_ic_ab_back_material_light.png Binary files differnew file mode 100644 index 0000000..8df1597 --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-hdpi/abc_ic_ab_back_material_light.png diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png Binary files differnew file mode 100644 index 0000000..f0910d8 --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_material_dark.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_material_dark.png Binary files differnew file mode 100644 index 0000000..b98a7bf --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_material_dark.png diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_material_light.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_material_light.png Binary files differnew file mode 100644 index 0000000..a2acaa6 --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_material_light.png diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png Binary files differnew file mode 100644 index 0000000..1ba1295 --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png Binary files differdeleted file mode 100644 index 2abc458..0000000 --- a/current/support/v7/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_light.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_light.png Binary files differdeleted file mode 100644 index bb6aef1..0000000 --- a/current/support/v7/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_light.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_tab_indicator_material_selected.9.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_tab_indicator_material_selected.9.png Binary files differnew file mode 100644 index 0000000..4b921f0 --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-hdpi/abc_tab_indicator_material_selected.9.png diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png Binary files differnew file mode 100644 index 0000000..21b2135 --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_tab_selected_focused_holo.9.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_tab_selected_focused_holo.9.png Binary files differdeleted file mode 100644 index 673e3bf..0000000 --- a/current/support/v7/appcompat/res/drawable-hdpi/abc_tab_selected_focused_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_tab_selected_holo.9.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_tab_selected_holo.9.png Binary files differdeleted file mode 100644 index d57df98..0000000 --- a/current/support/v7/appcompat/res/drawable-hdpi/abc_tab_selected_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_tab_selected_pressed_holo.9.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_tab_selected_pressed_holo.9.png Binary files differdeleted file mode 100644 index 6278eef..0000000 --- a/current/support/v7/appcompat/res/drawable-hdpi/abc_tab_selected_pressed_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-hdpi/abc_tab_unselected_pressed_holo.9.png b/current/support/v7/appcompat/res/drawable-hdpi/abc_tab_unselected_pressed_holo.9.png Binary files differdeleted file mode 100644 index aadc6f8..0000000 --- a/current/support/v7/appcompat/res/drawable-hdpi/abc_tab_unselected_pressed_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_bottom_solid_dark_holo.9.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_bottom_solid_dark_holo.9.png Binary files differdeleted file mode 100644 index b229367..0000000 --- a/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_bottom_solid_dark_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_bottom_solid_light_holo.9.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_bottom_solid_light_holo.9.png Binary files differdeleted file mode 100644 index 0706c8a..0000000 --- a/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_bottom_solid_light_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_bottom_transparent_dark_holo.9.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_bottom_transparent_dark_holo.9.png Binary files differdeleted file mode 100644 index d814d02..0000000 --- a/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_bottom_transparent_dark_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_bottom_transparent_light_holo.9.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_bottom_transparent_light_holo.9.png Binary files differdeleted file mode 100644 index b139c8e..0000000 --- a/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_bottom_transparent_light_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_solid_dark_holo.9.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_solid_dark_holo.9.png Binary files differdeleted file mode 100644 index 743d00b..0000000 --- a/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_solid_dark_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_solid_light_holo.9.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_solid_light_holo.9.png Binary files differdeleted file mode 100644 index 17c1fb9..0000000 --- a/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_solid_light_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_stacked_solid_dark_holo.9.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_stacked_solid_dark_holo.9.png Binary files differdeleted file mode 100644 index 007a4b2..0000000 --- a/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_stacked_solid_dark_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_stacked_solid_light_holo.9.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_stacked_solid_light_holo.9.png Binary files differdeleted file mode 100644 index ad6e1a4..0000000 --- a/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_stacked_solid_light_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_stacked_transparent_dark_holo.9.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_stacked_transparent_dark_holo.9.png Binary files differdeleted file mode 100644 index 0ad6c88..0000000 --- a/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_stacked_transparent_dark_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_stacked_transparent_light_holo.9.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_stacked_transparent_light_holo.9.png Binary files differdeleted file mode 100644 index 19b50ab..0000000 --- a/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_stacked_transparent_light_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_transparent_dark_holo.9.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_transparent_dark_holo.9.png Binary files differdeleted file mode 100644 index ad980b1..0000000 --- a/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_transparent_dark_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_transparent_light_holo.9.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_transparent_light_holo.9.png Binary files differdeleted file mode 100644 index 60e6c52..0000000 --- a/current/support/v7/appcompat/res/drawable-mdpi/abc_ab_transparent_light_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_cab_background_bottom_holo_dark.9.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_cab_background_bottom_holo_dark.9.png Binary files differdeleted file mode 100644 index d8f1c8b..0000000 --- a/current/support/v7/appcompat/res/drawable-mdpi/abc_cab_background_bottom_holo_dark.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_cab_background_bottom_holo_light.9.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_cab_background_bottom_holo_light.9.png Binary files differdeleted file mode 100644 index 31e4989..0000000 --- a/current/support/v7/appcompat/res/drawable-mdpi/abc_cab_background_bottom_holo_light.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_cab_background_top_holo_dark.9.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_cab_background_top_holo_dark.9.png Binary files differdeleted file mode 100644 index 7c2cbe5..0000000 --- a/current/support/v7/appcompat/res/drawable-mdpi/abc_cab_background_top_holo_dark.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_cab_background_top_holo_light.9.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_cab_background_top_holo_light.9.png Binary files differdeleted file mode 100644 index 30cbdc1..0000000 --- a/current/support/v7/appcompat/res/drawable-mdpi/abc_cab_background_top_holo_light.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_ic_ab_back_holo_dark.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_ic_ab_back_holo_dark.png Binary files differdeleted file mode 100644 index df2d3d1..0000000 --- a/current/support/v7/appcompat/res/drawable-mdpi/abc_ic_ab_back_holo_dark.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_ic_ab_back_holo_light.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_ic_ab_back_holo_light.png Binary files differdeleted file mode 100644 index b2aa9c2..0000000 --- a/current/support/v7/appcompat/res/drawable-mdpi/abc_ic_ab_back_holo_light.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_ic_ab_back_material_dark.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_ic_ab_back_material_dark.png Binary files differnew file mode 100644 index 0000000..7845c86 --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-mdpi/abc_ic_ab_back_material_dark.png diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_ic_ab_back_material_light.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_ic_ab_back_material_light.png Binary files differnew file mode 100644 index 0000000..284f488 --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-mdpi/abc_ic_ab_back_material_light.png diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png Binary files differnew file mode 100644 index 0000000..e196bbe --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_material_dark.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_material_dark.png Binary files differnew file mode 100644 index 0000000..cbf0d45 --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_material_dark.png diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_material_light.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_material_light.png Binary files differnew file mode 100644 index 0000000..a24e42c --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_material_light.png diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png Binary files differnew file mode 100644 index 0000000..8415096 --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png Binary files differdeleted file mode 100644 index ba704b6..0000000 --- a/current/support/v7/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_normal_holo_light.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_normal_holo_light.png Binary files differdeleted file mode 100644 index 01d6816..0000000 --- a/current/support/v7/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_normal_holo_light.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_tab_indicator_material_selected.9.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_tab_indicator_material_selected.9.png Binary files differnew file mode 100644 index 0000000..d179536 --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-mdpi/abc_tab_indicator_material_selected.9.png diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png Binary files differnew file mode 100644 index 0000000..b69529c --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_tab_selected_focused_holo.9.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_tab_selected_focused_holo.9.png Binary files differdeleted file mode 100644 index c9972e7..0000000 --- a/current/support/v7/appcompat/res/drawable-mdpi/abc_tab_selected_focused_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_tab_selected_holo.9.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_tab_selected_holo.9.png Binary files differdeleted file mode 100644 index 587337c..0000000 --- a/current/support/v7/appcompat/res/drawable-mdpi/abc_tab_selected_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_tab_selected_pressed_holo.9.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_tab_selected_pressed_holo.9.png Binary files differdeleted file mode 100644 index 155c4fc..0000000 --- a/current/support/v7/appcompat/res/drawable-mdpi/abc_tab_selected_pressed_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-mdpi/abc_tab_unselected_pressed_holo.9.png b/current/support/v7/appcompat/res/drawable-mdpi/abc_tab_unselected_pressed_holo.9.png Binary files differdeleted file mode 100644 index b1223fe..0000000 --- a/current/support/v7/appcompat/res/drawable-mdpi/abc_tab_unselected_pressed_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_bottom_solid_dark_holo.9.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_bottom_solid_dark_holo.9.png Binary files differdeleted file mode 100644 index 5753346..0000000 --- a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_bottom_solid_dark_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_bottom_solid_light_holo.9.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_bottom_solid_light_holo.9.png Binary files differdeleted file mode 100644 index 8155fe8..0000000 --- a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_bottom_solid_light_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_bottom_transparent_dark_holo.9.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_bottom_transparent_dark_holo.9.png Binary files differdeleted file mode 100644 index 6cee9a1..0000000 --- a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_bottom_transparent_dark_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_bottom_transparent_light_holo.9.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_bottom_transparent_light_holo.9.png Binary files differdeleted file mode 100644 index fa4d76a..0000000 --- a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_bottom_transparent_light_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_solid_dark_holo.9.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_solid_dark_holo.9.png Binary files differdeleted file mode 100644 index 6622cba..0000000 --- a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_solid_dark_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_solid_light_holo.9.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_solid_light_holo.9.png Binary files differdeleted file mode 100644 index c427297..0000000 --- a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_solid_light_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_stacked_solid_dark_holo.9.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_stacked_solid_dark_holo.9.png Binary files differdeleted file mode 100644 index a0d9c1b..0000000 --- a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_stacked_solid_dark_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_stacked_solid_light_holo.9.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_stacked_solid_light_holo.9.png Binary files differdeleted file mode 100644 index d36f99f..0000000 --- a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_stacked_solid_light_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_stacked_transparent_dark_holo.9.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_stacked_transparent_dark_holo.9.png Binary files differdeleted file mode 100644 index 5ad475d..0000000 --- a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_stacked_transparent_dark_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_stacked_transparent_light_holo.9.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_stacked_transparent_light_holo.9.png Binary files differdeleted file mode 100644 index 6ade5ee..0000000 --- a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_stacked_transparent_light_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_transparent_dark_holo.9.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_transparent_dark_holo.9.png Binary files differdeleted file mode 100644 index 719b923..0000000 --- a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_transparent_dark_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_transparent_light_holo.9.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_transparent_light_holo.9.png Binary files differdeleted file mode 100644 index 6da264d..0000000 --- a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ab_transparent_light_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_cab_background_bottom_holo_dark.9.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_cab_background_bottom_holo_dark.9.png Binary files differdeleted file mode 100644 index 0bd0980..0000000 --- a/current/support/v7/appcompat/res/drawable-xhdpi/abc_cab_background_bottom_holo_dark.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_cab_background_bottom_holo_light.9.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_cab_background_bottom_holo_light.9.png Binary files differdeleted file mode 100644 index 43ed26d..0000000 --- a/current/support/v7/appcompat/res/drawable-xhdpi/abc_cab_background_bottom_holo_light.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_cab_background_top_holo_dark.9.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_cab_background_top_holo_dark.9.png Binary files differdeleted file mode 100644 index 6b31579..0000000 --- a/current/support/v7/appcompat/res/drawable-xhdpi/abc_cab_background_top_holo_dark.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_cab_background_top_holo_light.9.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_cab_background_top_holo_light.9.png Binary files differdeleted file mode 100644 index df0121b..0000000 --- a/current/support/v7/appcompat/res/drawable-xhdpi/abc_cab_background_top_holo_light.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ic_ab_back_holo_dark.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_ic_ab_back_holo_dark.png Binary files differdeleted file mode 100644 index 8ded62f..0000000 --- a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ic_ab_back_holo_dark.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ic_ab_back_holo_light.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_ic_ab_back_holo_light.png Binary files differdeleted file mode 100644 index 517e9f7..0000000 --- a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ic_ab_back_holo_light.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ic_ab_back_material_dark.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_ic_ab_back_material_dark.png Binary files differnew file mode 100644 index 0000000..bb5cf7d --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-xhdpi/abc_ic_ab_back_material_dark.png diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ic_ab_back_material_light.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_ic_ab_back_material_light.png Binary files differnew file mode 100644 index 0000000..2f52257 --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-xhdpi/abc_ic_ab_back_material_light.png diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png Binary files differnew file mode 100644 index 0000000..4385b2b --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_material_dark.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_material_dark.png Binary files differnew file mode 100644 index 0000000..21d94d5 --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_material_dark.png diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_material_light.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_material_light.png Binary files differnew file mode 100644 index 0000000..3afafb3 --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_material_light.png diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png Binary files differnew file mode 100644 index 0000000..f91b718 --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png Binary files differdeleted file mode 100644 index a92fb1d..0000000 --- a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_light.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_light.png Binary files differdeleted file mode 100644 index 930ca8d..0000000 --- a/current/support/v7/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_light.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_tab_indicator_material_selected.9.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_tab_indicator_material_selected.9.png Binary files differnew file mode 100644 index 0000000..c4aee3f --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-xhdpi/abc_tab_indicator_material_selected.9.png diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png Binary files differnew file mode 100644 index 0000000..5610d8c --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_tab_selected_focused_holo.9.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_tab_selected_focused_holo.9.png Binary files differdeleted file mode 100644 index 03cfb09..0000000 --- a/current/support/v7/appcompat/res/drawable-xhdpi/abc_tab_selected_focused_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_tab_selected_holo.9.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_tab_selected_holo.9.png Binary files differdeleted file mode 100644 index e4229f2..0000000 --- a/current/support/v7/appcompat/res/drawable-xhdpi/abc_tab_selected_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_tab_selected_pressed_holo.9.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_tab_selected_pressed_holo.9.png Binary files differdeleted file mode 100644 index e862cb1..0000000 --- a/current/support/v7/appcompat/res/drawable-xhdpi/abc_tab_selected_pressed_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xhdpi/abc_tab_unselected_pressed_holo.9.png b/current/support/v7/appcompat/res/drawable-xhdpi/abc_tab_unselected_pressed_holo.9.png Binary files differdeleted file mode 100644 index f1eb673..0000000 --- a/current/support/v7/appcompat/res/drawable-xhdpi/abc_tab_unselected_pressed_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_bottom_solid_dark_holo.9.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_bottom_solid_dark_holo.9.png Binary files differdeleted file mode 100644 index ba6f005..0000000 --- a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_bottom_solid_dark_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_bottom_solid_light_holo.9.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_bottom_solid_light_holo.9.png Binary files differdeleted file mode 100644 index 7c7eb77..0000000 --- a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_bottom_solid_light_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_bottom_transparent_dark_holo.9.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_bottom_transparent_dark_holo.9.png Binary files differdeleted file mode 100644 index 62aa5d6..0000000 --- a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_bottom_transparent_dark_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_bottom_transparent_light_holo.9.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_bottom_transparent_light_holo.9.png Binary files differdeleted file mode 100644 index 136d8b6..0000000 --- a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_bottom_transparent_light_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_solid_dark_holo.9.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_solid_dark_holo.9.png Binary files differdeleted file mode 100644 index 580d122..0000000 --- a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_solid_dark_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_solid_light_holo.9.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_solid_light_holo.9.png Binary files differdeleted file mode 100644 index 55d96e0..0000000 --- a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_solid_light_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_stacked_solid_dark_holo.9.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_stacked_solid_dark_holo.9.png Binary files differdeleted file mode 100644 index 1e8a9a9..0000000 --- a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_stacked_solid_dark_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_stacked_solid_light_holo.9.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_stacked_solid_light_holo.9.png Binary files differdeleted file mode 100644 index 4bb233f..0000000 --- a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_stacked_solid_light_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_stacked_transparent_dark_holo.9.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_stacked_transparent_dark_holo.9.png Binary files differdeleted file mode 100644 index e1768ab..0000000 --- a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_stacked_transparent_dark_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_stacked_transparent_light_holo.9.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_stacked_transparent_light_holo.9.png Binary files differdeleted file mode 100644 index 83fbbc4..0000000 --- a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_stacked_transparent_light_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_transparent_dark_holo.9.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_transparent_dark_holo.9.png Binary files differdeleted file mode 100644 index 9f0a2e7..0000000 --- a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_transparent_dark_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_transparent_light_holo.9.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_transparent_light_holo.9.png Binary files differdeleted file mode 100644 index b959bd9..0000000 --- a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_transparent_light_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_cab_background_bottom_holo_dark.9.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_cab_background_bottom_holo_dark.9.png Binary files differdeleted file mode 100644 index 087a6d6..0000000 --- a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_cab_background_bottom_holo_dark.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_cab_background_bottom_holo_light.9.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_cab_background_bottom_holo_light.9.png Binary files differdeleted file mode 100644 index 98d5d33..0000000 --- a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_cab_background_bottom_holo_light.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_cab_background_top_holo_dark.9.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_cab_background_top_holo_dark.9.png Binary files differdeleted file mode 100644 index 30db6bf..0000000 --- a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_cab_background_top_holo_dark.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_cab_background_top_holo_light.9.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_cab_background_top_holo_light.9.png Binary files differdeleted file mode 100644 index ced92af..0000000 --- a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_cab_background_top_holo_light.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_ab_back_holo_dark.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_ab_back_holo_dark.png Binary files differdeleted file mode 100644 index 05cfc9f..0000000 --- a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_ab_back_holo_dark.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_ab_back_holo_light.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_ab_back_holo_light.png Binary files differdeleted file mode 100644 index b3a6fb4..0000000 --- a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_ab_back_holo_light.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_ab_back_material_dark.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_ab_back_material_dark.png Binary files differnew file mode 100644 index 0000000..2f22797 --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_ab_back_material_dark.png diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_ab_back_material_light.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_ab_back_material_light.png Binary files differnew file mode 100644 index 0000000..4ca4a78 --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_ab_back_material_light.png diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png Binary files differnew file mode 100644 index 0000000..ca15853 --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_material_dark.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_material_dark.png Binary files differnew file mode 100644 index 0000000..75cf9b8 --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_material_dark.png diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_material_light.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_material_light.png Binary files differnew file mode 100644 index 0000000..68345fd --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_material_light.png diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png Binary files differnew file mode 100644 index 0000000..ff1759b --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png Binary files differdeleted file mode 100644 index c1aa1c2..0000000 --- a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_normal_holo_light.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_normal_holo_light.png Binary files differdeleted file mode 100644 index d856d2b..0000000 --- a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_normal_holo_light.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_tab_indicator_material_selected.9.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_tab_indicator_material_selected.9.png Binary files differnew file mode 100644 index 0000000..b27971d --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_tab_indicator_material_selected.9.png diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png Binary files differnew file mode 100644 index 0000000..248f4f8 --- /dev/null +++ b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_tab_selected_focused_holo.9.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_tab_selected_focused_holo.9.png Binary files differdeleted file mode 100644 index cd15b0a..0000000 --- a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_tab_selected_focused_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_tab_selected_holo.9.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_tab_selected_holo.9.png Binary files differdeleted file mode 100644 index 05c642a..0000000 --- a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_tab_selected_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_tab_selected_pressed_holo.9.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_tab_selected_pressed_holo.9.png Binary files differdeleted file mode 100644 index f857a22..0000000 --- a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_tab_selected_pressed_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_tab_unselected_pressed_holo.9.png b/current/support/v7/appcompat/res/drawable-xxhdpi/abc_tab_unselected_pressed_holo.9.png Binary files differdeleted file mode 100644 index bc856f9..0000000 --- a/current/support/v7/appcompat/res/drawable-xxhdpi/abc_tab_unselected_pressed_holo.9.png +++ /dev/null diff --git a/current/support/v7/appcompat/res/drawable/abc_popup_background_material_dark.xml b/current/support/v7/appcompat/res/drawable/abc_popup_background_material_dark.xml new file mode 100644 index 0000000..3e5296e --- /dev/null +++ b/current/support/v7/appcompat/res/drawable/abc_popup_background_material_dark.xml @@ -0,0 +1,25 @@ +<?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. +--> + +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="rectangle"> + + <corners + android:radius="2dp" /> + <solid + android:color="@color/background_material_dark" /> + +</shape> diff --git a/current/support/v7/appcompat/res/drawable/abc_popup_background_material_light.xml b/current/support/v7/appcompat/res/drawable/abc_popup_background_material_light.xml new file mode 100644 index 0000000..eca1a16 --- /dev/null +++ b/current/support/v7/appcompat/res/drawable/abc_popup_background_material_light.xml @@ -0,0 +1,25 @@ +<?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. +--> + +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="rectangle"> + + <corners + android:radius="2dp" /> + <solid + android:color="@color/background_material_light" /> + +</shape> diff --git a/current/support/v7/appcompat/res/drawable/abc_tab_indicator_ab_holo.xml b/current/support/v7/appcompat/res/drawable/abc_tab_indicator_ab_holo.xml deleted file mode 100644 index 3c828d8..0000000 --- a/current/support/v7/appcompat/res/drawable/abc_tab_indicator_ab_holo.xml +++ /dev/null @@ -1,34 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2011 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"> - <!-- Non focused states --> - <item android:state_focused="false" android:state_selected="false" android:state_pressed="false" android:drawable="@android:color/transparent" /> - <item android:state_focused="false" android:state_selected="true" android:state_pressed="false" android:drawable="@drawable/abc_tab_selected_holo" /> - - <!-- Focused states --> - <item android:state_focused="true" android:state_selected="false" android:state_pressed="false" android:drawable="@drawable/abc_list_focused_holo" /> - <item android:state_focused="true" android:state_selected="true" android:state_pressed="false" android:drawable="@drawable/abc_tab_selected_focused_holo" /> - - <!-- Pressed --> - <!-- Non focused states --> - <item android:state_focused="false" android:state_selected="false" android:state_pressed="true" android:drawable="@drawable/abc_list_pressed_holo_dark" /> - <item android:state_focused="false" android:state_selected="true" android:state_pressed="true" android:drawable="@drawable/abc_tab_selected_pressed_holo" /> - - <!-- Focused states --> - <item android:state_focused="true" android:state_selected="false" android:state_pressed="true" android:drawable="@drawable/abc_tab_unselected_pressed_holo" /> - <item android:state_focused="true" android:state_selected="true" android:state_pressed="true" android:drawable="@drawable/abc_tab_selected_pressed_holo" /> -</selector> diff --git a/current/support/v7/appcompat/res/drawable/abc_tab_indicator_material.xml b/current/support/v7/appcompat/res/drawable/abc_tab_indicator_material.xml new file mode 100644 index 0000000..166d526 --- /dev/null +++ b/current/support/v7/appcompat/res/drawable/abc_tab_indicator_material.xml @@ -0,0 +1,22 @@ +<?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"> + <item android:state_selected="true"> + <nine-patch android:src="@drawable/abc_tab_indicator_material_selected" /> + </item> + <item android:drawable="@android:color/transparent" /> +</selector> diff --git a/current/support/v7/appcompat/res/layout/abc_action_bar_home.xml b/current/support/v7/appcompat/res/layout/abc_action_bar_home.xml index 7063c36..8a686b5 100644 --- a/current/support/v7/appcompat/res/layout/abc_action_bar_home.xml +++ b/current/support/v7/appcompat/res/layout/abc_action_bar_home.xml @@ -17,15 +17,15 @@ <view xmlns:android="http://schemas.android.com/apk/res/android" class="android.support.v7.internal.widget.ActionBarView$HomeView" android:layout_width="wrap_content" - android:layout_height="fill_parent" - android:background="?attr/actionBarItemBackground"> - <ImageView android:id="@+id/up" + android:layout_height="wrap_content" + android:layout_gravity="center_vertical|left"> + <ImageView android:id="@id/up" android:src="?attr/homeAsUpIndicator" android:layout_gravity="center_vertical|left" android:visibility="gone" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_marginRight="-8dip"/> + android:layout_width="48dp" + android:layout_height="48dp" + android:scaleType="centerInside" /> <ImageView android:id="@id/home" android:layout_width="wrap_content" android:layout_height="wrap_content" diff --git a/current/support/v7/appcompat/res/values-land/dimens.xml b/current/support/v7/appcompat/res/values-land/dimens.xml index 9aaf587..276476d 100644 --- a/current/support/v7/appcompat/res/values-land/dimens.xml +++ b/current/support/v7/appcompat/res/values-land/dimens.xml @@ -15,8 +15,6 @@ --> <resources> - <!-- Default height of an action bar. --> - <dimen name="abc_action_bar_default_height">40dip</dimen> <!-- Vertical padding around action bar icons. --> <dimen name="abc_action_bar_icon_vertical_padding">4dip</dimen> <!-- Text size for action bar titles --> @@ -29,4 +27,8 @@ <dimen name="abc_action_bar_subtitle_bottom_margin">4dip</dimen> <!-- Size of the indeterminate Progress Bar --> <dimen name="abc_action_bar_progress_bar_size">32dp</dimen> + + <!-- Default height of an action bar. --> + <dimen name="action_bar_default_height_material">48dp</dimen> + </resources>
\ No newline at end of file diff --git a/current/support/v7/appcompat/res/values-large-v14/themes_base.xml b/current/support/v7/appcompat/res/values-large-v14/themes_base.xml index d898069..187f1c3 100644 --- a/current/support/v7/appcompat/res/values-large-v14/themes_base.xml +++ b/current/support/v7/appcompat/res/values-large-v14/themes_base.xml @@ -16,10 +16,10 @@ <resources> - <style name="Theme.Base.AppCompat.DialogWhenLarge" - parent="Theme.Base.AppCompat.DialogWhenLarge.Base" /> + <style name="Base.Theme.AppCompat.DialogWhenLarge" + parent="Base.Theme.AppCompat.DialogWhenLarge.Base" /> - <style name="Theme.Base.AppCompat.Light.DialogWhenLarge" - parent="Theme.Base.AppCompat.Light.DialogWhenLarge.Base" /> + <style name="Base.Theme.AppCompat.Light.DialogWhenLarge" + parent="Base.Theme.AppCompat.Light.DialogWhenLarge.Base" /> </resources> diff --git a/current/support/v7/appcompat/res/values-large/themes_base.xml b/current/support/v7/appcompat/res/values-large/themes_base.xml index a19dcf0..1bcba47 100644 --- a/current/support/v7/appcompat/res/values-large/themes_base.xml +++ b/current/support/v7/appcompat/res/values-large/themes_base.xml @@ -16,10 +16,10 @@ <resources> - <style name="Theme.Base.AppCompat.DialogWhenLarge" - parent="Theme.Base.AppCompat.Dialog.FixedSize" /> + <style name="Base.Theme.AppCompat.DialogWhenLarge" + parent="Base.Theme.AppCompat.Dialog.FixedSize" /> - <style name="Theme.Base.AppCompat.Light.DialogWhenLarge" - parent="Theme.Base.AppCompat.Dialog.Light.FixedSize" /> + <style name="Base.Theme.AppCompat.Light.DialogWhenLarge" + parent="Base.Theme.AppCompat.Dialog.Light.FixedSize" /> </resources> diff --git a/current/support/v7/appcompat/res/values-port/bools.xml b/current/support/v7/appcompat/res/values-port/bools.xml new file mode 100644 index 0000000..25053be --- /dev/null +++ b/current/support/v7/appcompat/res/values-port/bools.xml @@ -0,0 +1,21 @@ +<?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. +--> + +<resources> + + <bool name="abc_action_bar_embed_tabs">false</bool> + +</resources> diff --git a/current/support/v7/appcompat/res/values-sw600dp/dimens.xml b/current/support/v7/appcompat/res/values-sw600dp/dimens.xml index 94fe525..06ab4ee 100644 --- a/current/support/v7/appcompat/res/values-sw600dp/dimens.xml +++ b/current/support/v7/appcompat/res/values-sw600dp/dimens.xml @@ -19,8 +19,6 @@ an action bar/action mode. This will be used to determine how many showAsAction="ifRoom" items can fit. "always" items can override this. --> <integer name="abc_max_action_buttons">5</integer> - <!-- Default height of an action bar. --> - <dimen name="abc_action_bar_default_height">56dip</dimen> <!-- Vertical padding around action bar icons. --> <dimen name="abc_action_bar_icon_vertical_padding">4dip</dimen> <!-- Text size for action bar titles --> diff --git a/current/support/v7/appcompat/res/values-v11/styles_base.xml b/current/support/v7/appcompat/res/values-v11/styles_base.xml index 2cee503..6583424 100644 --- a/current/support/v7/appcompat/res/values-v11/styles_base.xml +++ b/current/support/v7/appcompat/res/values-v11/styles_base.xml @@ -23,21 +23,21 @@ <!-- Progress Bar --> - <style name="Widget.AppCompat.Base.ProgressBar.Horizontal" + <style name="Base.Widget.AppCompat.ProgressBar.Horizontal" parent="android:Widget.Holo.ProgressBar.Horizontal"> </style> - <style name="Widget.AppCompat.Base.ProgressBar" + <style name="Base.Widget.AppCompat.ProgressBar" parent="android:Widget.Holo.ProgressBar"> </style> <!-- AutoCompleteTextView styles (for SearchView) --> - <style name="Widget.AppCompat.Base.AutoCompleteTextView" + <style name="Base.Widget.AppCompat.AutoCompleteTextView" parent="android:Widget.Holo.AutoCompleteTextView"> </style> - <style name="Widget.AppCompat.Light.Base.AutoCompleteTextView" + <style name="Base.Widget.AppCompat.Light.AutoCompleteTextView" parent="android:Widget.Holo.Light.AutoCompleteTextView"> </style> diff --git a/current/support/v7/appcompat/res/values-v11/themes_base.xml b/current/support/v7/appcompat/res/values-v11/themes_base.xml index 0539a1a..7808b26 100644 --- a/current/support/v7/appcompat/res/values-v11/themes_base.xml +++ b/current/support/v7/appcompat/res/values-v11/themes_base.xml @@ -19,7 +19,7 @@ <!-- Theme in the "Theme.Platform.AppCompat" family are designed to be aliases for the default theme on a given platform version. They should not set any styleable attributes. Instead - you should create a "Theme.Base" theme which inherits from a "Theme.Platform" theme. + you should create a "Base.Theme" theme which inherits from a "Theme.Platform" theme. --> <eat-comment/> <style name="Theme.Platform.AppCompat" parent="android:Theme.Holo" /> @@ -30,7 +30,7 @@ <style name="Theme.Platform.AppCompat.Light.Dialog" parent="android:Theme.Holo.Light.Dialog" /> - <!-- Themes in the "Theme.Base" family vary based on the current platform + <!-- Themes in the "Base.Theme" family vary based on the current platform version to provide the correct basis on each device. You probably don't want to use them directly in your apps. @@ -42,7 +42,7 @@ <eat-comment/> <!-- Base platform-dependent theme --> - <style name="Theme.Base" parent="Theme.Platform.AppCompat"> + <style name="Base.Theme" parent="Theme.Platform.AppCompat"> <item name="android:windowNoTitle">true</item> <item name="android:windowActionBar">false</item> @@ -60,7 +60,7 @@ </style> <!-- Base platform-dependent theme providing a light-themed activity. --> - <style name="Theme.Base.Light" parent="Theme.Platform.AppCompat.Light"> + <style name="Base.Theme.Light" parent="Theme.Platform.AppCompat.Light"> <item name="android:windowNoTitle">true</item> <item name="android:windowActionBar">false</item> @@ -77,7 +77,7 @@ <item name="selectableItemBackground">?android:attr/selectableItemBackground</item> </style> - <style name="Theme.Base.AppCompat.Dialog.FixedSize" parent="Theme.Platform.AppCompat.Dialog"> + <style name="Base.Theme.AppCompat.Dialog.FixedSize" parent="Theme.Platform.AppCompat.Dialog"> <item name="windowFixedWidthMajor">@dimen/dialog_fixed_width_major</item> <item name="windowFixedWidthMinor">@dimen/dialog_fixed_width_minor</item> <item name="windowFixedHeightMajor">@dimen/dialog_fixed_height_major</item> @@ -90,7 +90,7 @@ <item name="selectableItemBackground">?android:attr/selectableItemBackground</item> </style> - <style name="Theme.Base.AppCompat.Dialog.Light.FixedSize" + <style name="Base.Theme.AppCompat.Dialog.Light.FixedSize" parent="Theme.Platform.AppCompat.Light.Dialog"> <item name="windowFixedWidthMajor">@dimen/dialog_fixed_width_major</item> <item name="windowFixedWidthMinor">@dimen/dialog_fixed_width_minor</item> diff --git a/current/support/v7/appcompat/res/values-v14/styles_base.xml b/current/support/v7/appcompat/res/values-v14/styles_base.xml deleted file mode 100644 index 4c64aee..0000000 --- a/current/support/v7/appcompat/res/values-v14/styles_base.xml +++ /dev/null @@ -1,228 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2012 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. ---> - -<resources> - - <!-- Like in themes_base.xml, the namespace "*.AppCompat.Base" is used to - define base styles for the platform version. The "*.AppCompat" - variants are for direct use or use as parent styles by the app. --> - <eat-comment/> - - <style name="Widget.AppCompat.Base.ActionBar" - parent="android:Widget.Holo.ActionBar"> - </style> - - <style name="Widget.AppCompat.Light.Base.ActionBar" - parent="android:Widget.Holo.Light.ActionBar"> - </style> - - <style name="Widget.AppCompat.Base.ActionBar.Solid" - parent="android:Widget.Holo.ActionBar.Solid"> - </style> - - <style name="Widget.AppCompat.Light.Base.ActionBar.Solid" - parent="android:Widget.Holo.Light.ActionBar.Solid"> - </style> - - <style name="Widget.AppCompat.Light.Base.ActionBar.Solid.Inverse" - parent="android:Widget.Holo.Light.ActionBar.Solid.Inverse"> - </style> - - <style name="Widget.AppCompat.Base.ActionBar.TabBar" - parent="android:Widget.Holo.ActionBar.TabBar"> - </style> - - <style name="Widget.AppCompat.Light.Base.ActionBar.TabBar" - parent="android:Widget.Holo.Light.ActionBar.TabBar"> - </style> - - <style name="Widget.AppCompat.Light.Base.ActionBar.TabBar.Inverse" - parent="android:Widget.Holo.Light.ActionBar.TabBar.Inverse"> - </style> - - <style name="Widget.AppCompat.Base.ActionBar.TabView" - parent="android:Widget.Holo.ActionBar.TabView"> - </style> - - <style name="Widget.AppCompat.Light.Base.ActionBar.TabView" - parent="android:Widget.Holo.Light.ActionBar.TabView"> - </style> - - <style name="Widget.AppCompat.Light.Base.ActionBar.TabView.Inverse" - parent="android:Widget.Holo.Light.ActionBar.TabView.Inverse"> - </style> - - <style name="Widget.AppCompat.Base.ActionBar.TabText" - parent="android:Widget.Holo.ActionBar.TabText"> - </style> - - <style name="Widget.AppCompat.Light.Base.ActionBar.TabText" - parent="android:Widget.Holo.Light.ActionBar.TabText"> - </style> - - <style name="Widget.AppCompat.Light.Base.ActionBar.TabText.Inverse" - parent="android:Widget.Holo.Light.ActionBar.TabText.Inverse"> - </style> - - <style name="Widget.AppCompat.Light.Base.ActionMode.Inverse" - parent="android:Widget.Holo.Light.ActionMode.Inverse"> - </style> - - <style name="TextAppearance.AppCompat.Widget.Base.ActionBar.Menu" - parent="android:TextAppearance.Holo.Widget.ActionBar.Menu"> - </style> - - <style name="TextAppearance.AppCompat.Widget.Base.ActionBar.Title" - parent="android:TextAppearance.Holo.Widget.ActionBar.Title"> - </style> - - <style name="TextAppearance.AppCompat.Widget.Base.ActionBar.Subtitle" - parent="android:TextAppearance.Holo.Widget.ActionBar.Subtitle"> - </style> - - <style name="TextAppearance.AppCompat.Widget.Base.ActionBar.Title.Inverse" - parent="android:TextAppearance.Holo.Widget.ActionBar.Title.Inverse"> - </style> - - <style name="TextAppearance.AppCompat.Widget.Base.ActionBar.Subtitle.Inverse" - parent="android:TextAppearance.Holo.Widget.ActionBar.Subtitle.Inverse"> - </style> - - <style name="TextAppearance.AppCompat.Widget.Base.ActionMode.Title" - parent="android:TextAppearance.Holo.Widget.ActionMode.Title"> - </style> - - <style name="TextAppearance.AppCompat.Widget.Base.ActionMode.Subtitle" - parent="android:TextAppearance.Holo.Widget.ActionMode.Subtitle"> - </style> - - <style name="TextAppearance.AppCompat.Widget.Base.ActionMode.Title.Inverse" - parent="android:TextAppearance.Holo.Widget.ActionMode.Title.Inverse"> - </style> - - <style name="TextAppearance.AppCompat.Widget.Base.ActionMode.Subtitle.Inverse" - parent="android:TextAppearance.Holo.Widget.ActionMode.Subtitle.Inverse"> - </style> - - <!-- Action Button Styles --> - - <style name="Widget.AppCompat.Base.ActionButton" parent="android:Widget.Holo.ActionButton"> - </style> - - <style name="Widget.AppCompat.Light.Base.ActionButton" - parent="android:Widget.Holo.Light.ActionButton"> - </style> - - <style name="Widget.AppCompat.Base.ActionButton.CloseMode" - parent="android:Widget.Holo.ActionButton.CloseMode"> - </style> - - <style name="Widget.AppCompat.Light.Base.ActionButton.CloseMode" - parent="android:Widget.Holo.Light.ActionButton.CloseMode"> - </style> - - <style name="Widget.AppCompat.Base.ActionButton.Overflow" - parent="android:Widget.Holo.ActionButton.Overflow"> - </style> - - <style name="Widget.AppCompat.Light.Base.ActionButton.Overflow" - parent="android:Widget.Holo.Light.ActionButton.Overflow"> - </style> - - <!-- Spinner Widgets --> - - <style name="Widget.AppCompat.Base.ListView.DropDown" - parent="android:Widget.Holo.ListView.DropDown"/> - - <style name="Widget.AppCompat.Light.Base.ListView.DropDown" - parent="android:Widget.Holo.ListView.DropDown"/> - - <style name="Widget.AppCompat.Base.DropDownItem.Spinner" - parent="android:Widget.Holo.DropDownItem.Spinner"/> - - <style name="Widget.AppCompat.Light.Base.DropDownItem.Spinner" - parent="android:Widget.Holo.Light.DropDownItem.Spinner"/> - - <style name="Widget.AppCompat.Base.Spinner" parent="android:Widget.Holo.Spinner" /> - - <style name="Widget.AppCompat.Light.Base.Spinner" parent="android:Widget.Holo.Light.Spinner"/> - - <style name="Widget.AppCompat.Base.ListView.Menu" parent="android:Widget.ListView.Menu" /> - - <!-- Popup Menu --> - - <style name="Widget.AppCompat.Base.ListPopupWindow" - parent="android:Widget.Holo.ListPopupWindow"> - </style> - - <style name="Widget.AppCompat.Light.Base.ListPopupWindow" - parent="android:Widget.Holo.Light.ListPopupWindow"> - </style> - - <style name="Widget.AppCompat.Base.PopupMenu" parent="android:Widget.Holo.PopupMenu"> - </style> - - <style name="Widget.AppCompat.Light.Base.PopupMenu" - parent="android:Widget.Holo.Light.PopupMenu"> - </style> - - <style name="TextAppearance.AppCompat.Base.Widget.PopupMenu.Large" - parent="android:TextAppearance.Holo.Widget.PopupMenu.Large"> - </style> - - <style name="TextAppearance.AppCompat.Base.Widget.PopupMenu.Small" - parent="android:TextAppearance.Holo.Widget.PopupMenu.Small"> - </style> - - <style name="TextAppearance.AppCompat.Light.Base.Widget.PopupMenu.Large" - parent="android:TextAppearance.Holo.Widget.PopupMenu.Large"> - </style> - - <style name="TextAppearance.AppCompat.Light.Base.Widget.PopupMenu.Small" - parent="android:TextAppearance.Holo.Widget.PopupMenu.Small"> - </style> - - <!-- Search View result styles --> - - <style name="TextAppearance.AppCompat.Base.SearchResult.Title" - parent="@android:TextAppearance.Holo.SearchResult.Title"> - </style> - - <style name="TextAppearance.AppCompat.Base.SearchResult.Subtitle" - parent="@android:TextAppearance.Holo.SearchResult.Subtitle"> - </style> - - <!-- - TextAppearance.Holo.Light.SearchResult.* are private so we extend from the default - versions instead (which are exactly the same). - --> - <style name="TextAppearance.AppCompat.Light.Base.SearchResult.Title" - parent="@android:TextAppearance.Holo.SearchResult.Title"> - </style> - - <style name="TextAppearance.AppCompat.Light.Base.SearchResult.Subtitle" - parent="@android:TextAppearance.Holo.SearchResult.Subtitle"> - </style> - - <style name="Widget.AppCompat.Base.ActivityChooserView" parent=""> - <item name="android:gravity">center</item> - <item name="android:background">@drawable/abc_ab_share_pack_holo_dark</item> - <item name="android:divider">?attr/dividerVertical</item> - <item name="android:showDividers">middle</item> - <item name="android:dividerPadding">6dip</item> - </style> - -</resources> diff --git a/current/support/v7/appcompat/res/values-v14/themes_base.xml b/current/support/v7/appcompat/res/values-v14/themes_base.xml index e182b2e..6193211 100644 --- a/current/support/v7/appcompat/res/values-v14/themes_base.xml +++ b/current/support/v7/appcompat/res/values-v14/themes_base.xml @@ -32,114 +32,11 @@ <style name="Theme.Platform.AppCompat.Light.DialogWhenLarge" parent="android:Theme.Holo.Light.DialogWhenLarge" /> + <style name="Base.Theme.AppCompat.DialogWhenLarge" + parent="Base.Theme.AppCompat.DialogWhenLarge.Base" /> - <!-- Themes in the "Theme.Base" family vary based on the current platform - version to provide the correct basis on each device. You probably don't - want to use them directly in your apps. - - Themes in the "Theme.AppCompat" family are meant to be extended or used - directly by apps. - - This is the values-v14/ file that only declares the Base themes for - Ice Cream Sandwich+. You probably want to edit values/themes.xml instead. --> - <eat-comment/> - - <!-- Base platform-dependent theme providing an action bar in a dark-themed activity. --> - <style name="Theme.Base.AppCompat" parent="Theme.Platform.AppCompat"> - <!-- Copy system flag values for our use --> - <item name="windowActionBar">?android:attr/windowActionBar</item> - <item name="actionBarSize">?android:attr/actionBarSize</item> - <item name="actionBarItemBackground">?android:attr/actionBarItemBackground</item> - <item name="selectableItemBackground">?android:attr/selectableItemBackground</item> - <item name="actionButtonStyle">?android:attr/actionButtonStyle</item> - <item name="dividerVertical">?android:attr/dividerVertical</item> - <item name="dividerHorizontal">?android:attr/dividerHorizontal</item> - <item name="actionBarWidgetTheme">@null</item> - <item name="android:actionBarWidgetTheme">?attr/actionBarWidgetTheme</item> - - <!-- Required for use of support_simple_spinner_dropdown_item.xml --> - <item name="listPreferredItemHeight">?android:attr/listPreferredItemHeight</item> - <item name="listPreferredItemHeightSmall">?android:attr/listPreferredItemHeightSmall</item> - <item name="listPreferredItemHeightLarge">?android:attr/listPreferredItemHeightLarge</item> - <item name="listPreferredItemPaddingLeft">?android:attr/listPreferredItemPaddingLeft</item> - <item name="listPreferredItemPaddingRight">?android:attr/listPreferredItemPaddingRight - </item> - - <!-- Redirecting to the platform-dependet textAppearanceListItem --> - <item name="textAppearanceListItem">?android:attr/textAppearanceListItem</item> - <item name="textAppearanceListItemSmall">?android:attr/textAppearanceListItemSmall</item> - - <!-- Attributes populated from the framework to be read by apps --> - <item name="buttonBarStyle">?android:attr/buttonBarStyle</item> - <item name="buttonBarButtonStyle">?android:attr/buttonBarButtonStyle</item> - </style> - - <!-- Base platform-dependent theme providing an action bar in a light-themed activity. --> - <style name="Theme.Base.AppCompat.Light" parent="Theme.Platform.AppCompat.Light"> - <!-- Copy system flag values for our use --> - <item name="windowActionBar">?android:attr/windowActionBar</item> - <item name="actionBarSize">?android:attr/actionBarSize</item> - <item name="actionBarItemBackground">?android:attr/actionBarItemBackground</item> - <item name="selectableItemBackground">?android:attr/selectableItemBackground</item> - <item name="actionButtonStyle">?android:attr/actionButtonStyle</item> - <item name="dividerVertical">?android:attr/dividerVertical</item> - <item name="dividerHorizontal">?android:attr/dividerHorizontal</item> - <item name="actionBarWidgetTheme">@null</item> - <item name="android:actionBarWidgetTheme">?attr/actionBarWidgetTheme</item> - - <!-- Required for use of support_simple_spinner_dropdown_item.xml --> - <item name="listPreferredItemHeight">?android:attr/listPreferredItemHeight</item> - <item name="listPreferredItemHeightSmall">?android:attr/listPreferredItemHeightSmall</item> - <item name="listPreferredItemHeightLarge">?android:attr/listPreferredItemHeightLarge</item> - <item name="listPreferredItemPaddingLeft">?android:attr/listPreferredItemPaddingLeft</item> - <item name="listPreferredItemPaddingRight">?android:attr/listPreferredItemPaddingRight - </item> - - <!-- Redirecting to the platform-dependet textAppearanceListItem --> - <item name="textAppearanceListItem">?android:attr/textAppearanceListItem</item> - <item name="textAppearanceListItemSmall">?android:attr/textAppearanceListItemSmall</item> - - <!-- Attributes populated from the framework to be read by apps --> - <item name="buttonBarStyle">?android:attr/buttonBarStyle</item> - <item name="buttonBarButtonStyle">?android:attr/buttonBarButtonStyle</item> - </style> - - <!-- Base platform-dependent theme providing a dark action bar in a light-themed activity. --> - <style name="Theme.Base.AppCompat.Light.DarkActionBar" - parent="Theme.Platform.AppCompat.Light.DarkActionBar"> - <!-- Copy system flag values for our use --> - <item name="windowActionBar">?android:attr/windowActionBar</item> - <item name="actionBarSize">?android:attr/actionBarSize</item> - <item name="actionBarItemBackground">?android:attr/actionBarItemBackground</item> - <item name="selectableItemBackground">?android:attr/selectableItemBackground</item> - <item name="actionButtonStyle">?android:attr/actionButtonStyle</item> - <item name="dividerVertical">?android:attr/dividerVertical</item> - <item name="dividerHorizontal">?android:attr/dividerHorizontal</item> - <item name="actionBarWidgetTheme">@style/Theme.AppCompat</item> - <item name="android:actionBarWidgetTheme">?attr/actionBarWidgetTheme</item> - - <!-- Required for use of support_simple_spinner_dropdown_item.xml --> - <item name="listPreferredItemHeight">?android:attr/listPreferredItemHeight</item> - <item name="listPreferredItemHeightSmall">?android:attr/listPreferredItemHeightSmall</item> - <item name="listPreferredItemHeightLarge">?android:attr/listPreferredItemHeightLarge</item> - <item name="listPreferredItemPaddingLeft">?android:attr/listPreferredItemPaddingLeft</item> - <item name="listPreferredItemPaddingRight">?android:attr/listPreferredItemPaddingRight - </item> - - <!-- Redirecting to the platform-dependet textAppearanceListItem --> - <item name="textAppearanceListItem">?android:attr/textAppearanceListItem</item> - <item name="textAppearanceListItemSmall">?android:attr/textAppearanceListItemSmall</item> - - <!-- Attributes populated from the framework to be read by apps --> - <item name="buttonBarStyle">?android:attr/buttonBarStyle</item> - <item name="buttonBarButtonStyle">?android:attr/buttonBarButtonStyle</item> - </style> - - <style name="Theme.Base.AppCompat.DialogWhenLarge" - parent="Theme.Base.AppCompat.DialogWhenLarge.Base" /> - - <style name="Theme.Base.AppCompat.Light.DialogWhenLarge" - parent="Theme.Base.AppCompat.Light.DialogWhenLarge.Base" /> + <style name="Base.Theme.AppCompat.Light.DialogWhenLarge" + parent="Base.Theme.AppCompat.Light.DialogWhenLarge.Base" /> <!-- As we have defined the theme in values-large (for compat) and values-large takes precedence @@ -148,56 +45,14 @@ inherited from in both values-v14 and values-large-v14. --> - <style name="Theme.Base.AppCompat.DialogWhenLarge.Base" + <style name="Base.Theme.AppCompat.DialogWhenLarge.Base" parent="Theme.Platform.AppCompat.DialogWhenLarge"> - <!-- Copy system flag values for our use --> - <item name="windowActionBar">?android:attr/windowActionBar</item> - <item name="actionBarSize">?android:attr/actionBarSize</item> - <item name="actionBarItemBackground">?android:attr/actionBarItemBackground</item> - <item name="selectableItemBackground">?android:attr/selectableItemBackground</item> - <item name="actionButtonStyle">?android:attr/actionButtonStyle</item> - <item name="dividerVertical">?android:attr/dividerVertical</item> - <item name="dividerHorizontal">?android:attr/dividerHorizontal</item> - <item name="actionBarWidgetTheme">@null</item> - <item name="android:actionBarWidgetTheme">?attr/actionBarWidgetTheme</item> - - <!-- Required for use of support_simple_spinner_dropdown_item.xml --> - <item name="listPreferredItemHeight">?android:attr/listPreferredItemHeight</item> - <item name="listPreferredItemHeightSmall">?android:attr/listPreferredItemHeightSmall</item> - <item name="listPreferredItemHeightLarge">?android:attr/listPreferredItemHeightLarge</item> - <item name="listPreferredItemPaddingLeft">?android:attr/listPreferredItemPaddingLeft</item> - <item name="listPreferredItemPaddingRight">?android:attr/listPreferredItemPaddingRight - </item> - - <!-- Attributes populated from the framework to be read by apps --> - <item name="buttonBarStyle">?android:attr/buttonBarStyle</item> - <item name="buttonBarButtonStyle">?android:attr/buttonBarButtonStyle</item> + <!-- TODO: Need fixing once Base.Theme.AppCompat themes are done --> </style> - <style name="Theme.Base.AppCompat.Light.DialogWhenLarge.Base" + <style name="Base.Theme.AppCompat.Light.DialogWhenLarge.Base" parent="Theme.Platform.AppCompat.Light.DialogWhenLarge"> - <!-- Copy system flag values for our use --> - <item name="windowActionBar">?android:attr/windowActionBar</item> - <item name="actionBarSize">?android:attr/actionBarSize</item> - <item name="actionBarItemBackground">?android:attr/actionBarItemBackground</item> - <item name="selectableItemBackground">?android:attr/selectableItemBackground</item> - <item name="actionButtonStyle">?android:attr/actionButtonStyle</item> - <item name="dividerVertical">?android:attr/dividerVertical</item> - <item name="dividerHorizontal">?android:attr/dividerHorizontal</item> - <item name="actionBarWidgetTheme">@null</item> - <item name="android:actionBarWidgetTheme">?attr/actionBarWidgetTheme</item> - - <!-- Required for use of support_simple_spinner_dropdown_item.xml --> - <item name="listPreferredItemHeight">?android:attr/listPreferredItemHeight</item> - <item name="listPreferredItemHeightSmall">?android:attr/listPreferredItemHeightSmall</item> - <item name="listPreferredItemHeightLarge">?android:attr/listPreferredItemHeightLarge</item> - <item name="listPreferredItemPaddingLeft">?android:attr/listPreferredItemPaddingLeft</item> - <item name="listPreferredItemPaddingRight">?android:attr/listPreferredItemPaddingRight - </item> - - <!-- Attributes populated from the framework to be read by apps --> - <item name="buttonBarStyle">?android:attr/buttonBarStyle</item> - <item name="buttonBarButtonStyle">?android:attr/buttonBarButtonStyle</item> + <!-- TODO: Need fixing once Base.Theme.AppCompat themes are done --> </style> </resources> diff --git a/current/support/v7/appcompat/res/values-v21/styles_base.xml b/current/support/v7/appcompat/res/values-v21/styles_base.xml index e00b809..ab24116 100644 --- a/current/support/v7/appcompat/res/values-v21/styles_base.xml +++ b/current/support/v7/appcompat/res/values-v21/styles_base.xml @@ -94,9 +94,6 @@ parent="android:TextAppearance.Material.Widget.ActionBar.Subtitle"> </style> - - <!-- - TODO Hidden <style name="TextAppearance.AppCompat.Widget.Base.ActionBar.Title.Inverse" parent="android:TextAppearance.Material.Widget.ActionBar.Title.Inverse"> </style> @@ -104,7 +101,6 @@ <style name="TextAppearance.AppCompat.Widget.Base.ActionBar.Subtitle.Inverse" parent="android:TextAppearance.Material.Widget.ActionBar.Subtitle.Inverse"> </style> - --> <style name="TextAppearance.AppCompat.Widget.Base.ActionMode.Title" parent="android:TextAppearance.Material.Widget.ActionMode.Title"> @@ -114,8 +110,6 @@ parent="android:TextAppearance.Material.Widget.ActionMode.Subtitle"> </style> - <!-- - TODO Hidden <style name="TextAppearance.AppCompat.Widget.Base.ActionMode.Title.Inverse" parent="android:TextAppearance.Material.Widget.ActionMode.Title.Inverse"> </style> @@ -123,7 +117,6 @@ <style name="TextAppearance.AppCompat.Widget.Base.ActionMode.Subtitle.Inverse" parent="android:TextAppearance.Material.Widget.ActionMode.Subtitle.Inverse"> </style> - --> <!-- Action Button Styles --> diff --git a/current/support/v7/appcompat/res/values-v21/styles_base_text.xml b/current/support/v7/appcompat/res/values-v21/styles_base_text.xml new file mode 100644 index 0000000..86f3c03 --- /dev/null +++ b/current/support/v7/appcompat/res/values-v21/styles_base_text.xml @@ -0,0 +1,60 @@ +<?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. +--> + +<resources> + + <style name="Base.TextAppearance.AppCompat" parent="android:TextAppearance.Material" /> + + <style name="Base.TextAppearance.AppCompat.Display4" parent="android:TextAppearance.Material.Display4" /> + + <style name="Base.TextAppearance.AppCompat.Display3" parent="android:TextAppearance.Material.Display3" /> + + <style name="Base.TextAppearance.AppCompat.Display2" parent="android:TextAppearance.Material.Display2" /> + + <style name="Base.TextAppearance.AppCompat.Display1" parent="android:TextAppearance.Material.Display1" /> + + <style name="Base.TextAppearance.AppCompat.Headline" parent="android:TextAppearance.Material.Headline" /> + + <style name="Base.TextAppearance.AppCompat.Title" parent="android:TextAppearance.Material.Title" /> + + <style name="Base.TextAppearance.AppCompat.Subhead" parent="android:TextAppearance.Material.Subhead" /> + + <style name="Base.TextAppearance.AppCompat.Body2" parent="android:TextAppearance.Material.Body2" /> + + <style name="Base.TextAppearance.AppCompat.Body1" parent="android:TextAppearance.Material.Body1" /> + + <style name="Base.TextAppearance.AppCompat.Caption" parent="android:TextAppearance.Material.Caption" /> + + <style name="Base.TextAppearance.AppCompat.Menu" parent="android:TextAppearance.Material.Menu" /> + + <!-- Now deprecated styles --> + + <style name="Base.TextAppearance.AppCompat.Inverse" parent="android:TextAppearance.Material.Inverse" /> + + <style name="Base.TextAppearance.AppCompat.Large" parent="android:TextAppearance.Material.Large" /> + + <style name="Base.TextAppearance.AppCompat.Large.Inverse" parent="android:TextAppearance.Material.Large.Inverse" /> + + <style name="Base.TextAppearance.AppCompat.Medium" parent="android:TextAppearance.Material.Medium" /> + + <style name="Base.TextAppearance.AppCompat.Medium.Inverse" parent="android:TextAppearance.Material.Medium.Inverse" /> + + <style name="Base.TextAppearance.AppCompat.Small" parent="android:TextAppearance.Material.Small" /> + + <style name="Base.TextAppearance.AppCompat.Small.Inverse" parent="android:TextAppearance.Material.Small.Inverse" /> + +</resources>
\ No newline at end of file diff --git a/current/support/v7/appcompat/res/values-v21/themes_base.xml b/current/support/v7/appcompat/res/values-v21/themes_base.xml index 6155225..f2991ef 100644 --- a/current/support/v7/appcompat/res/values-v21/themes_base.xml +++ b/current/support/v7/appcompat/res/values-v21/themes_base.xml @@ -42,4 +42,84 @@ <style name="Theme.Platform.AppCompat.Light.Dialog" parent="android:Theme.Material.Light.Dialog" /> + <style name="Base.Theme.AppCompat" parent="Theme.Platform.AppCompat"> + <item name="windowActionBar">true</item> + + <item name="android:colorPrimary">?attr/colorPrimary</item> + <item name="android:colorPrimaryDark">?attr/colorPrimaryDark</item> + <item name="android:colorAccent">?attr/colorAccent</item> + <item name="android:colorControlNormal">?attr/colorControlNormal</item> + <item name="android:colorControlActivated">?attr/colorControlActivated</item> + <item name="android:colorControlHighlight">?attr/colorControlHighlight</item> + <!-- TODO: <item name="android:colorButtonNormal">?attr/colorButtonNormal</item>--> + </style> + + <style name="Base.Theme.AppCompat.Light" parent="Theme.Platform.AppCompat.Light"> + <item name="windowActionBar">true</item> + + <item name="android:colorPrimary">?attr/colorPrimary</item> + <item name="android:colorPrimaryDark">?attr/colorPrimaryDark</item> + <item name="android:colorAccent">?attr/colorAccent</item> + <item name="android:colorControlNormal">?attr/colorControlNormal</item> + <item name="android:colorControlActivated">?attr/colorControlActivated</item> + <item name="android:colorControlHighlight">?attr/colorControlHighlight</item> + <!-- TODO: <item name="android:colorButtonNormal">?attr/colorButtonNormal</item>--> + </style> + + <style name="Base.Theme.AppCompat.Light.DarkActionBar" parent="Theme.Platform.AppCompat.Light.DarkActionBar"> + <item name="windowActionBar">true</item> + + <item name="android:colorPrimary">?attr/colorPrimary</item> + <item name="android:colorPrimaryDark">?attr/colorPrimaryDark</item> + <item name="android:colorAccent">?attr/colorAccent</item> + <item name="android:colorControlNormal">?attr/colorControlNormal</item> + <item name="android:colorControlActivated">?attr/colorControlActivated</item> + <item name="android:colorControlHighlight">?attr/colorControlHighlight</item> + <!-- TODO: <item name="android:colorButtonNormal">?attr/colorButtonNormal</item>--> + </style> + + <style name="Base.Theme.AppCompat.DialogWhenLarge" parent="Theme.Platform.AppCompat.DialogWhenLarge"> + <item name="windowActionBar">true</item> + + <item name="android:colorPrimary">?attr/colorPrimary</item> + <item name="android:colorPrimaryDark">?attr/colorPrimaryDark</item> + <item name="android:colorAccent">?attr/colorAccent</item> + <item name="android:colorControlNormal">?attr/colorControlNormal</item> + <item name="android:colorControlActivated">?attr/colorControlActivated</item> + <item name="android:colorControlHighlight">?attr/colorControlHighlight</item> + <!-- TODO: <item name="android:colorButtonNormal">?attr/colorButtonNormal</item>--> + </style> + + <style name="Base.Theme.AppCompat.Light.DialogWhenLarge" parent="Theme.Platform.AppCompat.Light.DialogWhenLarge"> + <item name="windowActionBar">true</item> + + <item name="android:colorPrimary">?attr/colorPrimary</item> + <item name="android:colorPrimaryDark">?attr/colorPrimaryDark</item> + <item name="android:colorAccent">?attr/colorAccent</item> + <item name="android:colorControlNormal">?attr/colorControlNormal</item> + <item name="android:colorControlActivated">?attr/colorControlActivated</item> + <item name="android:colorControlHighlight">?attr/colorControlHighlight</item> + <!-- TODO: <item name="android:colorButtonNormal">?attr/colorButtonNormal</item>--> + </style> + + <style name="Base.Theme.AppCompat.Dialog" parent="Theme.Platform.AppCompat.Dialog"> + <item name="android:colorPrimary">?attr/colorPrimary</item> + <item name="android:colorPrimaryDark">?attr/colorPrimaryDark</item> + <item name="android:colorAccent">?attr/colorAccent</item> + <item name="android:colorControlNormal">?attr/colorControlNormal</item> + <item name="android:colorControlActivated">?attr/colorControlActivated</item> + <item name="android:colorControlHighlight">?attr/colorControlHighlight</item> + <!-- TODO: <item name="android:colorButtonNormal">?attr/colorButtonNormal</item>--> + </style> + + <style name="Base.Theme.AppCompat.Light.Dialog" parent="Theme.Platform.AppCompat.Light.Dialog"> + <item name="android:colorPrimary">?attr/colorPrimary</item> + <item name="android:colorPrimaryDark">?attr/colorPrimaryDark</item> + <item name="android:colorAccent">?attr/colorAccent</item> + <item name="android:colorControlNormal">?attr/colorControlNormal</item> + <item name="android:colorControlActivated">?attr/colorControlActivated</item> + <item name="android:colorControlHighlight">?attr/colorControlHighlight</item> + <item name="android:colorButtonNormal">?attr/colorButtonNormal</item> + </style> + </resources> diff --git a/current/support/v7/appcompat/res/values-w600dp/dimens.xml b/current/support/v7/appcompat/res/values-w600dp/dimens.xml index 5bbc34d..5a0a8b4 100644 --- a/current/support/v7/appcompat/res/values-w600dp/dimens.xml +++ b/current/support/v7/appcompat/res/values-w600dp/dimens.xml @@ -20,8 +20,6 @@ showAsAction="ifRoom" items can fit. "always" items can override this. --> <integer name="abc_max_action_buttons">5</integer> - <!-- Default height of an action bar. --> - <dimen name="abc_action_bar_default_height">56dip</dimen> <!-- Vertical padding around action bar icons. --> <dimen name="abc_action_bar_icon_vertical_padding">4dip</dimen> <!-- Text size for action bar titles --> diff --git a/current/support/v7/appcompat/res/values-xlarge/dimens.xml b/current/support/v7/appcompat/res/values-xlarge/dimens.xml index 4172442..106f155 100644 --- a/current/support/v7/appcompat/res/values-xlarge/dimens.xml +++ b/current/support/v7/appcompat/res/values-xlarge/dimens.xml @@ -21,8 +21,6 @@ showAsAction="ifRoom" items can fit. "always" items can override this. --> <integer name="abc_max_action_buttons">5</integer> - <!-- Default height of an action bar. --> - <dimen name="abc_action_bar_default_height">56dip</dimen> <!-- Vertical padding around action bar icons. --> <dimen name="abc_action_bar_icon_vertical_padding">4dip</dimen> <!-- Text size for action bar titles --> diff --git a/current/support/v7/appcompat/res/values/attrs.xml b/current/support/v7/appcompat/res/values/attrs.xml index e0c8465..59d0e61 100644 --- a/current/support/v7/appcompat/res/values/attrs.xml +++ b/current/support/v7/appcompat/res/values/attrs.xml @@ -307,6 +307,35 @@ <!-- Drawable used as a background for selected list items. --> <attr name="listChoiceBackgroundIndicator" format="reference" /> + <!-- ============= --> + <!-- Color palette --> + <!-- ============= --> + <eat-comment /> + + <!-- The primary branding color for the app. By default, this is the color applied to the + action bar background. --> + <attr name="colorPrimary" format="color" /> + + <!-- Dark variant of the primary branding color. By default, this is the color applied to + the status bar (via statusBarColor) and navigation bar (via navigationBarColor). --> + <attr name="colorPrimaryDark" format="color" /> + + <!-- Bright complement to the primary branding color. By default, this is the color applied + to framework controls (via colorControlActivated). --> + <attr name="colorAccent" format="color" /> + + <!-- The color applied to framework controls in their normal state. --> + <attr name="colorControlNormal" format="color" /> + + <!-- The color applied to framework controls in their activated (ex. checked) state. --> + <attr name="colorControlActivated" format="color" /> + + <!-- The color applied to framework control highlights (ex. ripples, list selectors). --> + <attr name="colorControlHighlight" format="color" /> + + <!-- The color applied to framework buttons in their normal state. --> + <attr name="colorButtonNormal" format="color" /> + </declare-styleable> <declare-styleable name="MenuView"> diff --git a/current/support/v7/appcompat/res/values/bools.xml b/current/support/v7/appcompat/res/values/bools.xml index 004d947..4c3c450 100644 --- a/current/support/v7/appcompat/res/values/bools.xml +++ b/current/support/v7/appcompat/res/values/bools.xml @@ -15,6 +15,8 @@ --> <resources> + + <bool name="abc_action_bar_embed_tabs">true</bool> <bool name="abc_action_bar_embed_tabs_pre_jb">false</bool> <bool name="abc_action_bar_expanded_action_views_exclusive">true</bool> <bool name="abc_split_action_bar_is_narrow">true</bool> diff --git a/current/support/v7/appcompat/res/values/colors_material.xml b/current/support/v7/appcompat/res/values/colors_material.xml new file mode 100644 index 0000000..bdbfc8e --- /dev/null +++ b/current/support/v7/appcompat/res/values/colors_material.xml @@ -0,0 +1,164 @@ +<?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. +--> + +<!-- Colors specific to Quantum themes. --> +<resources> + <color name="background_material_dark">#ff212121</color> + <color name="background_material_light">#fffafafa</color> + + <color name="ripple_material_light">#20444444</color> + <color name="ripple_material_dark">#20ffffff</color> + + <color name="button_material_dark">#ff5a595b</color> + <color name="button_material_light">#ffd6d7d7</color> + + <color name="bright_foreground_material_dark">@android:color/white</color> + <color name="bright_foreground_material_light">@android:color/black</color> + <!-- White 50% --> + <color name="bright_foreground_disabled_material_dark">#80ffffff</color> + <!-- Black 50% --> + <color name="bright_foreground_disabled_material_light">#80000000</color> + <color name="bright_foreground_inverse_material_dark">@color/bright_foreground_material_light</color> + <color name="bright_foreground_inverse_material_light">@color/bright_foreground_material_dark</color> + + <color name="dim_foreground_material_dark">#ffbebebe</color> + <color name="dim_foreground_material_light">#ff323232</color> + <color name="dim_foreground_disabled_material_dark">#80bebebe</color> + <color name="dim_foreground_disabled_material_light">#80323232</color> + + <color name="hint_foreground_material_dark">@color/bright_foreground_disabled_material_dark</color> + <color name="hint_foreground_material_light">@color/bright_foreground_disabled_material_light</color> + <!-- TODO: This is 40% alpha on the default accent color. --> + <color name="highlighted_text_material_dark">#6640c4ff</color> + <!-- TODO: This is 40% alpha on the default accent color. --> + <color name="highlighted_text_material_light">#6640c4ff</color> + + <!-- Text & foreground colors --> + <eat-comment /> + + <!-- Black 87% --> + <color name="primary_text_default_material_light">#de000000</color> + <!-- Black 43% --> + <color name="primary_text_disabled_default_material_light">#6e000000</color> + <!-- Black 54% --> + <color name="secondary_text_material_light">#8a000000</color> + <!-- Black 54% (TODO: same as secondary?) --> + <color name="tertiary_text_material_light">#8a000000</color> + + <!-- White 87% --> + <color name="primary_text_default_material_dark">#deffffff</color> + <!-- White 43% --> + <color name="primary_text_disabled_default_material_dark">#6effffff</color> + <!-- White 38% --> + <color name="secondary_text_material_dark">#61ffffff</color> + <!-- White 38% (TODO: same as secondary?) --> + <color name="tertiary_text_material_dark">#61ffffff</color> + + <!-- Primary & accent colors --> + <eat-comment /> + + <color name="material_red_100">#fff4c7c3</color> + <color name="material_red_300">#ffe67c73</color> + <color name="material_red_500">#ffdb4437</color> + <color name="material_red_700">#ffc53929</color> + <color name="material_red_A200">#ffff5252</color> + <color name="material_red_A400">#ffff1744</color> + + <color name="material_blue_100">#ffc6dafc</color> + <color name="material_blue_300">#ff7baaf7</color> + <color name="material_blue_500">#ff4285f4</color> + <color name="material_blue_700">#ff3367d6</color> + <color name="material_blue_A200">#ff448aff</color> + <color name="material_blue_A400">#ff2979ff</color> + + <color name="material_light_blue_A200">#ff40c4ff</color> + + <color name="material_teal_100">#ffb2ebf2</color> + <color name="material_teal_300">#ff4dd0e1</color> + <color name="material_teal_500">#ff00bcd4</color> + <color name="material_teal_700">#ff0097a7</color> + <color name="material_teal_A200">#ff18ffff</color> + <color name="material_teal_A400">#ff00e5ff</color> + + <!-- Accent color used by Settings --> + <color name="material_dark_teal_A400">#ff009688</color> + + <color name="material_green_100">#ffb7e1cd</color> + <color name="material_green_300">#ff57bb8a</color> + <color name="material_green_500">#ff0f9d58</color> + <color name="material_green_700">#ff0b8043</color> + <color name="material_green_A200">#ff69f0ae</color> + <color name="material_green_A400">#ff00e676</color> + + <color name="material_lime_100">#fff0f4c3</color> + <color name="material_lime_300">#ffdce775</color> + <color name="material_lime_500">#ffcddc39</color> + <color name="material_lime_700">#ffafb42b</color> + <color name="material_lime_A200">#ffeeff41</color> + <color name="material_lime_A400">#ffc6ff00</color> + + <color name="material_yellow_100">#fffce8b2</color> + <color name="material_yellow_300">#fff7cb4d</color> + <color name="material_yellow_500">#fff4b400</color> + <color name="material_yellow_700">#fff09300</color> + <color name="material_yellow_A200">#ffffcd40</color> + <color name="material_yellow_A400">#ffffbc00</color> + + <color name="material_orange_100">#ffffe0b2</color> + <color name="material_orange_300">#ffffb74d</color> + <color name="material_orange_500">#ffff9800</color> + <color name="material_orange_700">#fff57c00</color> + <color name="material_orange_A200">#ffffab40</color> + <color name="material_orange_A400">#ffff9100</color> + + <color name="material_deep_orange_100">#fff4c7c3</color> + <color name="material_deep_orange_300">#ffe67c73</color> + <color name="material_deep_orange_500">#ffff5722</color> + <color name="material_deep_orange_700">#ffc53929</color> + <color name="material_deep_orange_A200">#ffff5252</color> + <color name="material_deep_orange_A400">#ffff1744</color> + + <!-- Neutral colors --> + <eat-comment /> + + <color name="material_grey_50">#fffafafa</color> + <color name="material_grey_100">#fff5f5f5</color> + <color name="material_grey_300">#ffeeeeee</color> + <color name="material_grey_500">#ffa3a3a3</color> + <color name="material_grey_600">#ff757575</color> + <color name="material_grey_700">#ff717171</color> + <color name="material_grey_900">#ff212121</color> + + <color name="material_blue_grey_50">#ffeceff1</color> + <color name="material_blue_grey_100">#ffcfd8dc</color> + <color name="material_blue_grey_300">#ff90a4ae</color> + <color name="material_blue_grey_400">#ff78909c</color> + <color name="material_blue_grey_500">#ff607d8b</color> + <color name="material_blue_grey_600">#ff546e7a</color> + <color name="material_blue_grey_700">#ff455a64</color> + <color name="material_blue_grey_800">#ff37474f</color> + <!-- Primary color used by Settings --> + <color name="material_blue_grey_900">#ff263238</color> + <!-- Primary dark color used by Settings --> + <color name="material_blue_grey_950">#ff21272b</color> + + <color name="material_brown_100">#ffd7ccc8</color> + <color name="material_brown_300">#ffa1887f</color> + <color name="material_brown_500">#ff795548</color> + <color name="material_brown_700">#ff5d4037</color> + +</resources>
\ No newline at end of file diff --git a/current/support/v7/appcompat/res/values/config.xml b/current/support/v7/appcompat/res/values/config.xml index 8c027d1..0f8b7dc 100644 --- a/current/support/v7/appcompat/res/values/config.xml +++ b/current/support/v7/appcompat/res/values/config.xml @@ -31,4 +31,9 @@ Defaults to true. If this is not appropriate for specific locales it should be disabled in that locale's resources. --> <bool name="abc_config_actionMenuItemAllCaps">true</bool> + + <!-- The duration (in milliseconds) of the activity open/close and fragment open/close animations. --> + <integer name="abc_config_activityShortDur">150</integer> + <integer name="abc_config_activityDefaultDur">220</integer> + </resources>
\ No newline at end of file diff --git a/current/support/v7/appcompat/res/values/dimens.xml b/current/support/v7/appcompat/res/values/dimens.xml index c2cf3a3..2672afd 100644 --- a/current/support/v7/appcompat/res/values/dimens.xml +++ b/current/support/v7/appcompat/res/values/dimens.xml @@ -26,8 +26,6 @@ a few are present. --> <dimen name="abc_action_bar_stacked_tab_max_width">180dp</dimen> - <!-- Default height of an action bar. --> - <dimen name="abc_action_bar_default_height">48dip</dimen> <!-- Vertical padding around action bar icons. --> <dimen name="abc_action_bar_icon_vertical_padding">8dip</dimen> <!-- Text size for action bar titles --> diff --git a/current/support/v7/appcompat/res/values/dimens_material.xml b/current/support/v7/appcompat/res/values/dimens_material.xml new file mode 100644 index 0000000..3ef941b --- /dev/null +++ b/current/support/v7/appcompat/res/values/dimens_material.xml @@ -0,0 +1,44 @@ +<?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. +--> +<resources> + + <!-- Default height of an action bar. --> + <dimen name="abc_action_bar_default_height_material">56dp</dimen> + + <dimen name="abc_action_button_min_width_material">48dp</dimen> + <dimen name="abc_action_button_min_height_material">48dp</dimen> + <dimen name="abc_action_overflow_min_width_material">36dp</dimen> + + <dimen name="text_size_display_4_material">112sp</dimen> + <dimen name="text_size_display_3_material">56sp</dimen> + <dimen name="text_size_display_2_material">45sp</dimen> + <dimen name="text_size_display_1_material">34sp</dimen> + <dimen name="text_size_headline_material">24sp</dimen> + <dimen name="text_size_title_material">20sp</dimen> + <dimen name="text_size_subhead_material">16sp</dimen> + <dimen name="text_size_body_2_material">14sp</dimen> + <dimen name="text_size_body_1_material">14sp</dimen> + <dimen name="text_size_caption_material">12sp</dimen> + <dimen name="text_size_menu_material">14sp</dimen> + <dimen name="text_size_button_material">14sp</dimen> + + <!-- Text size for action bar titles --> + <dimen name="abc_action_bar_title_text_size_material">20sp</dimen> + <!-- Text size for action bar subtitles --> + <dimen name="abc_action_bar_subtitle_text_size_material">16sp</dimen> + +</resources>
\ No newline at end of file diff --git a/current/support/v7/appcompat/res/values/ids.xml b/current/support/v7/appcompat/res/values/ids.xml index ebeed83..e54b834 100644 --- a/current/support/v7/appcompat/res/values/ids.xml +++ b/current/support/v7/appcompat/res/values/ids.xml @@ -15,6 +15,7 @@ --> <resources> <item type="id" name="home"/> + <item type="id" name="up"/> <item type="id" name="action_bar_activity_content"/> <item type="id" name="action_menu_divider"/> <item type="id" name="action_menu_presenter"/> diff --git a/current/support/v7/appcompat/res/values/styles.xml b/current/support/v7/appcompat/res/values/styles.xml index 94d2e88..5c9ee76 100644 --- a/current/support/v7/appcompat/res/values/styles.xml +++ b/current/support/v7/appcompat/res/values/styles.xml @@ -17,229 +17,273 @@ <resources> <!-- Styles in here can be extended for customisation in your application. Each utilises - one of the Base styles. If Holo themes are available on the current platform version + one of the.styles. If Holo themes are available on the current platform version they will be used instead of the compat styles. --> - <style name="Widget.AppCompat.ActionBar" parent="Widget.AppCompat.Base.ActionBar"> + <style name="Widget.AppCompat.ActionBar" parent="Base.Widget.AppCompat.ActionBar"> </style> - <style name="Widget.AppCompat.Light.ActionBar" parent="Widget.AppCompat.Light.Base.ActionBar"> + <style name="Widget.AppCompat.Light.ActionBar" parent="Base.Widget.AppCompat.Light.ActionBar"> </style> <style name="Widget.AppCompat.ActionBar.Solid" - parent="Widget.AppCompat.Base.ActionBar.Solid"> + parent="Base.Widget.AppCompat.ActionBar.Solid"> </style> <style name="Widget.AppCompat.Light.ActionBar.Solid" - parent="Widget.AppCompat.Light.Base.ActionBar.Solid"> + parent="Base.Widget.AppCompat.Light.ActionBar.Solid"> </style> <style name="Widget.AppCompat.Light.ActionBar.Solid.Inverse" - parent="Widget.AppCompat.Light.Base.ActionBar.Solid.Inverse"> + parent="Base.Widget.AppCompat.Light.ActionBar.Solid.Inverse"> </style> <style name="TextAppearance.AppCompat.Widget.ActionBar.Title" - parent="TextAppearance.AppCompat.Widget.Base.ActionBar.Title"> + parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Title"> </style> <style name="TextAppearance.AppCompat.Widget.ActionBar.Subtitle" - parent="TextAppearance.AppCompat.Widget.Base.ActionBar.Subtitle"> + parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle"> </style> <style name="TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" - parent="TextAppearance.AppCompat.Widget.Base.ActionBar.Title.Inverse"> + parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse"> </style> <style name="TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" - parent="TextAppearance.AppCompat.Widget.Base.ActionBar.Subtitle.Inverse"> + parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse"> </style> <style name="Widget.AppCompat.ProgressBar.Horizontal" - parent="Widget.AppCompat.Base.ProgressBar.Horizontal"> + parent="Base.Widget.AppCompat.ProgressBar.Horizontal"> </style> <style name="Widget.AppCompat.ProgressBar" - parent="Widget.AppCompat.Base.ProgressBar"> + parent="Base.Widget.AppCompat.ProgressBar"> </style> - <style name="Widget.AppCompat.ActionButton" parent="Widget.AppCompat.Base.ActionButton"> + <style name="Widget.AppCompat.ActionButton" parent="Base.Widget.AppCompat.ActionButton"> </style> <style name="Widget.AppCompat.Light.ActionButton" - parent="Widget.AppCompat.Light.Base.ActionButton"> + parent="Base.Widget.AppCompat.Light.ActionButton"> </style> <style name="Widget.AppCompat.ActionButton.CloseMode" - parent="Widget.AppCompat.Base.ActionButton.CloseMode"> + parent="Base.Widget.AppCompat.ActionButton.CloseMode"> </style> <style name="Widget.AppCompat.Light.ActionButton.CloseMode" - parent="Widget.AppCompat.Light.Base.ActionButton.CloseMode"> + parent="Base.Widget.AppCompat.Light.ActionButton.CloseMode"> </style> <style name="Widget.AppCompat.ActionButton.Overflow" - parent="Widget.AppCompat.Base.ActionButton.Overflow"> + parent="Base.Widget.AppCompat.ActionButton.Overflow"> </style> <style name="Widget.AppCompat.Light.ActionButton.Overflow" - parent="Widget.AppCompat.Light.Base.ActionButton.Overflow"> + parent="Base.Widget.AppCompat.Light.ActionButton.Overflow"> </style> - <style name="Widget.AppCompat.ActionBar.TabBar" parent="Widget.AppCompat.Base.ActionBar.TabBar"> + <style name="Widget.AppCompat.ActionBar.TabBar" + parent="Base.Widget.AppCompat.ActionBar.TabBar"> </style> <style name="Widget.AppCompat.Light.ActionBar.TabBar" - parent="Widget.AppCompat.Light.Base.ActionBar.TabBar"> + parent="Base.Widget.AppCompat.Light.ActionBar.TabBar"> </style> <style name="Widget.AppCompat.Light.ActionBar.TabBar.Inverse" - parent="Widget.AppCompat.Light.Base.ActionBar.TabBar.Inverse"></style> + parent="Base.Widget.AppCompat.Light.ActionBar.TabBar.Inverse"> + </style> <style name="Widget.AppCompat.ActionBar.TabView" - parent="Widget.AppCompat.Base.ActionBar.TabView"> + parent="Base.Widget.AppCompat.ActionBar.TabView"> </style> <style name="Widget.AppCompat.Light.ActionBar.TabView" - parent="Widget.AppCompat.Light.Base.ActionBar.TabView"> + parent="Base.Widget.AppCompat.Light.ActionBar.TabView"> </style> <style name="Widget.AppCompat.Light.ActionBar.TabView.Inverse" - parent="Widget.AppCompat.Light.Base.ActionBar.TabView.Inverse"> + parent="Base.Widget.AppCompat.Light.ActionBar.TabView.Inverse"> </style> <style name="Widget.AppCompat.ActionBar.TabText" - parent="Widget.AppCompat.Base.ActionBar.TabText"> + parent="Base.Widget.AppCompat.ActionBar.TabText"> </style> <style name="Widget.AppCompat.Light.ActionBar.TabText" - parent="Widget.AppCompat.Light.Base.ActionBar.TabText"> + parent="Base.Widget.AppCompat.Light.ActionBar.TabText"> </style> <style name="Widget.AppCompat.Light.ActionBar.TabText.Inverse" - parent="Widget.AppCompat.Light.Base.ActionBar.TabText.Inverse"> + parent="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse"> </style> <style name="TextAppearance.AppCompat.Widget.ActionBar.Menu" - parent="TextAppearance.AppCompat.Widget.Base.ActionBar.Menu"> + parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu"> </style> - <style name="Widget.AppCompat.ActionMode" parent="Widget.AppCompat.Base.ActionMode"> + <style name="Widget.AppCompat.ActionMode" parent="Base.Widget.AppCompat.ActionMode"> </style> <style name="Widget.AppCompat.Light.ActionMode.Inverse" - parent="Widget.AppCompat.Light.Base.ActionMode.Inverse"> + parent="Base.Widget.AppCompat.Light.ActionMode.Inverse"> </style> <style name="TextAppearance.AppCompat.Widget.ActionMode.Title" - parent="TextAppearance.AppCompat.Widget.Base.ActionMode.Title"> + parent="Base.TextAppearance.AppCompat.Widget.ActionMode.Title"> </style> <style name="TextAppearance.AppCompat.Widget.ActionMode.Subtitle" - parent="TextAppearance.AppCompat.Widget.Base.ActionMode.Subtitle"> + parent="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle"> </style> <style name="TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse" - parent="TextAppearance.AppCompat.Widget.Base.ActionMode.Title.Inverse"> + parent="Base.TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse"> </style> <style name="TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse" - parent="TextAppearance.AppCompat.Widget.Base.ActionMode.Subtitle.Inverse"> + parent="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse"> </style> <style name="TextAppearance.AppCompat.Widget.DropDownItem" - parent="TextAppearance.AppCompat.Widget.Base.DropDownItem"> + parent="Base.TextAppearance.AppCompat.Widget.DropDownItem"> </style> <style name="Widget.AppCompat.Spinner.DropDown.ActionBar" - parent="Widget.AppCompat.Base.Spinner"> + parent="Base.Widget.AppCompat.Spinner"> </style> <style name="Widget.AppCompat.Light.Spinner.DropDown.ActionBar" - parent="Widget.AppCompat.Light.Base.Spinner"> + parent="Base.Widget.AppCompat.Light.Spinner"> </style> <style name="Widget.AppCompat.DropDownItem.Spinner" - parent="Widget.AppCompat.Base.DropDownItem.Spinner"> + parent="Base.Widget.AppCompat.DropDownItem.Spinner"> </style> + <style name="Widget.AppCompat.Light.DropDownItem.Spinner" - parent="Widget.AppCompat.Light.Base.DropDownItem.Spinner"> + parent="Base.Widget.AppCompat.Light.DropDownItem.Spinner"> </style> <style name="Widget.AppCompat.ListView.DropDown" - parent="Widget.AppCompat.Base.ListView.DropDown"> + parent="Base.Widget.AppCompat.ListView.DropDown"> </style> <style name="Widget.AppCompat.Light.ListView.DropDown" - parent="Widget.AppCompat.Light.Base.ListView.DropDown"> + parent="Base.Widget.AppCompat.Light.ListView.DropDown"> </style> <style name="TextAppearance.Widget.AppCompat.ExpandedMenu.Item" - parent="TextAppearance.Widget.AppCompat.Base.ExpandedMenu.Item"> + parent="Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item"> </style> - <style name="Widget.AppCompat.ListPopupWindow" parent="Widget.AppCompat.Base.ListPopupWindow"> + <style name="Widget.AppCompat.ListPopupWindow" parent="Base.Widget.AppCompat.ListPopupWindow"> </style> <style name="Widget.AppCompat.Light.ListPopupWindow" - parent="Widget.AppCompat.Light.Base.ListPopupWindow"> + parent="Base.Widget.AppCompat.Light.ListPopupWindow"> </style> - <style name="Widget.AppCompat.PopupMenu" parent="Widget.AppCompat.Base.PopupMenu"> + <style name="Widget.AppCompat.PopupMenu" parent="Base.Widget.AppCompat.PopupMenu"> </style> <style name="Widget.AppCompat.Light.PopupMenu" - parent="Widget.AppCompat.Light.Base.PopupMenu"> + parent="Base.Widget.AppCompat.Light.PopupMenu"> </style> - <style name="Widget.AppCompat.ListView.Menu" parent="Widget.AppCompat.Base.ListView.Menu"> + <style name="Widget.AppCompat.ListView.Menu" parent="Base.Widget.AppCompat.ListView.Menu"> </style> <style name="TextAppearance.AppCompat.Widget.PopupMenu.Large" - parent="TextAppearance.AppCompat.Base.Widget.PopupMenu.Large"> + parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large"> </style> <style name="TextAppearance.AppCompat.Widget.PopupMenu.Small" - parent="TextAppearance.AppCompat.Base.Widget.PopupMenu.Small"> + parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small"> </style> <style name="TextAppearance.AppCompat.Light.Widget.PopupMenu.Large" - parent="TextAppearance.AppCompat.Light.Base.Widget.PopupMenu.Large"> + parent="Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Large"> </style> <style name="TextAppearance.AppCompat.Light.Widget.PopupMenu.Small" - parent="TextAppearance.AppCompat.Light.Base.Widget.PopupMenu.Small"> + parent="Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small"> </style> <style name="TextAppearance.AppCompat.SearchResult.Title" - parent="TextAppearance.AppCompat.Base.SearchResult.Title"> + parent="Base.TextAppearance.AppCompat.SearchResult.Title"> </style> <style name="TextAppearance.AppCompat.SearchResult.Subtitle" - parent="TextAppearance.AppCompat.Base.SearchResult.Subtitle"> + parent="Base.TextAppearance.AppCompat.SearchResult.Subtitle"> </style> <style name="TextAppearance.AppCompat.Light.SearchResult.Title" - parent="TextAppearance.AppCompat.Light.Base.SearchResult.Title"> + parent="Base.TextAppearance.AppCompat.Light.SearchResult.Title"> </style> <style name="TextAppearance.AppCompat.Light.SearchResult.Subtitle" - parent="TextAppearance.AppCompat.Light.Base.SearchResult.Subtitle"> + parent="Base.TextAppearance.AppCompat.Light.SearchResult.Subtitle"> </style> <style name="Widget.AppCompat.AutoCompleteTextView" - parent="Widget.AppCompat.Base.AutoCompleteTextView"> + parent="Base.Widget.AppCompat.AutoCompleteTextView"> </style> <style name="Widget.AppCompat.Light.AutoCompleteTextView" - parent="Widget.AppCompat.Light.Base.AutoCompleteTextView"> + parent="Base.Widget.AppCompat.Light.AutoCompleteTextView"> </style> <style name="Widget.AppCompat.ActivityChooserView" - parent="Widget.AppCompat.Base.ActivityChooserView"> + parent="Base.Widget.AppCompat.ActivityChooserView"> </style> <style name="Widget.AppCompat.Light.ActivityChooserView" - parent="Widget.AppCompat.Light.Base.ActivityChooserView"> + parent="Base.Widget.AppCompat.Light.ActivityChooserView"> </style> + <eat-comment /> + <!-- Text styles --> + + <style name="TextAppearance.AppCompat" parent="Base.TextAppearance.AppCompat" /> + + <style name="TextAppearance.AppCompat.Display4" parent="Base.TextAppearance.AppCompat.Display4" /> + + <style name="TextAppearance.AppCompat.Display3" parent="Base.TextAppearance.AppCompat.Display3" /> + + <style name="TextAppearance.AppCompat.Display2" parent="Base.TextAppearance.AppCompat.Display2" /> + + <style name="TextAppearance.AppCompat.Display1" parent="Base.TextAppearance.AppCompat.Display1" /> + + <style name="TextAppearance.AppCompat.Headline" parent="Base.TextAppearance.AppCompat.Headline" /> + + <style name="TextAppearance.AppCompat.Title" parent="Base.TextAppearance.AppCompat.Title" /> + + <style name="TextAppearance.AppCompat.Subhead" parent="Base.TextAppearance.AppCompat.Subhead" /> + + <style name="TextAppearance.AppCompat.Body2" parent="Base.TextAppearance.AppCompat.Body2" /> + + <style name="TextAppearance.AppCompat.Body1" parent="Base.TextAppearance.AppCompat.Body1" /> + + <style name="TextAppearance.AppCompat.Caption" parent="Base.TextAppearance.AppCompat.Caption" /> + + <style name="TextAppearance.AppCompat.Menu" parent="Base.TextAppearance.AppCompat.Menu" /> + + <style name="TextAppearance.AppCompat.Inverse" parent="Base.TextAppearance.AppCompat.Inverse" /> + + <style name="TextAppearance.AppCompat.Large" parent="Base.TextAppearance.AppCompat.Large" /> + + <style name="TextAppearance.AppCompat.Large.Inverse" parent="Base.TextAppearance.AppCompat.Large.Inverse" /> + + <style name="TextAppearance.AppCompat.Medium" parent="Base.TextAppearance.AppCompat.Medium" /> + + <style name="TextAppearance.AppCompat.Medium.Inverse" parent="Base.TextAppearance.AppCompat.Medium.Inverse" /> + + <style name="TextAppearance.AppCompat.Small" parent="Base.TextAppearance.AppCompat.Small" /> + + <style name="TextAppearance.AppCompat.Small.Inverse" parent="Base.TextAppearance.AppCompat.Small.Inverse" /> + </resources> diff --git a/current/support/v7/appcompat/res/values/styles_base.xml b/current/support/v7/appcompat/res/values/styles_base.xml index 79dd732..ab268cd 100644 --- a/current/support/v7/appcompat/res/values/styles_base.xml +++ b/current/support/v7/appcompat/res/values/styles_base.xml @@ -16,154 +16,139 @@ <resources> - <!-- Like in themes_base.xml, the namespace "*.AppCompat.Base" is used to + <!-- Like in themes_base.xml, the namespace "Base.AppCompat.*" is used to define base styles for the platform version. The "*.AppCompat" variants are for direct use or use as parent styles by the app. --> <eat-comment/> - <style name="Widget.AppCompat.Base.ActionBar" parent=""> - <item name="displayOptions">useLogo|showHome|showTitle</item> + <style name="Base.Widget.AppCompat.ActionBar" parent=""> + <item name="displayOptions">showTitle</item> <item name="divider">?attr/dividerVertical</item> <item name="height">?attr/actionBarSize</item> <item name="homeLayout">@layout/abc_action_bar_home</item> <item name="titleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Title</item> - <item name="subtitleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle - </item> + <item name="subtitleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle</item> - <item name="background">@drawable/abc_ab_transparent_dark_holo</item> - <item name="backgroundStacked">@drawable/abc_ab_stacked_transparent_dark_holo</item> - <item name="backgroundSplit">@drawable/abc_ab_bottom_transparent_dark_holo</item> + <item name="background">@null</item> + <item name="backgroundStacked">@null</item> + <item name="backgroundSplit">@null</item> <item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item> <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item> <item name="progressBarStyle">@style/Widget.AppCompat.ProgressBar.Horizontal</item> <item name="indeterminateProgressStyle">@style/Widget.AppCompat.ProgressBar</item> - </style> - <style name="Widget.AppCompat.Light.Base.ActionBar" parent="Widget.AppCompat.Base.ActionBar"> - <item name="background">@drawable/abc_ab_transparent_light_holo</item> - <item name="backgroundStacked">@drawable/abc_ab_stacked_transparent_light_holo</item> - <item name="backgroundSplit">@drawable/abc_ab_bottom_transparent_light_holo</item> + <item name="android:gravity">center_vertical</item> - <item name="actionButtonStyle">@style/Widget.AppCompat.Light.ActionButton</item> - <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.Light.ActionButton.Overflow - </item> + </style> - <item name="progressBarStyle">@style/Widget.AppCompat.ProgressBar.Horizontal</item> - <item name="indeterminateProgressStyle">@style/Widget.AppCompat.ProgressBar</item> + <style name="Base.Widget.AppCompat.Light.ActionBar" parent="Base.Widget.AppCompat.ActionBar"> + <item name="actionButtonStyle">@style/Widget.AppCompat.Light.ActionButton</item> + <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.Light.ActionButton.Overflow</item> </style> - <style name="Widget.AppCompat.Base.ActionBar.Solid" parent="Widget.AppCompat.Base.ActionBar"> - <item name="background">@drawable/abc_ab_solid_dark_holo</item> - <item name="backgroundStacked">@drawable/abc_ab_stacked_solid_dark_holo</item> - <item name="backgroundSplit">@drawable/abc_ab_bottom_solid_dark_holo</item> + <style name="Base.Widget.AppCompat.ActionBar.Solid"> + <item name="background">?attr/colorPrimary</item> + <item name="backgroundStacked">?attr/colorPrimary</item> + <item name="backgroundSplit">?attr/colorPrimary</item> </style> - <style name="Widget.AppCompat.Light.Base.ActionBar.Solid" - parent="Widget.AppCompat.Light.Base.ActionBar"> - <item name="background">@drawable/abc_ab_solid_light_holo</item> - <item name="backgroundStacked">@drawable/abc_ab_stacked_solid_light_holo</item> - <item name="backgroundSplit">@drawable/abc_ab_bottom_solid_light_holo</item> + <style name="Base.Widget.AppCompat.Light.ActionBar.Solid"> + <item name="background">?attr/colorPrimary</item> + <item name="backgroundStacked">?attr/colorPrimary</item> + <item name="backgroundSplit">?attr/colorPrimary</item> </style> - <style name="Widget.AppCompat.Light.Base.ActionBar.Solid.Inverse" - parent="Widget.AppCompat.Base.ActionBar.Solid"> - <item name="titleTextStyle"> - @style/TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse - </item> - <item name="subtitleTextStyle"> - @style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse - </item> - <item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item> - <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow - </item> + <style name="Base.Widget.AppCompat.Light.ActionBar.Solid.Inverse"> + <item name="titleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse</item> + <item name="subtitleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse</item> </style> - <style name="Widget.AppCompat.Base.ActionButton" parent=""> + <style name="Base.Widget.AppCompat.ActionButton" parent=""> <item name="android:background">?attr/actionBarItemBackground</item> <item name="android:paddingLeft">12dip</item> <item name="android:paddingRight">12dip</item> - <item name="android:minWidth">@dimen/abc_action_button_min_width</item> - <item name="android:minHeight">?attr/actionBarSize</item> + <item name="android:minWidth">@dimen/abc_action_button_min_width_material</item> + <item name="android:minHeight">@dimen/abc_action_button_min_height_material</item> + <item name="android:scaleType">center</item> <item name="android:gravity">center</item> <item name="android:maxLines">2</item> <item name="textAllCaps">@bool/abc_config_actionMenuItemAllCaps</item> </style> - <style name="Widget.AppCompat.Light.Base.ActionButton" - parent="Widget.AppCompat.Base.ActionButton"> + <style name="Base.Widget.AppCompat.Light.ActionButton" parent="Base.Widget.AppCompat.ActionButton"> </style> - <style name="Widget.AppCompat.Base.ActionButton.CloseMode" - parent="Widget.AppCompat.Base.ActionButton"> + <style name="Base.Widget.AppCompat.ActionButton.CloseMode" parent="Base.Widget.AppCompat.ActionButton"> </style> - <style name="Widget.AppCompat.Light.Base.ActionButton.CloseMode" - parent="Widget.AppCompat.Light.Base.ActionButton"> + <style name="Base.Widget.AppCompat.Light.ActionButton.CloseMode" parent="Base.Widget.AppCompat.Light.ActionButton"> </style> - <style name="Widget.AppCompat.Base.ActionButton.Overflow" - parent="Widget.AppCompat.Base.ActionButton"> - <item name="android:src">@drawable/abc_ic_menu_moreoverflow_normal_holo_dark</item> + <style name="Base.Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton"> + <item name="android:src">@drawable/abc_ic_menu_moreoverflow_material_dark</item> + <item name="android:minWidth">@dimen/abc_action_overflow_min_width_material</item> </style> - <style name="Widget.AppCompat.Light.Base.ActionButton.Overflow" - parent="Widget.AppCompat.Light.Base.ActionButton"> - <item name="android:src">@drawable/abc_ic_menu_moreoverflow_normal_holo_light</item> + <style name="Base.Widget.AppCompat.Light.ActionButton.Overflow" parent="Base.Widget.AppCompat.Light.ActionButton"> + <item name="android:src">@drawable/abc_ic_menu_moreoverflow_material_light</item> + <item name="android:minWidth">@dimen/abc_action_overflow_min_width_material</item> </style> - <style name="Widget.AppCompat.Base.ActionBar.TabBar" parent=""> + <style name="Base.Widget.AppCompat.ActionBar.TabBar" parent=""> <item name="divider">?attr/actionBarDivider</item> <item name="showDividers">middle</item> - <item name="dividerPadding">12dip</item> + <item name="dividerPadding">8dip</item> </style> - <style name="Widget.AppCompat.Light.Base.ActionBar.TabBar" - parent="Widget.AppCompat.Base.ActionBar.TabBar"> + <style name="Base.Widget.AppCompat.Light.ActionBar.TabBar" + parent="Base.Widget.AppCompat.ActionBar.TabBar"> </style> - <style name="Widget.AppCompat.Light.Base.ActionBar.TabBar.Inverse" - parent="Widget.AppCompat.Light.Base.ActionBar.TabBar"> + <style name="Base.Widget.AppCompat.Light.ActionBar.TabBar.Inverse" + parent="Base.Widget.AppCompat.Light.ActionBar.TabBar"> </style> - <style name="Widget.AppCompat.Base.ActionBar.TabView" parent=""> - <item name="android:background">@drawable/abc_tab_indicator_ab_holo</item> + <style name="Base.Widget.AppCompat.ActionBar.TabView" parent=""> + <item name="android:background">@drawable/abc_tab_indicator_material</item> <item name="android:gravity">center_horizontal</item> <item name="android:paddingLeft">16dip</item> <item name="android:paddingRight">16dip</item> + <item name="android:layout_width">0dip</item> + <item name="android:layout_weight">1</item> <item name="android:minWidth">80dip</item> </style> - <style name="Widget.AppCompat.Light.Base.ActionBar.TabView" - parent="Widget.AppCompat.Base.ActionBar.TabView"> + <style name="Base.Widget.AppCompat.Light.ActionBar.TabView" + parent="Base.Widget.AppCompat.ActionBar.TabView"> </style> - <style name="Widget.AppCompat.Light.Base.ActionBar.TabView.Inverse" - parent="Widget.AppCompat.Light.Base.ActionBar.TabView"> + <style name="Base.Widget.AppCompat.Light.ActionBar.TabView.Inverse" + parent="Base.Widget.AppCompat.Light.ActionBar.TabView"> </style> - <style name="Widget.AppCompat.Base.ActionBar.TabText" parent=""> - <item name="android:textAppearance">@null</item> - <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item> + <style name="Base.Widget.AppCompat.ActionBar.TabText" parent=""> + <item name="android:textAppearance">@style/TextAppearance.AppCompat.Medium</item> <item name="android:textSize">12sp</item> <item name="android:textStyle">bold</item> <item name="android:ellipsize">marquee</item> <item name="android:maxLines">2</item> + <item name="android:maxWidth">180dp</item> <item name="textAllCaps">true</item> </style> - <style name="Widget.AppCompat.Light.Base.ActionBar.TabText" - parent="Widget.AppCompat.Base.ActionBar.TabText"> + <style name="Base.Widget.AppCompat.Light.ActionBar.TabText" + parent="Base.Widget.AppCompat.ActionBar.TabText"> </style> - <style name="Widget.AppCompat.Light.Base.ActionBar.TabText.Inverse" - parent="Widget.AppCompat.Light.Base.ActionBar.TabText"> - <item name="android:textColor">?android:attr/textColorPrimaryInverseDisableOnly</item> + <style name="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse" + parent="Base.Widget.AppCompat.Light.ActionBar.TabText"> + <item name="android:textAppearance">@style/TextAppearance.AppCompat.Medium.Inverse</item> </style> - <style name="Widget.AppCompat.Base.ActionMode" parent=""> + <style name="Base.Widget.AppCompat.ActionMode" parent=""> <item name="background">?attr/actionModeBackground</item> <item name="backgroundSplit">?attr/actionModeSplitBackground</item> <item name="height">?attr/actionBarSize</item> @@ -172,66 +157,53 @@ </item> </style> - <style name="Widget.AppCompat.Light.Base.ActionMode.Inverse" - parent="Widget.AppCompat.Base.ActionMode"> - <item name="titleTextStyle"> - @style/TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse - </item> - <item name="subtitleTextStyle"> - @style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse - </item> + <style name="Base.Widget.AppCompat.Light.ActionMode.Inverse" parent="Base.Widget.AppCompat.ActionMode"> + <item name="titleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse</item> + <item name="subtitleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse</item> </style> - <style name="TextAppearance.AppCompat.Widget.Base.ActionMode.Title" - parent="android:TextAppearance.Medium"> + <style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Title" parent="TextAppearance.AppCompat.Medium"> + <item name="android:textSize">@dimen/abc_action_bar_title_text_size_material</item> </style> - <style name="TextAppearance.AppCompat.Widget.Base.ActionMode.Subtitle" - parent="android:TextAppearance.Small"> - <item name="android:textColor">?android:attr/textColorSecondary</item> + <style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="TextAppearance.AppCompat.Small"> + <item name="android:textSize">@dimen/abc_action_bar_subtitle_text_size_material</item> </style> - <style name="TextAppearance.AppCompat.Widget.Base.ActionMode.Title.Inverse" - parent="android:TextAppearance.Medium.Inverse"> + <style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse" parent="TextAppearance.AppCompat.Medium.Inverse"> + <item name="android:textSize">@dimen/abc_action_bar_title_text_size_material</item> </style> - <style name="TextAppearance.AppCompat.Widget.Base.ActionMode.Subtitle.Inverse" - parent="android:TextAppearance.Small.Inverse"> - <item name="android:textColor">?android:attr/textColorSecondaryInverse</item> + <style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse" parent="TextAppearance.AppCompat.Small.Inverse"> + <item name="android:textSize">@dimen/abc_action_bar_subtitle_text_size_material</item> </style> - <style name="TextAppearance.AppCompat.Widget.Base.ActionBar.Menu" - parent="android:TextAppearance.Small"> + <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="android:TextAppearance.Small"> <item name="android:textSize">12sp</item> <item name="android:textStyle">bold</item> <item name="android:textColor">?attr/actionMenuTextColor</item> </style> - <style name="TextAppearance.AppCompat.Widget.Base.ActionBar.Title" - parent="android:TextAppearance.Medium"> - <item name="android:textSize">@dimen/abc_action_bar_title_text_size</item> + <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title" parent="TextAppearance.AppCompat.Medium"> + <item name="android:textSize">@dimen/abc_action_bar_title_text_size_material</item> </style> - <style name="TextAppearance.AppCompat.Widget.Base.ActionBar.Subtitle" - parent="android:TextAppearance.Small"> - <item name="android:textSize">@dimen/abc_action_bar_subtitle_text_size</item> + <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="TextAppearance.AppCompat.Small"> + <item name="android:textSize">@dimen/abc_action_bar_subtitle_text_size_material</item> </style> - <style name="TextAppearance.AppCompat.Widget.Base.ActionBar.Title.Inverse" - parent="android:TextAppearance.Medium.Inverse"> - <item name="android:textSize">@dimen/abc_action_bar_title_text_size</item> + <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="TextAppearance.AppCompat.Medium.Inverse"> + <item name="android:textSize">@dimen/abc_action_bar_title_text_size_material</item> </style> - <style name="TextAppearance.AppCompat.Widget.Base.ActionBar.Subtitle.Inverse" - parent="android:TextAppearance.Small.Inverse"> - <item name="android:textSize">@dimen/abc_action_bar_subtitle_text_size</item> + <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="TextAppearance.AppCompat.Small.Inverse"> + <item name="android:textSize">@dimen/abc_action_bar_subtitle_text_size_material</item> </style> - <style name="Widget.AppCompat.Base.ProgressBar.Horizontal" - parent="android:Widget.ProgressBar.Horizontal"> + <style name="Base.Widget.AppCompat.ProgressBar.Horizontal" parent="android:Widget.ProgressBar.Horizontal"> </style> - <style name="Widget.AppCompat.Base.ProgressBar" parent="android:Widget.ProgressBar"> + <style name="Base.Widget.AppCompat.ProgressBar" parent="android:Widget.ProgressBar"> <item name="android:minWidth">@dimen/abc_action_bar_progress_bar_size</item> <item name="android:maxWidth">@dimen/abc_action_bar_progress_bar_size</item> <item name="android:minHeight">@dimen/abc_action_bar_progress_bar_size</item> @@ -240,7 +212,7 @@ <!-- Action Bar Spinner Widgets --> - <style name="Widget.AppCompat.Base.Spinner" parent=""> + <style name="Base.Widget.AppCompat.Spinner" parent=""> <item name="spinnerMode">dropdown</item> <item name="android:popupBackground">@drawable/abc_menu_dropdown_panel_holo_dark</item> <item name="android:dropDownSelector">@drawable/abc_list_selector_holo_dark</item> @@ -252,13 +224,13 @@ <item name="android:background">@drawable/abc_spinner_ab_holo_dark</item> </style> - <style name="Widget.AppCompat.Light.Base.Spinner" parent="Widget.AppCompat.Base.Spinner"> + <style name="Base.Widget.AppCompat.Light.Spinner" parent="Base.Widget.AppCompat.Spinner"> <item name="android:dropDownSelector">@drawable/abc_list_selector_holo_light</item> <item name="android:popupBackground">@drawable/abc_menu_dropdown_panel_holo_light</item> <item name="android:background">@drawable/abc_spinner_ab_holo_light</item> </style> - <style name="Widget.AppCompat.Base.DropDownItem.Spinner" parent=""> + <style name="Base.Widget.AppCompat.DropDownItem.Spinner" parent=""> <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.DropDownItem </item> <item name="android:paddingLeft">8dp</item> @@ -266,129 +238,113 @@ <item name="android:gravity">center_vertical</item> </style> - <style name="Widget.AppCompat.Light.Base.DropDownItem.Spinner" - parent="Widget.AppCompat.Base.DropDownItem.Spinner"> + <style name="Base.Widget.AppCompat.Light.DropDownItem.Spinner" + parent="Base.Widget.AppCompat.DropDownItem.Spinner"> </style> - <style name="Widget.AppCompat.Base.ListView.DropDown" parent="android:Widget.ListView"> + <style name="Base.Widget.AppCompat.ListView.DropDown" parent="android:Widget.ListView"> <item name="android:listSelector">@drawable/abc_list_selector_holo_dark</item> </style> - <style name="Widget.AppCompat.Light.Base.ListView.DropDown" + <style name="Base.Widget.AppCompat.Light.ListView.DropDown" parent="android:Widget.ListView"> <item name="android:listSelector">@drawable/abc_list_selector_holo_light</item> </style> - <style name="TextAppearance.AppCompat.Widget.Base.DropDownItem" + <style name="Base.TextAppearance.AppCompat.Widget.DropDownItem" parent="android:TextAppearance.Small"> <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item> </style> - <style name="TextAppearance.Widget.AppCompat.Base.ExpandedMenu.Item" + <style name="Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item" parent="android:TextAppearance.Medium"> <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item> </style> - <!-- Mimic text appearance in select_dialog_item.xml --> - <style name="TextAppearance.AppCompat.Base.CompactMenu.Dialog" - parent="android:TextAppearance.Medium"> - <item name="android:textColor">@android:color/primary_text_light</item> - </style> - - <style name="Widget.AppCompat.Base.ListView.Menu" parent="android:Widget.ListView.Menu"> + <style name="Base.Widget.AppCompat.ListView.Menu" parent="android:Widget.ListView.Menu"> <item name="android:listSelector">?attr/listChoiceBackgroundIndicator</item> <item name="android:divider">?attr/dividerHorizontal</item> </style> - <style name="Widget.AppCompat.Base.ListPopupWindow" parent=""> + <style name="Base.Widget.AppCompat.ListPopupWindow" parent=""> <item name="android:dropDownSelector">@drawable/abc_list_selector_holo_dark</item> - <item name="android:popupBackground">@drawable/abc_menu_dropdown_panel_holo_dark</item> + <item name="android:popupBackground">@drawable/abc_popup_background_material_dark</item> <item name="android:dropDownVerticalOffset">0dip</item> <item name="android:dropDownHorizontalOffset">0dip</item> <item name="android:dropDownWidth">wrap_content</item> </style> - <style name="Widget.AppCompat.Light.Base.ListPopupWindow" parent=""> + <style name="Base.Widget.AppCompat.Light.ListPopupWindow" parent=""> <item name="android:dropDownSelector">@drawable/abc_list_selector_holo_light</item> - <item name="android:popupBackground">@drawable/abc_menu_dropdown_panel_holo_light</item> + <item name="android:popupBackground">@drawable/abc_popup_background_material_light</item> <item name="android:dropDownVerticalOffset">0dip</item> <item name="android:dropDownHorizontalOffset">0dip</item> <item name="android:dropDownWidth">wrap_content</item> </style> - <style name="Widget.AppCompat.Base.PopupMenu" - parent="@style/Widget.AppCompat.Base.ListPopupWindow"> + <style name="Base.Widget.AppCompat.PopupMenu" parent="@style/Widget.AppCompat.ListPopupWindow"> </style> - <style name="Widget.AppCompat.Light.Base.PopupMenu" - parent="@style/Widget.AppCompat.Light.Base.ListPopupWindow"> + <style name="Base.Widget.AppCompat.Light.PopupMenu" parent="@style/Widget.AppCompat.Light.ListPopupWindow"> </style> - <style name="TextAppearance.AppCompat.Base.Widget.PopupMenu.Large" - parent="android:TextAppearance.Widget"> - <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item> - <item name="android:textSize">18sp</item> + <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="TextAppearance.AppCompat.Menu"> </style> - <style name="TextAppearance.AppCompat.Base.Widget.PopupMenu.Small" - parent="android:TextAppearance.Widget"> - <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item> - <item name="android:textSize">14sp</item> + <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="TextAppearance.AppCompat.Menu"> </style> - <style name="TextAppearance.AppCompat.Light.Base.Widget.PopupMenu.Large" - parent="TextAppearance.AppCompat.Base.Widget.PopupMenu.Large"> + <style name="Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Large" parent="TextAppearance.AppCompat.Menu"> </style> - <style name="TextAppearance.AppCompat.Light.Base.Widget.PopupMenu.Small" - parent="TextAppearance.AppCompat.Base.Widget.PopupMenu.Small"> + <style name="Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small" parent="TextAppearance.AppCompat.Menu"> </style> - <style name="TextAppearance.AppCompat.Base.SearchResult" parent=""> + <style name="Base.TextAppearance.AppCompat.SearchResult" parent=""> <item name="android:textStyle">normal</item> <item name="android:textColor">?android:textColorPrimary</item> <item name="android:textColorHint">?android:textColorHint</item> </style> - <style name="TextAppearance.AppCompat.Base.SearchResult.Title"> + <style name="Base.TextAppearance.AppCompat.SearchResult.Title"> <item name="android:textSize">18sp</item> </style> - <style name="TextAppearance.AppCompat.Base.SearchResult.Subtitle"> + <style name="Base.TextAppearance.AppCompat.SearchResult.Subtitle"> <item name="android:textSize">14sp</item> <item name="android:textColor">?android:textColorSecondary</item> </style> - <style name="TextAppearance.AppCompat.Light.Base.SearchResult" - parent="TextAppearance.AppCompat.Base.SearchResult"> + <style name="Base.TextAppearance.AppCompat.Light.SearchResult" + parent="Base.TextAppearance.AppCompat.SearchResult"> <item name="android:textColor">?android:textColorPrimary</item> <item name="android:textColorHint">?android:textColorHint</item> </style> - <style name="TextAppearance.AppCompat.Light.Base.SearchResult.Title"> + <style name="Base.TextAppearance.AppCompat.Light.SearchResult.Title"> <item name="android:textSize">18sp</item> </style> - <style name="TextAppearance.AppCompat.Light.Base.SearchResult.Subtitle"> + <style name="Base.TextAppearance.AppCompat.Light.SearchResult.Subtitle"> <item name="android:textSize">14sp</item> <item name="android:textColor">?android:textColorSecondary</item> </style> - <style name="Widget.AppCompat.Base.AutoCompleteTextView" + <style name="Base.Widget.AppCompat.AutoCompleteTextView" parent="android:Widget.AutoCompleteTextView"> <item name="android:textColor">?attr/actionMenuTextColor</item> <item name="android:dropDownSelector">@drawable/abc_list_selector_holo_dark</item> <item name="android:popupBackground">@drawable/abc_menu_dropdown_panel_holo_dark</item> </style> - <style name="Widget.AppCompat.Light.Base.AutoCompleteTextView" + <style name="Base.Widget.AppCompat.Light.AutoCompleteTextView" parent="android:Widget.AutoCompleteTextView"> <item name="android:textColor">?attr/actionMenuTextColor</item> <item name="android:dropDownSelector">@drawable/abc_list_selector_holo_light</item> <item name="android:popupBackground">@drawable/abc_menu_dropdown_panel_holo_light</item> </style> - <style name="Widget.AppCompat.Base.ActivityChooserView" parent=""> + <style name="Base.Widget.AppCompat.ActivityChooserView" parent=""> <item name="android:gravity">center</item> <item name="android:background">@drawable/abc_ab_share_pack_holo_dark</item> <item name="divider">?attr/dividerVertical</item> @@ -396,8 +352,8 @@ <item name="dividerPadding">6dip</item> </style> - <style name="Widget.AppCompat.Light.Base.ActivityChooserView" - parent="Widget.AppCompat.Base.ActivityChooserView"> + <style name="Base.Widget.AppCompat.Light.ActivityChooserView" + parent="Base.Widget.AppCompat.ActivityChooserView"> <item name="android:background">@drawable/abc_ab_share_pack_holo_light</item> </style> diff --git a/current/support/v7/appcompat/res/values/styles_base_text.xml b/current/support/v7/appcompat/res/values/styles_base_text.xml new file mode 100644 index 0000000..c961645 --- /dev/null +++ b/current/support/v7/appcompat/res/values/styles_base_text.xml @@ -0,0 +1,125 @@ +<?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. +--> + +<resources> + + <style name="Base.TextAppearance.AppCompat" parent="android:TextAppearance"> + <item name="android:textColor">?android:textColorPrimary</item> + <item name="android:textColorHint">?android:textColorHint</item> + <item name="android:textColorHighlight">?android:textColorHighlight</item> + <item name="android:textColorLink">?android:textColorLink</item> + <item name="android:textSize">@dimen/text_size_body_1_material</item> + </style> + + <style name="Base.TextAppearance.AppCompat.Display4"> + <item name="android:textSize">@dimen/text_size_display_4_material</item> + <item name="android:textColor">?android:textColorSecondary</item> + </style> + + <style name="Base.TextAppearance.AppCompat.Display3"> + <item name="android:textSize">@dimen/text_size_display_3_material</item> + <item name="android:textColor">?android:textColorSecondary</item> + </style> + + <style name="Base.TextAppearance.AppCompat.Display2"> + <item name="android:textSize">@dimen/text_size_display_2_material</item> + <item name="android:textColor">?android:textColorSecondary</item> + </style> + + <style name="Base.TextAppearance.AppCompat.Display1"> + <item name="android:textSize">@dimen/text_size_display_1_material</item> + <item name="android:textColor">?android:textColorSecondary</item> + </style> + + <style name="Base.TextAppearance.AppCompat.Headline"> + <item name="android:textSize">@dimen/text_size_headline_material</item> + <item name="android:textColor">?android:textColorPrimary</item> + </style> + + <style name="Base.TextAppearance.AppCompat.Title"> + <item name="android:textSize">@dimen/text_size_title_material</item> + <item name="android:textColor">?android:textColorPrimary</item> + </style> + + <style name="Base.TextAppearance.AppCompat.Subhead"> + <item name="android:textSize">@dimen/text_size_subhead_material</item> + <item name="android:textColor">?android:textColorPrimary</item> + </style> + + <style name="Base.TextAppearance.AppCompat.Body2"> + <item name="android:textSize">@dimen/text_size_body_2_material</item> + <item name="android:textColor">?android:textColorPrimary</item> + </style> + + <style name="Base.TextAppearance.AppCompat.Body1"> + <item name="android:textSize">@dimen/text_size_body_1_material</item> + <item name="android:textColor">?android:textColorPrimary</item> + </style> + + <style name="Base.TextAppearance.AppCompat.Caption"> + <item name="android:textSize">@dimen/text_size_caption_material</item> + <item name="android:textColor">?android:textColorSecondary</item> + </style> + + <style name="Base.TextAppearance.AppCompat.Menu"> + <item name="android:textSize">@dimen/text_size_menu_material</item> + <item name="android:textColor">?android:textColorPrimary</item> + </style> + + <style name="Base.TextAppearance.AppCompat.Button"> + <item name="android:textSize">@dimen/text_size_button_material</item> + <item name="textAllCaps">true</item> + <item name="android:textColor">?android:textColorPrimary</item> + </style> + + <!-- Deprecated text styles --> + + <style name="Base.TextAppearance.AppCompat.Inverse"> + <item name="android:textColor">?android:attr/textColorPrimaryInverse</item> + <item name="android:textColorHint">?android:attr/textColorHintInverse</item> + <item name="android:textColorHighlight">?android:attr/textColorHighlight</item> + <item name="android:textColorLink">?android:attr/textColorLink</item> + </style> + + <style name="Base.TextAppearance.AppCompat.Large" parent="TextAppearance.AppCompat.Headline" /> + + <style name="Base.TextAppearance.AppCompat.Large.Inverse"> + <item name="android:textColor">?android:attr/textColorPrimaryInverse</item> + <item name="android:textColorHint">?android:attr/textColorHintInverse</item> + <item name="android:textColorHighlight">?android:attr/textColorHighlight</item> + <item name="android:textColorLink">?android:attr/textColorLink</item> + </style> + + <style name="Base.TextAppearance.AppCompat.Medium" parent="TextAppearance.AppCompat.Body1" /> + + <style name="Base.TextAppearance.AppCompat.Medium.Inverse"> + <item name="android:textColor">?android:attr/textColorPrimaryInverse</item> + <item name="android:textColorHint">?android:attr/textColorHintInverse</item> + <item name="android:textColorHighlight">?android:attr/textColorHighlight</item> + <item name="android:textColorLink">?android:attr/textColorLink</item> + </style> + + <style name="Base.TextAppearance.AppCompat.Small" parent="TextAppearance.AppCompat.Caption" /> + + <style name="Base.TextAppearance.AppCompat.Small.Inverse"> + <item name="android:textColor">?android:attr/textColorSecondaryInverse</item> + <item name="android:textColorHint">?android:attr/textColorHintInverse</item> + <item name="android:textColorHighlight">?android:attr/textColorHighlight</item> + <item name="android:textColorLink">?android:attr/textColorLink</item> + </style> + +</resources>
\ No newline at end of file diff --git a/current/support/v7/appcompat/res/values/themes.xml b/current/support/v7/appcompat/res/values/themes.xml index f761155..064be3f 100644 --- a/current/support/v7/appcompat/res/values/themes.xml +++ b/current/support/v7/appcompat/res/values/themes.xml @@ -26,7 +26,7 @@ "Theme.Base" theme. --> <!-- Platform-independent theme providing an action bar in a dark-themed activity. --> - <style name="Theme.AppCompat" parent="Theme.Base.AppCompat"> + <style name="Theme.AppCompat" parent="Base.Theme.AppCompat"> <item name="isLightTheme">false</item> <!-- Required for use of support_simple_spinner_dropdown_item.xml --> @@ -38,13 +38,8 @@ <!-- Popup Menu styles --> <item name="popupMenuStyle">@style/Widget.AppCompat.PopupMenu</item> - <item name="textAppearanceLargePopupMenu"> - @style/TextAppearance.AppCompat.Widget.PopupMenu.Large - </item> - <item name="textAppearanceSmallPopupMenu"> - @style/TextAppearance.AppCompat.Widget.PopupMenu.Small - </item> - + <item name="textAppearanceLargePopupMenu">@style/TextAppearance.AppCompat.Widget.PopupMenu.Large</item> + <item name="textAppearanceSmallPopupMenu">@style/TextAppearance.AppCompat.Widget.PopupMenu.Small</item> <item name="listPopupWindowStyle">@style/Widget.AppCompat.ListPopupWindow</item> <item name="dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item> @@ -74,10 +69,21 @@ <!-- ShareActionProvider attributes --> <item name="activityChooserViewStyle">@style/Widget.AppCompat.ActivityChooserView</item> + <!-- Color palette --> + <item name="colorPrimaryDark">@color/material_blue_grey_900</item> + <item name="colorPrimary">@color/material_blue_grey_800</item> + <item name="colorAccent">@color/material_light_blue_A200</item> + + <item name="colorControlNormal">?android:attr/textColorSecondary</item> + <item name="colorControlActivated">?attr/colorAccent</item> + + <item name="colorControlHighlight">@color/ripple_material_dark</item> + <!-- TODO: <item name="colorButtonNormal">@color/btn_default_material_dark</item>--> + </style> <!-- Platform-independent theme providing an action bar in a light-themed activity. --> - <style name="Theme.AppCompat.Light" parent="Theme.Base.AppCompat.Light"> + <style name="Theme.AppCompat.Light" parent="Base.Theme.AppCompat.Light"> <item name="isLightTheme">true</item> <!-- Required for use of support_simple_spinner_dropdown_item.xml --> @@ -89,13 +95,8 @@ <!-- Popup Menu styles --> <item name="popupMenuStyle">@style/Widget.AppCompat.Light.PopupMenu</item> - <item name="textAppearanceLargePopupMenu"> - @style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large - </item> - <item name="textAppearanceSmallPopupMenu"> - @style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small - </item> - + <item name="textAppearanceLargePopupMenu">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large</item> + <item name="textAppearanceSmallPopupMenu">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small</item> <item name="listPopupWindowStyle">@style/Widget.AppCompat.Light.ListPopupWindow</item> <item name="dropDownListViewStyle">@style/Widget.AppCompat.Light.ListView.DropDown</item> @@ -123,14 +124,23 @@ <item name="actionModeShareDrawable">@drawable/abc_ic_menu_share_holo_light</item> <!-- ShareActionProvider attributes --> - <item name="activityChooserViewStyle">@style/Widget.AppCompat.Light.ActivityChooserView - </item> + <item name="activityChooserViewStyle">@style/Widget.AppCompat.Light.ActivityChooserView</item> + + <!-- Color palette --> + <item name="colorPrimaryDark">@color/material_blue_grey_600</item> + <item name="colorPrimary">@color/material_blue_grey_400</item> + <item name="colorAccent">@color/material_light_blue_A200</item> + + <item name="colorControlNormal">?android:attr/textColorSecondary</item> + <item name="colorControlActivated">?attr/colorAccent</item> + + <item name="colorControlHighlight">@color/ripple_material_light</item> + <!-- TODO: <item name="colorButtonNormal">@color/btn_default_material_light</item>--> </style> <!-- Platform-independent theme providing an action bar in a dark-themed activity. --> - <style name="Theme.AppCompat.Light.DarkActionBar" - parent="Theme.Base.AppCompat.Light.DarkActionBar"> + <style name="Theme.AppCompat.Light.DarkActionBar" parent="Base.Theme.AppCompat.Light.DarkActionBar"> <item name="isLightTheme">true</item> <!-- Required for use of support_simple_spinner_dropdown_item.xml --> @@ -142,13 +152,8 @@ <!-- Popup Menu styles --> <item name="popupMenuStyle">@style/Widget.AppCompat.Light.PopupMenu</item> - <item name="textAppearanceLargePopupMenu"> - @style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large - </item> - <item name="textAppearanceSmallPopupMenu"> - @style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small - </item> - + <item name="textAppearanceLargePopupMenu">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large</item> + <item name="textAppearanceSmallPopupMenu">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small</item> <item name="listPopupWindowStyle">@style/Widget.AppCompat.ListPopupWindow</item> <item name="dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item> @@ -176,25 +181,30 @@ <item name="actionModeShareDrawable">@drawable/abc_ic_menu_share_holo_dark</item> <!-- ShareActionProvider attributes --> - <item name="activityChooserViewStyle">@style/Widget.AppCompat.ActivityChooserView - </item> + <item name="activityChooserViewStyle">@style/Widget.AppCompat.ActivityChooserView</item> + + <!-- Color palette --> + <item name="colorPrimaryDark">@color/material_blue_grey_900</item> + <item name="colorPrimary">@color/material_blue_grey_800</item> + <item name="colorAccent">@color/material_light_blue_A200</item> + + <item name="colorControlNormal">?android:attr/textColorSecondary</item> + <item name="colorControlActivated">?attr/colorAccent</item> + <item name="colorControlHighlight">@color/ripple_material_light</item> + <!-- TODO: <item name="colorButtonNormal">@color/btn_default_material_light</item>--> </style> <style name="Theme.AppCompat.DialogWhenLarge" - parent="Theme.Base.AppCompat.DialogWhenLarge"> + parent="Base.Theme.AppCompat.DialogWhenLarge"> </style> <style name="Theme.AppCompat.Light.DialogWhenLarge" - parent="Theme.Base.AppCompat.Light.DialogWhenLarge"> + parent="Base.Theme.AppCompat.Light.DialogWhenLarge"> </style> <!-- Menu/item attributes --> - <style name="Theme.AppCompat.CompactMenu" parent="Theme.AppCompat.Base.CompactMenu"> - </style> - - <style name="Theme.AppCompat.CompactMenu.Dialog" - parent="Theme.AppCompat.Base.CompactMenu.Dialog"> + <style name="Theme.AppCompat.CompactMenu" parent="Base.Theme.AppCompat.CompactMenu"> </style> </resources> diff --git a/current/support/v7/appcompat/res/values/themes_base.xml b/current/support/v7/appcompat/res/values/themes_base.xml index f707c3a..707df2f 100644 --- a/current/support/v7/appcompat/res/values/themes_base.xml +++ b/current/support/v7/appcompat/res/values/themes_base.xml @@ -41,49 +41,48 @@ directly by apps. --> <eat-comment/> - <style name="Theme.Base" parent="Theme.Platform.AppCompat"> + <style name="Base.Theme" parent="Theme.Platform.AppCompat"> </style> - <style name="Theme.Base.Light" parent="Theme.Platform.AppCompat.Light"> + <style name="Base.Theme.Light" parent="Theme.Platform.AppCompat.Light"> </style> <!-- Base platform-dependent theme providing an action bar in a dark-themed activity. --> - <style name="Theme.Base.AppCompat" parent="Theme.Base"> - <item name="windowActionBar">true</item> + <style name="Base.Theme.AppCompat" parent="Base.Theme"> + <item name="android:colorForeground">@color/bright_foreground_material_dark</item> + <item name="android:colorForegroundInverse">@color/bright_foreground_material_light</item> + <item name="android:colorBackground">@color/background_material_dark</item> + <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item> + <item name="android:disabledAlpha">0.5</item> + <item name="android:backgroundDimAmount">0.6</item> + <!-- Remove system title bars; we will add the action bar ourselves. --> <item name="android:windowNoTitle">true</item> + <item name="android:windowBackground">@color/background_material_dark</item> + + <item name="windowActionBar">true</item> <item name="buttonBarStyle">@android:style/ButtonBar</item> <item name="buttonBarButtonStyle">@android:style/Widget.Button</item> <item name="selectableItemBackground">@drawable/abc_item_background_holo_dark</item> - <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_holo_dark</item> + <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_material_dark</item> <item name="dividerVertical">@drawable/abc_list_divider_holo_dark</item> <item name="dividerHorizontal">@drawable/abc_list_divider_holo_dark</item> - <item name="listPreferredItemHeight">?android:attr/listPreferredItemHeight</item> - <item name="listPreferredItemHeightSmall">48dp</item> - <item name="listPreferredItemHeightLarge">80dp</item> - <item name="listPreferredItemPaddingLeft">8dip</item> - <item name="listPreferredItemPaddingRight">8dip</item> - - <item name="textAppearanceListItem">?android:attr/textAppearanceLarge</item> - <item name="textAppearanceListItemSmall">?android:attr/textAppearanceLarge</item> - + <!-- Action Bar Styles --> <item name="actionBarTabStyle">@style/Widget.AppCompat.ActionBar.TabView</item> <item name="actionBarTabBarStyle">@style/Widget.AppCompat.ActionBar.TabBar</item> <item name="actionBarTabTextStyle">@style/Widget.AppCompat.ActionBar.TabText</item> <item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item> <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item> - <item name="actionBarStyle">@style/Widget.AppCompat.ActionBar</item> + <item name="actionBarStyle">@style/Widget.AppCompat.ActionBar.Solid</item> <item name="actionBarSplitStyle">?attr/actionBarStyle</item> <item name="actionBarWidgetTheme">@null</item> - <item name="actionBarSize">@dimen/abc_action_bar_default_height</item> + <item name="actionBarSize">@dimen/abc_action_bar_default_height_material</item> <item name="actionBarDivider">?attr/dividerVertical</item> <item name="actionBarItemBackground">?attr/selectableItemBackground</item> - <item name="actionMenuTextAppearance"> - @style/TextAppearance.AppCompat.Widget.ActionBar.Menu - </item> + <item name="actionMenuTextAppearance">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item> <item name="actionMenuTextColor">?android:attr/textColorPrimaryDisableOnly</item> <!-- Dropdown Spinner Attributes --> @@ -91,74 +90,101 @@ <!-- Action Mode --> <item name="actionModeStyle">@style/Widget.AppCompat.ActionMode</item> - <item name="actionModeBackground">@drawable/abc_cab_background_top_holo_dark</item> - <item name="actionModeSplitBackground">@drawable/abc_cab_background_bottom_holo_dark</item> + <item name="actionModeBackground">?attr/colorPrimaryDark</item> + <item name="actionModeSplitBackground">?attr/colorPrimaryDark</item> <item name="actionModeCloseDrawable">@drawable/abc_ic_cab_done_holo_dark</item> - <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode - </item> + <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode</item> <!-- Panel attributes --> <item name="panelMenuListWidth">@dimen/abc_panel_menu_list_width</item> <item name="panelMenuListTheme">@style/Theme.AppCompat.CompactMenu</item> - <item name="android:panelBackground">@drawable/abc_menu_hardkey_panel_holo_dark</item> + <item name="android:panelBackground">?android:attr/colorBackground</item> <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item> + <!-- Text styles --> + <item name="android:textAppearance">@style/TextAppearance.AppCompat</item> + <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item> + + <item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item> + <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item> + <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item> + <item name="android:textColorSecondary">@color/secondary_text_material_dark</item> + <item name="android:textColorSecondaryInverse">@color/secondary_text_material_light</item> + <item name="android:textColorTertiary">@color/tertiary_text_material_dark</item> + <item name="android:textColorTertiaryInverse">@color/tertiary_text_material_light</item> + <item name="android:textColorHint">@color/hint_foreground_material_dark</item> + <item name="android:textColorHintInverse">@color/hint_foreground_material_light</item> + <item name="android:textColorHighlight">@color/highlighted_text_material_dark</item> + <item name="android:textColorLink">@color/material_teal_500</item> + + <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item> + <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item> + <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item> + <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item> + <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item> + <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item> + + <item name="textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item> + <item name="textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item> + + <item name="listPreferredItemHeight">64dp</item> + <item name="listPreferredItemHeightSmall">48dp</item> + <item name="listPreferredItemHeightLarge">80dp</item> + <item name="listPreferredItemPaddingLeft">16dip</item> + <item name="listPreferredItemPaddingRight">16dip</item> + </style> <!-- Base platform-dependent theme providing an action bar in a light-themed activity. --> - <style name="Theme.Base.AppCompat.Light" parent="Theme.Base.Light"> - <item name="windowActionBar">true</item> + <style name="Base.Theme.AppCompat.Light" parent="Base.Theme.Light"> + <item name="android:colorForeground">@color/bright_foreground_material_light</item> + <item name="android:colorForegroundInverse">@color/bright_foreground_material_dark</item> + <item name="android:colorBackground">@color/background_material_light</item> + <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item> + <item name="android:disabledAlpha">0.5</item> + <item name="android:backgroundDimAmount">0.6</item> + <!-- Remove system title bars; we will add the action bar ourselves. --> <item name="android:windowNoTitle">true</item> + <item name="android:windowBackground">@color/background_material_light</item> + + <item name="windowActionBar">true</item> <item name="buttonBarStyle">@android:style/ButtonBar</item> <item name="buttonBarButtonStyle">@android:style/Widget.Button</item> <item name="selectableItemBackground">@drawable/abc_item_background_holo_light</item> - <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_holo_light</item> + <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_material_light</item> <item name="dividerVertical">@drawable/abc_list_divider_holo_light</item> <item name="dividerHorizontal">@drawable/abc_list_divider_holo_light</item> - <item name="listPreferredItemHeight">?android:attr/listPreferredItemHeight</item> - <item name="listPreferredItemHeightSmall">48dp</item> - <item name="listPreferredItemHeightLarge">80dp</item> - <item name="listPreferredItemPaddingLeft">8dip</item> - <item name="listPreferredItemPaddingRight">8dip</item> - - <item name="textAppearanceListItem">?android:attr/textAppearanceLarge</item> - <item name="textAppearanceListItemSmall">?android:attr/textAppearanceLarge</item> - <!-- Action Bar Styles --> <item name="actionBarTabStyle">@style/Widget.AppCompat.Light.ActionBar.TabView</item> <item name="actionBarTabBarStyle">@style/Widget.AppCompat.Light.ActionBar.TabBar</item> <item name="actionBarTabTextStyle">@style/Widget.AppCompat.Light.ActionBar.TabText</item> <item name="actionButtonStyle">@style/Widget.AppCompat.Light.ActionButton</item> - <item name="actionOverflowButtonStyle"> - @style/Widget.AppCompat.Light.ActionButton.Overflow - </item> - <item name="actionBarStyle">@style/Widget.AppCompat.Light.ActionBar</item> + <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.Light.ActionButton.Overflow</item> + <item name="actionBarStyle">@style/Widget.AppCompat.Light.ActionBar.Solid</item> <item name="actionBarSplitStyle">?attr/actionBarStyle</item> <item name="actionBarWidgetTheme">@null</item> - <item name="actionBarSize">@dimen/abc_action_bar_default_height</item> + <item name="actionBarSize">@dimen/abc_action_bar_default_height_material</item> <item name="actionBarDivider">?attr/dividerVertical</item> <item name="actionBarItemBackground">?attr/selectableItemBackground</item> - <item name="actionMenuTextAppearance"> - @style/TextAppearance.AppCompat.Widget.ActionBar.Menu - </item> + <item name="actionMenuTextAppearance">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item> <item name="actionMenuTextColor">?android:attr/textColorPrimaryDisableOnly</item> <!-- Action Mode --> <item name="actionModeStyle">@style/Widget.AppCompat.ActionMode</item> - <item name="actionModeBackground">@drawable/abc_cab_background_top_holo_light</item> - <item name="actionModeSplitBackground">@drawable/abc_cab_background_bottom_holo_light</item> + <item name="actionModeBackground">?attr/colorPrimaryDark</item> + <item name="actionModeSplitBackground">?attr/colorPrimaryDark</item> <item name="actionModeCloseDrawable">@drawable/abc_ic_cab_done_holo_light</item> - <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.Light.ActionButton.CloseMode - </item> + <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.Light.ActionButton.CloseMode</item> <!-- Dropdown Spinner Attributes --> - <item name="actionDropDownStyle"> - @style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar - </item> + <item name="actionDropDownStyle">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item> + + <item name="listPopupWindowStyle">@style/Widget.AppCompat.Light.ListPopupWindow</item> + <item name="popupMenuStyle">@style/Widget.AppCompat.Light.PopupMenu</item> <!-- Panel attributes --> <item name="panelMenuListWidth">@dimen/abc_panel_menu_list_width</item> @@ -166,32 +192,59 @@ <item name="android:panelBackground">@drawable/abc_menu_hardkey_panel_holo_light</item> <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_light</item> + <!-- Text styles --> + <item name="android:textAppearance">@style/TextAppearance.AppCompat</item> + <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item> + + <item name="android:textColorPrimary">@color/abc_primary_text_material_light</item> + <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item> + <item name="android:textColorSecondary">@color/secondary_text_material_light</item> + <item name="android:textColorSecondaryInverse">@color/secondary_text_material_dark</item> + <item name="android:textColorTertiary">@color/tertiary_text_material_light</item> + <item name="android:textColorTertiaryInverse">@color/tertiary_text_material_dark</item> + <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item> + <item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item> + <item name="android:textColorHint">@color/hint_foreground_material_light</item> + <item name="android:textColorHintInverse">@color/hint_foreground_material_dark</item> + <item name="android:textColorHighlight">@color/highlighted_text_material_light</item> + <item name="android:textColorLink">@color/material_teal_500</item> + + <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item> + <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item> + <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item> + <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item> + <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item> + <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item> + + <item name="textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item> + <item name="textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item> + + <item name="listPreferredItemHeight">64dp</item> + <item name="listPreferredItemHeightSmall">48dp</item> + <item name="listPreferredItemHeightLarge">80dp</item> + <item name="listPreferredItemPaddingLeft">16dip</item> + <item name="listPreferredItemPaddingRight">16dip</item> + </style> <!-- Base platform-dependent theme providing a dark action bar in a light-themed activity. --> - <style name="Theme.Base.AppCompat.Light.DarkActionBar" parent="Theme.Base.AppCompat.Light"> - <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_holo_dark</item> + <style name="Base.Theme.AppCompat.Light.DarkActionBar" parent="Base.Theme.AppCompat.Light"> + <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_material_dark</item> <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item> <item name="actionBarStyle">@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse</item> <item name="actionBarWidgetTheme">@style/Theme.AppCompat</item> <item name="actionBarDivider">@drawable/abc_list_divider_holo_dark</item> <item name="actionBarItemBackground">@drawable/abc_item_background_holo_dark</item> - <item name="actionBarTabStyle">@style/Widget.AppCompat.Light.ActionBar.TabView.Inverse - </item> - <item name="actionBarTabBarStyle">@style/Widget.AppCompat.Light.ActionBar.TabBar.Inverse - </item> - <item name="actionBarTabTextStyle">@style/Widget.AppCompat.Light.ActionBar.TabText.Inverse - </item> + <item name="actionBarTabStyle">@style/Widget.AppCompat.Light.ActionBar.TabView.Inverse</item> + <item name="actionBarTabBarStyle">@style/Widget.AppCompat.Light.ActionBar.TabBar.Inverse</item> + <item name="actionBarTabTextStyle">@style/Widget.AppCompat.Light.ActionBar.TabText.Inverse</item> <item name="actionMenuTextColor">?android:attr/textColorPrimaryInverseDisableOnly</item> <!-- Action Mode --> <item name="actionModeStyle">@style/Widget.AppCompat.Light.ActionMode.Inverse</item> - <item name="actionModeBackground">@drawable/abc_cab_background_top_holo_dark</item> - <item name="actionModeSplitBackground">@drawable/abc_cab_background_bottom_holo_dark</item> <item name="actionModeCloseDrawable">@drawable/abc_ic_cab_done_holo_dark</item> - <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode - </item> + <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode</item> <!-- Dropdown Spinner Attributes --> <item name="actionDropDownStyle">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item> @@ -203,27 +256,18 @@ </style> <!-- Menu/item attributes --> - <style name="Theme.AppCompat.Base.CompactMenu" parent=""> - <item name="android:itemTextAppearance"> - @style/TextAppearance.Widget.AppCompat.ExpandedMenu.Item</item> + <style name="Base.Theme.AppCompat.CompactMenu" parent=""> + <item name="android:itemTextAppearance">?android:attr/textAppearanceMedium</item> <item name="android:listViewStyle">@style/Widget.AppCompat.ListView.Menu</item> </style> - <style name="Theme.AppCompat.Base.CompactMenu.Dialog" parent=""> - <item name="android:itemTextAppearance"> - @style/TextAppearance.AppCompat.Base.CompactMenu.Dialog</item> - <item name="android:listViewStyle">@android:style/Widget.ListView.Menu</item> - </style> - - <style name="Theme.Base.AppCompat.DialogWhenLarge" - parent="Theme.Base.AppCompat"> + <style name="Base.Theme.AppCompat.DialogWhenLarge" parent="Base.Theme.AppCompat"> </style> - <style name="Theme.Base.AppCompat.Light.DialogWhenLarge" - parent="Theme.Base.AppCompat.Light"> + <style name="Base.Theme.AppCompat.Light.DialogWhenLarge" parent="Base.Theme.AppCompat.Light"> </style> - <style name="Theme.Base.AppCompat.Dialog.FixedSize" parent="Theme.Platform.AppCompat.Dialog"> + <style name="Base.Theme.AppCompat.Dialog.FixedSize" parent="Theme.Platform.AppCompat.Dialog"> <item name="windowFixedWidthMajor">@dimen/dialog_fixed_width_major</item> <item name="windowFixedWidthMinor">@dimen/dialog_fixed_width_minor</item> <item name="windowFixedHeightMajor">@dimen/dialog_fixed_height_major</item> @@ -233,38 +277,11 @@ <!-- Remove system title bars; we will add the action bar ourselves. --> <item name="android:windowNoTitle">true</item> - <item name="buttonBarStyle">@android:style/ButtonBar</item> - <item name="buttonBarButtonStyle">@android:style/Widget.Button</item> - <item name="selectableItemBackground">@drawable/abc_item_background_holo_dark</item> - - <item name="dividerVertical">@drawable/abc_list_divider_holo_dark</item> - <item name="dividerHorizontal">@drawable/abc_list_divider_holo_dark</item> + <!-- TODO: Need fixing once Base.Theme.AppCompat themes are done --> - <item name="listPreferredItemHeight">?android:attr/listPreferredItemHeight</item> - <item name="listPreferredItemHeightSmall">48dp</item> - <item name="listPreferredItemHeightLarge">80dp</item> - <item name="listPreferredItemPaddingLeft">8dip</item> - <item name="listPreferredItemPaddingRight">8dip</item> - - <item name="textAppearanceListItem">?android:attr/textAppearanceMedium</item> - <item name="textAppearanceListItemSmall">?android:attr/textAppearanceMedium</item> - - <!-- Action Mode --> - <item name="actionModeStyle">@style/Widget.AppCompat.ActionMode</item> - <item name="actionModeBackground">@drawable/abc_cab_background_top_holo_dark</item> - <item name="actionModeSplitBackground">@drawable/abc_cab_background_bottom_holo_dark</item> - <item name="actionModeCloseDrawable">@drawable/abc_ic_cab_done_holo_dark</item> - <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode - </item> - - <!-- Panel attributes --> - <item name="panelMenuListWidth">@dimen/abc_panel_menu_list_width</item> - <item name="panelMenuListTheme">@style/Theme.AppCompat.CompactMenu</item> - <item name="android:panelBackground">@drawable/abc_menu_hardkey_panel_holo_dark</item> - <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item> </style> - <style name="Theme.Base.AppCompat.Dialog.Light.FixedSize" - parent="Theme.Base.AppCompat.Dialog.FixedSize" /> + <style name="Base.Theme.AppCompat.Dialog.Light.FixedSize" + parent="Base.Theme.AppCompat.Dialog.FixedSize" /> </resources> diff --git a/current/support/v7/cardview/libs/android-support-v7-cardview.jar b/current/support/v7/cardview/libs/android-support-v7-cardview.jar Binary files differindex 088395b..f621901 100644 --- a/current/support/v7/cardview/libs/android-support-v7-cardview.jar +++ b/current/support/v7/cardview/libs/android-support-v7-cardview.jar diff --git a/current/support/v7/gridlayout/libs/android-support-v7-gridlayout.jar b/current/support/v7/gridlayout/libs/android-support-v7-gridlayout.jar Binary files differindex 7617b94..830e16d 100644 --- a/current/support/v7/gridlayout/libs/android-support-v7-gridlayout.jar +++ b/current/support/v7/gridlayout/libs/android-support-v7-gridlayout.jar diff --git a/current/support/v7/mediarouter/libs/android-support-v7-mediarouter.jar b/current/support/v7/mediarouter/libs/android-support-v7-mediarouter.jar Binary files differindex 6ccc3ae..d94086d 100644 --- a/current/support/v7/mediarouter/libs/android-support-v7-mediarouter.jar +++ b/current/support/v7/mediarouter/libs/android-support-v7-mediarouter.jar diff --git a/current/support/v7/mediarouter/res/values-af/strings.xml b/current/support/v7/mediarouter/res/values-af/strings.xml index 885af10..dd5d707 100644 --- a/current/support/v7/mediarouter/res/values-af/strings.xml +++ b/current/support/v7/mediarouter/res/values-af/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Stelsel"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Toestelle"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Media-uitvoer"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Koppel aan toestel"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Soek tans vir toestelle…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Ontkoppel"</string> diff --git a/current/support/v7/mediarouter/res/values-am/strings.xml b/current/support/v7/mediarouter/res/values-am/strings.xml index 0027737..67999f2 100644 --- a/current/support/v7/mediarouter/res/values-am/strings.xml +++ b/current/support/v7/mediarouter/res/values-am/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"ስርዓት"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"መሣሪያዎች"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"የሚዲያ ውፅዓት"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"ከመሳሪያ ጋር ያገናኙ"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"መሳሪያዎችን በመፈለግ ላይ…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"ግንኙነት አቋርጥ"</string> diff --git a/current/support/v7/mediarouter/res/values-ar/strings.xml b/current/support/v7/mediarouter/res/values-ar/strings.xml index 9289a35..003a7ce 100644 --- a/current/support/v7/mediarouter/res/values-ar/strings.xml +++ b/current/support/v7/mediarouter/res/values-ar/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"النظام"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"الأجهزة"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"المنفذ الإعلامي"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"الاتصال بجهاز"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"جارٍ البحث عن الأجهزة…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"قطع الاتصال"</string> diff --git a/current/support/v7/mediarouter/res/values-bg/strings.xml b/current/support/v7/mediarouter/res/values-bg/strings.xml index ff1401e..f65502d 100644 --- a/current/support/v7/mediarouter/res/values-bg/strings.xml +++ b/current/support/v7/mediarouter/res/values-bg/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Система"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Устройства"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Изходяща мултимедия"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Свързване с устройство"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Търсят се устройства…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Прекратяване на връзката"</string> diff --git a/current/support/v7/mediarouter/res/values-bn-rBD/strings.xml b/current/support/v7/mediarouter/res/values-bn-rBD/strings.xml index d0b2c32..e0b2f61 100644 --- a/current/support/v7/mediarouter/res/values-bn-rBD/strings.xml +++ b/current/support/v7/mediarouter/res/values-bn-rBD/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"সিস্টেম"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"ডিভাইসগুলি"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"মিডিয়া আউটপুট"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"ডিভাইসে সংযোগ করুন"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"ডিভাইসগুলি অনুসন্ধান করা হচ্ছে…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"সংযোগ বিচ্ছিন্ন করুন"</string> diff --git a/current/support/v7/mediarouter/res/values-ca/strings.xml b/current/support/v7/mediarouter/res/values-ca/strings.xml index dd485de..55be01d 100644 --- a/current/support/v7/mediarouter/res/values-ca/strings.xml +++ b/current/support/v7/mediarouter/res/values-ca/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Sistema"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Dispositius"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Sortida de contingut multimèdia"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Connecta al dispositiu"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"S\'estan cercant dispositius…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Desconnecta"</string> diff --git a/current/support/v7/mediarouter/res/values-cs/strings.xml b/current/support/v7/mediarouter/res/values-cs/strings.xml index 4687100..14d0702 100644 --- a/current/support/v7/mediarouter/res/values-cs/strings.xml +++ b/current/support/v7/mediarouter/res/values-cs/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Systém"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Zařízení"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Výstup médií"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Připojení k zařízení"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Vyhledávání zařízení…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Odpojit"</string> diff --git a/current/support/v7/mediarouter/res/values-da/strings.xml b/current/support/v7/mediarouter/res/values-da/strings.xml index fd3b0fb..fc12caf 100644 --- a/current/support/v7/mediarouter/res/values-da/strings.xml +++ b/current/support/v7/mediarouter/res/values-da/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"System"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Enheder"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Medieudgang"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Opret forbindelse til enheden"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Søger efter enheder..."</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Afbryd forbindelsen"</string> diff --git a/current/support/v7/mediarouter/res/values-de/strings.xml b/current/support/v7/mediarouter/res/values-de/strings.xml index 9df0ebf..9fe15ca 100644 --- a/current/support/v7/mediarouter/res/values-de/strings.xml +++ b/current/support/v7/mediarouter/res/values-de/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"System"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Geräte"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Medienausgabe"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Mit Gerät verbinden"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Geräte werden gesucht…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Verbindung aufheben"</string> diff --git a/current/support/v7/mediarouter/res/values-el/strings.xml b/current/support/v7/mediarouter/res/values-el/strings.xml index 5a61395..09f0660 100644 --- a/current/support/v7/mediarouter/res/values-el/strings.xml +++ b/current/support/v7/mediarouter/res/values-el/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Σύστημα"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Συσκευές"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Έξοδος μέσων"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Σύνδεση με τη συσκευή"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Αναζήτηση συσκευών…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Αποσύνδεση"</string> diff --git a/current/support/v7/mediarouter/res/values-en-rGB/strings.xml b/current/support/v7/mediarouter/res/values-en-rGB/strings.xml index b9af4bf..e1defef 100644 --- a/current/support/v7/mediarouter/res/values-en-rGB/strings.xml +++ b/current/support/v7/mediarouter/res/values-en-rGB/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"System"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Devices"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Media output"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Connect to device"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Searching for devices…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Disconnect"</string> diff --git a/current/support/v7/mediarouter/res/values-en-rIN/strings.xml b/current/support/v7/mediarouter/res/values-en-rIN/strings.xml index b9af4bf..e1defef 100644 --- a/current/support/v7/mediarouter/res/values-en-rIN/strings.xml +++ b/current/support/v7/mediarouter/res/values-en-rIN/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"System"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Devices"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Media output"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Connect to device"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Searching for devices…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Disconnect"</string> diff --git a/current/support/v7/mediarouter/res/values-es-rUS/strings.xml b/current/support/v7/mediarouter/res/values-es-rUS/strings.xml index 211b400..129dbc0 100644 --- a/current/support/v7/mediarouter/res/values-es-rUS/strings.xml +++ b/current/support/v7/mediarouter/res/values-es-rUS/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Sistema"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Dispositivos"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Salida multimedia"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Conectar al dispositivo"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Buscando dispositivos…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Desconectar"</string> diff --git a/current/support/v7/mediarouter/res/values-es/strings.xml b/current/support/v7/mediarouter/res/values-es/strings.xml index d3a1639..acc2606 100644 --- a/current/support/v7/mediarouter/res/values-es/strings.xml +++ b/current/support/v7/mediarouter/res/values-es/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Sistema"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Dispositivos"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Salida multimedia"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Conectar a dispositivo"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Buscando dispositivos…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Desconectar"</string> diff --git a/current/support/v7/mediarouter/res/values-et-rEE/strings.xml b/current/support/v7/mediarouter/res/values-et-rEE/strings.xml index 7dbdf74..59dcd0b 100644 --- a/current/support/v7/mediarouter/res/values-et-rEE/strings.xml +++ b/current/support/v7/mediarouter/res/values-et-rEE/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Süsteem"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Seadmed"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Meediaväljund"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Seadmega ühendamine"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Seadmete otsimine …"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Katkesta ühendus"</string> diff --git a/current/support/v7/mediarouter/res/values-eu-rES/strings.xml b/current/support/v7/mediarouter/res/values-eu-rES/strings.xml index 728672d..b67580a 100644 --- a/current/support/v7/mediarouter/res/values-eu-rES/strings.xml +++ b/current/support/v7/mediarouter/res/values-eu-rES/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Sistema"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Gailuak"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Multimedia-irteera"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Konektatu gailura"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Gailuak bilatzen…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Deskonektatu"</string> diff --git a/current/support/v7/mediarouter/res/values-fa/strings.xml b/current/support/v7/mediarouter/res/values-fa/strings.xml index 2ffed50..7594f15 100644 --- a/current/support/v7/mediarouter/res/values-fa/strings.xml +++ b/current/support/v7/mediarouter/res/values-fa/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"سیستم"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"دستگاهها"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"خروجی رسانه"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"برقراری ارتباط با دستگاه"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"در حال جستجو برای دستگاهها..."</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"قطع ارتباط"</string> diff --git a/current/support/v7/mediarouter/res/values-fi/strings.xml b/current/support/v7/mediarouter/res/values-fi/strings.xml index 0692c2f..f46631c 100644 --- a/current/support/v7/mediarouter/res/values-fi/strings.xml +++ b/current/support/v7/mediarouter/res/values-fi/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Järjestelmä"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Laitteet"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Median äänentoisto"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Yhdistä laitteeseen"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Etsitään laitteita…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Katkaise yhteys"</string> diff --git a/current/support/v7/mediarouter/res/values-fr-rCA/strings.xml b/current/support/v7/mediarouter/res/values-fr-rCA/strings.xml index 9fa3c9c..5aed024 100644 --- a/current/support/v7/mediarouter/res/values-fr-rCA/strings.xml +++ b/current/support/v7/mediarouter/res/values-fr-rCA/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Système"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Appareils"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Sortie multimédia"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Connexion au périphérique"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Recherche d\'appareils en cours…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Déconnecter"</string> diff --git a/current/support/v7/mediarouter/res/values-fr/strings.xml b/current/support/v7/mediarouter/res/values-fr/strings.xml index 5607a1c..f2d610c 100644 --- a/current/support/v7/mediarouter/res/values-fr/strings.xml +++ b/current/support/v7/mediarouter/res/values-fr/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Système"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Appareils"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Sortie multimédia"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Connecter à l\'appareil"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Recherche d\'appareils en cours…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Déconnecter"</string> diff --git a/current/support/v7/mediarouter/res/values-gl-rES/strings.xml b/current/support/v7/mediarouter/res/values-gl-rES/strings.xml index d700c14..ce14f83 100644 --- a/current/support/v7/mediarouter/res/values-gl-rES/strings.xml +++ b/current/support/v7/mediarouter/res/values-gl-rES/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Sistema"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Dispositivos"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Saída multimedia"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Conectar co dispositivo"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Buscando dispositivos…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Desconectar"</string> diff --git a/current/support/v7/mediarouter/res/values-hi/strings.xml b/current/support/v7/mediarouter/res/values-hi/strings.xml index 8acc2bb..b14c027 100644 --- a/current/support/v7/mediarouter/res/values-hi/strings.xml +++ b/current/support/v7/mediarouter/res/values-hi/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"सिस्टम"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"उपकरण"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"मीडिया आउटपुट"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"उपकरण से कनेक्ट करें"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"उपकरणों की खोज हो रही है…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"डिस्कनेक्ट करें"</string> diff --git a/current/support/v7/mediarouter/res/values-hr/strings.xml b/current/support/v7/mediarouter/res/values-hr/strings.xml index 2946433..4f16e91 100644 --- a/current/support/v7/mediarouter/res/values-hr/strings.xml +++ b/current/support/v7/mediarouter/res/values-hr/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Sustav"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Uređaji"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Medijski izlaz"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Povezivanje s uređajem"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Traženje uređaja…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Prekini vezu"</string> diff --git a/current/support/v7/mediarouter/res/values-hu/strings.xml b/current/support/v7/mediarouter/res/values-hu/strings.xml index b68fe16..c59aad7 100644 --- a/current/support/v7/mediarouter/res/values-hu/strings.xml +++ b/current/support/v7/mediarouter/res/values-hu/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Rendszer"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Eszközök"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Médiakimenet"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Csatlakozás adott eszközhöz"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Eszközkeresés…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Leválasztás"</string> diff --git a/current/support/v7/mediarouter/res/values-hy-rAM/strings.xml b/current/support/v7/mediarouter/res/values-hy-rAM/strings.xml index 77f1136..fbe550f 100644 --- a/current/support/v7/mediarouter/res/values-hy-rAM/strings.xml +++ b/current/support/v7/mediarouter/res/values-hy-rAM/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Համակարգ"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Սարքեր"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Մեդիա արտածում"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Միանալ սարքին"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Որոնվում են սարքեր..."</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Անջատել"</string> diff --git a/current/support/v7/mediarouter/res/values-in/strings.xml b/current/support/v7/mediarouter/res/values-in/strings.xml index 1d3b387..c6aac4e 100644 --- a/current/support/v7/mediarouter/res/values-in/strings.xml +++ b/current/support/v7/mediarouter/res/values-in/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Sistem"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Perangkat"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Keluaran media"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Sambungkan ke perangkat"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Menelusuri perangkat…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Putuskan sambungan"</string> diff --git a/current/support/v7/mediarouter/res/values-is-rIS/strings.xml b/current/support/v7/mediarouter/res/values-is-rIS/strings.xml index 45d7329..1ff1e40 100644 --- a/current/support/v7/mediarouter/res/values-is-rIS/strings.xml +++ b/current/support/v7/mediarouter/res/values-is-rIS/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Kerfi"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Tæki"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Margmiðlunarúttak"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Tengjast tæki"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Leitar að tækjum…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Aftengja"</string> diff --git a/current/support/v7/mediarouter/res/values-it/strings.xml b/current/support/v7/mediarouter/res/values-it/strings.xml index bd58755..945bba4 100644 --- a/current/support/v7/mediarouter/res/values-it/strings.xml +++ b/current/support/v7/mediarouter/res/values-it/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Sistema"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Dispositivi"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Uscita media"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Connetti al dispositivo"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Ricerca di dispositivi…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Disconnetti"</string> diff --git a/current/support/v7/mediarouter/res/values-iw/strings.xml b/current/support/v7/mediarouter/res/values-iw/strings.xml index 59753b4..814c744 100644 --- a/current/support/v7/mediarouter/res/values-iw/strings.xml +++ b/current/support/v7/mediarouter/res/values-iw/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"מערכת"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"מכשירים"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"פלט מדיה"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"התחבר למכשיר"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"מחפש מכשירים…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"התנתק"</string> diff --git a/current/support/v7/mediarouter/res/values-ja/strings.xml b/current/support/v7/mediarouter/res/values-ja/strings.xml index 1367489..2a74840 100644 --- a/current/support/v7/mediarouter/res/values-ja/strings.xml +++ b/current/support/v7/mediarouter/res/values-ja/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"システム"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"端末"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"メディア出力"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"端末に接続"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"端末を検索しています…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"接続を解除"</string> diff --git a/current/support/v7/mediarouter/res/values-ka-rGE/strings.xml b/current/support/v7/mediarouter/res/values-ka-rGE/strings.xml index 413257e..82a5332 100644 --- a/current/support/v7/mediarouter/res/values-ka-rGE/strings.xml +++ b/current/support/v7/mediarouter/res/values-ka-rGE/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"სისტემა"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"მოწყობილობები"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"მედია გამოსასვლელი"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"მოწყობილობასთან დაკავშირება"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"მოწყობილობების ძიება…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"კავშირის გაწყვეტა"</string> diff --git a/current/support/v7/mediarouter/res/values-kk-rKZ/strings.xml b/current/support/v7/mediarouter/res/values-kk-rKZ/strings.xml index e8da02a..c08b126 100644 --- a/current/support/v7/mediarouter/res/values-kk-rKZ/strings.xml +++ b/current/support/v7/mediarouter/res/values-kk-rKZ/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Жүйе"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Құрылғылар"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Meдиа құрылғылары"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Құрылғыға жалғау"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Құрылғыларды іздеуде…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Ажырату"</string> diff --git a/current/support/v7/mediarouter/res/values-km-rKH/strings.xml b/current/support/v7/mediarouter/res/values-km-rKH/strings.xml index e001dde..111faed 100644 --- a/current/support/v7/mediarouter/res/values-km-rKH/strings.xml +++ b/current/support/v7/mediarouter/res/values-km-rKH/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"ប្រព័ន្ធ"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"ឧបករណ៍"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"លទ្ធផលមេឌៀ"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"ភ្ជាប់ឧបករណ៍"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"កំពុងស្វែងរកឧបករណ៍..."</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"ផ្ដាច់"</string> diff --git a/current/support/v7/mediarouter/res/values-kn-rIN/strings.xml b/current/support/v7/mediarouter/res/values-kn-rIN/strings.xml index 147ebc8..7613813 100644 --- a/current/support/v7/mediarouter/res/values-kn-rIN/strings.xml +++ b/current/support/v7/mediarouter/res/values-kn-rIN/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"ಸಿಸ್ಟಂ"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"ಸಾಧನಗಳು"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"ಮಾಧ್ಯಮ ಔಟ್ಪುಟ್"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"ಸಾಧನಕ್ಕೆ ಸಂಪರ್ಕಪಡಿಸಿ"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"ಸಾಧನಗಳನ್ನು ಹುಡುಕಲಾಗುತ್ತಿದೆ…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"ಸಂಪರ್ಕ ಕಡಿತಗೊಳಿಸು"</string> diff --git a/current/support/v7/mediarouter/res/values-ko/strings.xml b/current/support/v7/mediarouter/res/values-ko/strings.xml index 21f82a0..07b7114 100644 --- a/current/support/v7/mediarouter/res/values-ko/strings.xml +++ b/current/support/v7/mediarouter/res/values-ko/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"시스템"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"기기"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"미디어 출력"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"기기에 연결"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"기기 검색 중…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"연결 해제"</string> diff --git a/current/support/v7/mediarouter/res/values-ky-rKG/strings.xml b/current/support/v7/mediarouter/res/values-ky-rKG/strings.xml index 4a587ac..5427608 100644 --- a/current/support/v7/mediarouter/res/values-ky-rKG/strings.xml +++ b/current/support/v7/mediarouter/res/values-ky-rKG/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Систем"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Түзмөктөр"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Медиа чыгаруу"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Түзмөккө туташуу"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Түзмөктөр изделүүдө..."</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Ажыратуу"</string> diff --git a/current/support/v7/mediarouter/res/values-lo-rLA/strings.xml b/current/support/v7/mediarouter/res/values-lo-rLA/strings.xml index 31a03cd..5faad21 100644 --- a/current/support/v7/mediarouter/res/values-lo-rLA/strings.xml +++ b/current/support/v7/mediarouter/res/values-lo-rLA/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"ລະບົບ"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"ອຸປະກອນ"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"ມີເດຍເອົ້າພຸດ"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"ເຊື່ອມຕໍ່ຫາອຸປະກອນ"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"ກຳລັງຊອກຫາອຸປະກອນ..."</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"ຕັດການເຊື່ອມຕໍ່"</string> diff --git a/current/support/v7/mediarouter/res/values-lt/strings.xml b/current/support/v7/mediarouter/res/values-lt/strings.xml index ead3b73..92ca4c7 100644 --- a/current/support/v7/mediarouter/res/values-lt/strings.xml +++ b/current/support/v7/mediarouter/res/values-lt/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Sistema"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Įrenginiai"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Medijos išvestis"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Prijungimas prie įrenginio"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Ieškoma įrenginių…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Atjungti"</string> diff --git a/current/support/v7/mediarouter/res/values-lv/strings.xml b/current/support/v7/mediarouter/res/values-lv/strings.xml index 0914990..78a1a18 100644 --- a/current/support/v7/mediarouter/res/values-lv/strings.xml +++ b/current/support/v7/mediarouter/res/values-lv/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Sistēma"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Ierīces"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Multivides izeja"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Savienojuma izveide ar ierīci"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Notiek ierīču meklēšana..."</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Atvienot"</string> diff --git a/current/support/v7/mediarouter/res/values-mk-rMK/strings.xml b/current/support/v7/mediarouter/res/values-mk-rMK/strings.xml index 363f16b..785da20 100644 --- a/current/support/v7/mediarouter/res/values-mk-rMK/strings.xml +++ b/current/support/v7/mediarouter/res/values-mk-rMK/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Систем"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Уреди"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Излез за медиум"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Поврзи се со уредот"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Се пребаруваат уреди..."</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Исклучи се"</string> diff --git a/current/support/v7/mediarouter/res/values-ml-rIN/strings.xml b/current/support/v7/mediarouter/res/values-ml-rIN/strings.xml index d20ba1d..4e612fc 100644 --- a/current/support/v7/mediarouter/res/values-ml-rIN/strings.xml +++ b/current/support/v7/mediarouter/res/values-ml-rIN/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"സിസ്റ്റം"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"ഉപകരണങ്ങൾ"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"മീഡിയ ഔട്ട്പുട്ട്"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"ഉപകരണത്തിലേക്ക് കണക്റ്റുചെയ്യുക"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"ഉപകരണങ്ങൾക്കായി തിരയുന്നു…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"വിച്ഛേദിക്കുക"</string> diff --git a/current/support/v7/mediarouter/res/values-mn-rMN/strings.xml b/current/support/v7/mediarouter/res/values-mn-rMN/strings.xml index 4eecdb4..ea7396e 100644 --- a/current/support/v7/mediarouter/res/values-mn-rMN/strings.xml +++ b/current/support/v7/mediarouter/res/values-mn-rMN/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Систем"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Төхөөрөмжүүд"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Медиа гаралт"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Төхөөрөмжтэй холбох"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Төхөөрөмжүүдийг хайж байна…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Салгах"</string> diff --git a/current/support/v7/mediarouter/res/values-mr-rIN/strings.xml b/current/support/v7/mediarouter/res/values-mr-rIN/strings.xml index 9187b5d..feee62e 100644 --- a/current/support/v7/mediarouter/res/values-mr-rIN/strings.xml +++ b/current/support/v7/mediarouter/res/values-mr-rIN/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"सिस्टम"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"डिव्हाइसेस"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"माध्यम आउटपुट"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"डिव्हाइसला कनेक्ट करा"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"डिव्हाइसेस शोधत आहे…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"डिस्कनेक्ट करा"</string> diff --git a/current/support/v7/mediarouter/res/values-ms-rMY/strings.xml b/current/support/v7/mediarouter/res/values-ms-rMY/strings.xml index dadaa30..3f662bf 100644 --- a/current/support/v7/mediarouter/res/values-ms-rMY/strings.xml +++ b/current/support/v7/mediarouter/res/values-ms-rMY/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Sistem"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Peranti"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Output media"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Sambung kepada peranti"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Mencari peranti..."</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Putuskan sambungan"</string> diff --git a/current/support/v7/mediarouter/res/values-my-rMM/strings.xml b/current/support/v7/mediarouter/res/values-my-rMM/strings.xml index c417d57..d2d3179 100644 --- a/current/support/v7/mediarouter/res/values-my-rMM/strings.xml +++ b/current/support/v7/mediarouter/res/values-my-rMM/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"စနစ်"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"စက်ပစ္စည်းများ"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"မီဒီယာထွက်ပေါက်"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"စက်တစ်ခုကို ချိတ်ဆက်ပါ"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"စက်ပစ္စည်းများကို ရှာဖွေနေပါသည်"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"ချိတ်ဆက်ခြင်းရပ်တန့်ရန်"</string> diff --git a/current/support/v7/mediarouter/res/values-nb/strings.xml b/current/support/v7/mediarouter/res/values-nb/strings.xml index fa4d9a4..7a374bd 100644 --- a/current/support/v7/mediarouter/res/values-nb/strings.xml +++ b/current/support/v7/mediarouter/res/values-nb/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"System"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Enheter"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Medieutgang"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Koble til enheten"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Søker etter enheter …"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Koble fra"</string> diff --git a/current/support/v7/mediarouter/res/values-ne-rNP/strings.xml b/current/support/v7/mediarouter/res/values-ne-rNP/strings.xml index 3fe9ac3..740e560 100644 --- a/current/support/v7/mediarouter/res/values-ne-rNP/strings.xml +++ b/current/support/v7/mediarouter/res/values-ne-rNP/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"प्रणाली"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"उपकरणहरू"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"मिडियाको उत्पादन"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"उपकरणसँग जडान गर्नुहोस्"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"उपकरणहरूका लागि खोजी गरिँदै..."</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"विच्छेदन गर्नुहोस्"</string> diff --git a/current/support/v7/mediarouter/res/values-nl/strings.xml b/current/support/v7/mediarouter/res/values-nl/strings.xml index 5572449..7ccac8a 100644 --- a/current/support/v7/mediarouter/res/values-nl/strings.xml +++ b/current/support/v7/mediarouter/res/values-nl/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Systeem"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Apparaten"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Media-uitvoer"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Verbinding maken met apparaat"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Zoeken naar apparaten…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Verbinding verbreken"</string> diff --git a/current/support/v7/mediarouter/res/values-pl/strings.xml b/current/support/v7/mediarouter/res/values-pl/strings.xml index 95a1d03..6ceb597 100644 --- a/current/support/v7/mediarouter/res/values-pl/strings.xml +++ b/current/support/v7/mediarouter/res/values-pl/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"System"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Urządzenia"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Wyjście multimediów"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Połącz z urządzeniem"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Szukam urządzeń…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Rozłącz"</string> diff --git a/current/support/v7/mediarouter/res/values-pt-rPT/strings.xml b/current/support/v7/mediarouter/res/values-pt-rPT/strings.xml index 54b1dfc..23d1f0b 100644 --- a/current/support/v7/mediarouter/res/values-pt-rPT/strings.xml +++ b/current/support/v7/mediarouter/res/values-pt-rPT/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Sistema"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Dispositivos"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Saída de som multimédia"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Ligar ao dispositivo"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"A pesquisar dispositivos…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Desassociar"</string> diff --git a/current/support/v7/mediarouter/res/values-pt/strings.xml b/current/support/v7/mediarouter/res/values-pt/strings.xml index 3ce1c38..1ba4054 100644 --- a/current/support/v7/mediarouter/res/values-pt/strings.xml +++ b/current/support/v7/mediarouter/res/values-pt/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Sistema"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Dispositivos"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Saída de mídia"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Conectar ao dispositivo"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Procurando dispositivos…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Desconectar"</string> diff --git a/current/support/v7/mediarouter/res/values-ro/strings.xml b/current/support/v7/mediarouter/res/values-ro/strings.xml index 4c9e4b9..3d53163 100644 --- a/current/support/v7/mediarouter/res/values-ro/strings.xml +++ b/current/support/v7/mediarouter/res/values-ro/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Sistem"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Dispozitive"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Rezultate media"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Conectați-vă la dispozitiv"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Se caută dispozitive..."</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Deconectați-vă"</string> diff --git a/current/support/v7/mediarouter/res/values-ru/strings.xml b/current/support/v7/mediarouter/res/values-ru/strings.xml index 5cc2bba..cfe5951 100644 --- a/current/support/v7/mediarouter/res/values-ru/strings.xml +++ b/current/support/v7/mediarouter/res/values-ru/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Система"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Устройства"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Перенаправлять поток мультимедиа"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Подключение к устройству"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Поиск устройств…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Отключить"</string> diff --git a/current/support/v7/mediarouter/res/values-si-rLK/strings.xml b/current/support/v7/mediarouter/res/values-si-rLK/strings.xml index 2eba3c8..e6fa78b 100644 --- a/current/support/v7/mediarouter/res/values-si-rLK/strings.xml +++ b/current/support/v7/mediarouter/res/values-si-rLK/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"පද්ධතිය"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"උපාංග"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"මාධ්ය ප්රතිදානය"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"උපාංගයට සම්බන්ධ වන්න"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"උපාංග සඳහා සොයමින්…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"විසන්ධි කරන්න"</string> diff --git a/current/support/v7/mediarouter/res/values-sk/strings.xml b/current/support/v7/mediarouter/res/values-sk/strings.xml index 668800f..c61977e 100644 --- a/current/support/v7/mediarouter/res/values-sk/strings.xml +++ b/current/support/v7/mediarouter/res/values-sk/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Systém"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Zariadenia"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Výstup médií"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Pripojenie k zariadeniu"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Prebieha vyhľadávanie zariadení…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Odpojiť"</string> diff --git a/current/support/v7/mediarouter/res/values-sl/strings.xml b/current/support/v7/mediarouter/res/values-sl/strings.xml index 3e3e8bb..d435118 100644 --- a/current/support/v7/mediarouter/res/values-sl/strings.xml +++ b/current/support/v7/mediarouter/res/values-sl/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Sistem"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Naprave"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Izhod za predstavnost"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Povezovanje z napravo"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Iskanje naprav …"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Prekini povezavo"</string> diff --git a/current/support/v7/mediarouter/res/values-sr/strings.xml b/current/support/v7/mediarouter/res/values-sr/strings.xml index 320f3e8..b5acdc4 100644 --- a/current/support/v7/mediarouter/res/values-sr/strings.xml +++ b/current/support/v7/mediarouter/res/values-sr/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Систем"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Уређаји"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Излаз медија"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Повежите са уређајем"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Претраживање уређаја…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Прекини везу"</string> diff --git a/current/support/v7/mediarouter/res/values-sv/strings.xml b/current/support/v7/mediarouter/res/values-sv/strings.xml index 910c6f1..7d6d2cc 100644 --- a/current/support/v7/mediarouter/res/values-sv/strings.xml +++ b/current/support/v7/mediarouter/res/values-sv/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"System"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Enheter"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Medieuppspelning"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Anslut till enhet"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Söker efter enheter ..."</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Koppla från"</string> diff --git a/current/support/v7/mediarouter/res/values-sw/strings.xml b/current/support/v7/mediarouter/res/values-sw/strings.xml index fcbc590..198d47c 100644 --- a/current/support/v7/mediarouter/res/values-sw/strings.xml +++ b/current/support/v7/mediarouter/res/values-sw/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Mfumo"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Vifaa"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Towe la vyombo vya habari"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Unganisha kwenye kifaa"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Inatafuta vifaa..."</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Tenganisha"</string> diff --git a/current/support/v7/mediarouter/res/values-ta-rIN/strings.xml b/current/support/v7/mediarouter/res/values-ta-rIN/strings.xml index d5d1386..c16e656 100644 --- a/current/support/v7/mediarouter/res/values-ta-rIN/strings.xml +++ b/current/support/v7/mediarouter/res/values-ta-rIN/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"அமைப்பு"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"சாதனங்கள்"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"மீடியா வெளியீடு"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"சாதனத்துடன் இணைக்கவும்"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"சாதனங்களைத் தேடுகிறது..."</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"துண்டி"</string> diff --git a/current/support/v7/mediarouter/res/values-te-rIN/strings.xml b/current/support/v7/mediarouter/res/values-te-rIN/strings.xml index 9fa6e90..4e9ac98 100644 --- a/current/support/v7/mediarouter/res/values-te-rIN/strings.xml +++ b/current/support/v7/mediarouter/res/values-te-rIN/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"సిస్టమ్"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"పరికరాలు"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"మీడియా అవుట్పుట్"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"పరికరానికి కనెక్ట్ చేయండి"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"పరికరాల కోసం శోధిస్తోంది…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"డిస్కనెక్ట్ చేయి"</string> diff --git a/current/support/v7/mediarouter/res/values-th/strings.xml b/current/support/v7/mediarouter/res/values-th/strings.xml index 78e5a73..732c550 100644 --- a/current/support/v7/mediarouter/res/values-th/strings.xml +++ b/current/support/v7/mediarouter/res/values-th/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"ระบบ"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"อุปกรณ์"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"เอาต์พุตสื่อ"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"เชื่อมต่อกับอุปกรณ์"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"กำลังค้นหาอุปกรณ์…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"ยกเลิกการเชื่อมต่อ"</string> diff --git a/current/support/v7/mediarouter/res/values-tl/strings.xml b/current/support/v7/mediarouter/res/values-tl/strings.xml index 0953787..9edd09c 100644 --- a/current/support/v7/mediarouter/res/values-tl/strings.xml +++ b/current/support/v7/mediarouter/res/values-tl/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"System"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Mga Device"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Output ng media"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Kumonekta sa device"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Naghahanap ng mga device…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Idiskonekta"</string> diff --git a/current/support/v7/mediarouter/res/values-tr/strings.xml b/current/support/v7/mediarouter/res/values-tr/strings.xml index 12faaa6..b6d747d 100644 --- a/current/support/v7/mediarouter/res/values-tr/strings.xml +++ b/current/support/v7/mediarouter/res/values-tr/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Sistem"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Cihazlar"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Medya çıkışı"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Cihaza bağlanın"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Cihaz arayın…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Bağlantıyı kes"</string> diff --git a/current/support/v7/mediarouter/res/values-uk/strings.xml b/current/support/v7/mediarouter/res/values-uk/strings.xml index b036dea..209e059 100644 --- a/current/support/v7/mediarouter/res/values-uk/strings.xml +++ b/current/support/v7/mediarouter/res/values-uk/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Система"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Пристрої"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Вивід медіа-даних"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Під’єднатися до пристрою"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Пошук пристроїв…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Від’єднатися"</string> diff --git a/current/support/v7/mediarouter/res/values-ur-rPK/strings.xml b/current/support/v7/mediarouter/res/values-ur-rPK/strings.xml index bce0e0c..1f49f4a 100644 --- a/current/support/v7/mediarouter/res/values-ur-rPK/strings.xml +++ b/current/support/v7/mediarouter/res/values-ur-rPK/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"سسٹم"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"آلات"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"میڈیا آؤٹ پٹ"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"آلہ سے مربوط ہوں"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"آلات تلاش کر رہا ہے…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"غیر مربوط کریں"</string> diff --git a/current/support/v7/mediarouter/res/values-uz-rUZ/strings.xml b/current/support/v7/mediarouter/res/values-uz-rUZ/strings.xml index f191fd9..5b340dc 100644 --- a/current/support/v7/mediarouter/res/values-uz-rUZ/strings.xml +++ b/current/support/v7/mediarouter/res/values-uz-rUZ/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Tizim"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Qurilmalar"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Media chiqish"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Qurilmaga ulanish"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Qurilmalar izlanmoqda…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Uzish"</string> diff --git a/current/support/v7/mediarouter/res/values-vi/strings.xml b/current/support/v7/mediarouter/res/values-vi/strings.xml index a58d0e4..9d915cd 100644 --- a/current/support/v7/mediarouter/res/values-vi/strings.xml +++ b/current/support/v7/mediarouter/res/values-vi/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Hệ thống"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Thiết bị"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Đầu ra phương tiện"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Kết nối với thiết bị"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Đang tìm kiếm thiết bị…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Ngắt kết nối"</string> diff --git a/current/support/v7/mediarouter/res/values-zh-rCN/strings.xml b/current/support/v7/mediarouter/res/values-zh-rCN/strings.xml index 71c4407..63450e5 100644 --- a/current/support/v7/mediarouter/res/values-zh-rCN/strings.xml +++ b/current/support/v7/mediarouter/res/values-zh-rCN/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"系统"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"设备"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"媒体输出线路"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"连接到设备"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"正在搜索设备…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"断开连接"</string> diff --git a/current/support/v7/mediarouter/res/values-zh-rHK/strings.xml b/current/support/v7/mediarouter/res/values-zh-rHK/strings.xml index f499169..9d41f7c 100644 --- a/current/support/v7/mediarouter/res/values-zh-rHK/strings.xml +++ b/current/support/v7/mediarouter/res/values-zh-rHK/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"系統"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"裝置"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"媒體輸出"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"連線至裝置"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"正在搜尋裝置…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"中斷連線"</string> diff --git a/current/support/v7/mediarouter/res/values-zh-rTW/strings.xml b/current/support/v7/mediarouter/res/values-zh-rTW/strings.xml index a847615..75e31ee 100644 --- a/current/support/v7/mediarouter/res/values-zh-rTW/strings.xml +++ b/current/support/v7/mediarouter/res/values-zh-rTW/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"系統"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"裝置"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"媒體輸出"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"連線至裝置"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"正在搜尋裝置..."</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"中斷連線"</string> diff --git a/current/support/v7/mediarouter/res/values-zu/strings.xml b/current/support/v7/mediarouter/res/values-zu/strings.xml index be195be..0ce7724 100644 --- a/current/support/v7/mediarouter/res/values-zu/strings.xml +++ b/current/support/v7/mediarouter/res/values-zu/strings.xml @@ -18,7 +18,8 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="mr_system_route_name" msgid="5441529851481176817">"Isistimu"</string> <string name="mr_user_route_category_name" msgid="7498112907524977311">"Amadivayisi"</string> - <string name="mr_media_route_button_content_description" msgid="4271159405637008602">"Okukhiphayo kwabezindaba"</string> + <!-- no translation found for mr_media_route_button_content_description (8327680881775995150) --> + <skip /> <string name="mr_media_route_chooser_title" msgid="7106830097177242655">"Xhumeka kudivayisi"</string> <string name="mr_media_route_chooser_searching" msgid="7553005460920830010">"Iseshela amadivayisi…"</string> <string name="mr_media_route_controller_disconnect" msgid="109793632378378069">"Nqamula"</string> diff --git a/current/support/v7/mediarouter/res/values/strings.xml b/current/support/v7/mediarouter/res/values/strings.xml index 5160c33..b8944b6 100644 --- a/current/support/v7/mediarouter/res/values/strings.xml +++ b/current/support/v7/mediarouter/res/values/strings.xml @@ -21,8 +21,9 @@ <!-- Name for the user route category created when publishing routes to the system in Jellybean and above. [CHAR LIMIT=30] --> <string name="mr_user_route_category_name">Devices</string> - <!-- Content description of a MediaRouteButton for accessibility support. [CHAR LIMIT=50] --> - <string name="mr_media_route_button_content_description">Media output</string> + <!-- Content description of a MediaRouteButton for accessibility support. + Cast is the standard android verb for sending content to a remote device. [CHAR LIMIT=50] --> + <string name="mr_media_route_button_content_description">Cast</string> <!-- Title of the media route chooser dialog. [CHAR LIMIT=30] --> <string name="mr_media_route_chooser_title">Connect to device</string> diff --git a/current/support/v7/palette/libs/android-support-v7-palette.jar b/current/support/v7/palette/libs/android-support-v7-palette.jar Binary files differindex 62fd965..3e0842c 100644 --- a/current/support/v7/palette/libs/android-support-v7-palette.jar +++ b/current/support/v7/palette/libs/android-support-v7-palette.jar diff --git a/current/support/v7/recyclerview/libs/android-support-v7-recyclerview.jar b/current/support/v7/recyclerview/libs/android-support-v7-recyclerview.jar Binary files differindex 1a40337..9983b5d 100644 --- a/current/support/v7/recyclerview/libs/android-support-v7-recyclerview.jar +++ b/current/support/v7/recyclerview/libs/android-support-v7-recyclerview.jar |