mirror of
https://github.com/MinimalBible/MinimalBible-Legacy
synced 2025-07-02 22:34:47 -04:00
Add the appcompat project to the repository
This commit is contained in:
44
appcompat_v7/res/values-v11/styles_base.xml
Normal file
44
appcompat_v7/res/values-v11/styles_base.xml
Normal file
@ -0,0 +1,44 @@
|
||||
<?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/>
|
||||
|
||||
<!-- Progress Bar -->
|
||||
|
||||
<style name="Widget.AppCompat.Base.ProgressBar.Horizontal"
|
||||
parent="android:Widget.Holo.ProgressBar.Horizontal">
|
||||
</style>
|
||||
|
||||
<style name="Widget.AppCompat.Base.ProgressBar"
|
||||
parent="android:Widget.Holo.ProgressBar">
|
||||
</style>
|
||||
|
||||
<!-- AutoCompleteTextView styles (for SearchView) -->
|
||||
|
||||
<style name="Widget.AppCompat.Base.AutoCompleteTextView"
|
||||
parent="android:Widget.Holo.AutoCompleteTextView">
|
||||
</style>
|
||||
|
||||
<style name="Widget.AppCompat.Light.Base.AutoCompleteTextView"
|
||||
parent="android:Widget.Holo.Light.AutoCompleteTextView">
|
||||
</style>
|
||||
|
||||
</resources>
|
52
appcompat_v7/res/values-v11/themes_base.xml
Normal file
52
appcompat_v7/res/values-v11/themes_base.xml
Normal file
@ -0,0 +1,52 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2013 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>
|
||||
|
||||
<!-- 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-v11/ file that only declares the Base themes for
|
||||
Honeycomb+. You probably want to edit values/themes.xml instead. -->
|
||||
<eat-comment/>
|
||||
|
||||
<!-- Base platform-dependent theme -->
|
||||
<style name="Theme.Base" parent="android:Theme.Holo">
|
||||
<item name="android:windowNoTitle">true</item>
|
||||
<item name="android:windowActionBar">false</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>
|
||||
<item name="selectableItemBackground">?android:attr/selectableItemBackground</item>
|
||||
</style>
|
||||
|
||||
<!-- Base platform-dependent theme providing a light-themed activity. -->
|
||||
<style name="Theme.Base.Light" parent="android:Theme.Holo.Light">
|
||||
<item name="android:windowNoTitle">true</item>
|
||||
<item name="android:windowActionBar">false</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>
|
||||
<item name="selectableItemBackground">?android:attr/selectableItemBackground</item>
|
||||
</style>
|
||||
|
||||
</resources>
|
Reference in New Issue
Block a user