From 11ed8d7e16abfb98cd96d8a4447382c83435dac8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Sch=C3=BCrmann?= Date: Thu, 9 Jan 2014 12:31:45 +0100 Subject: add AndroidBootstrap lib --- .../res/drawable-hdpi/ic_launcher.png | Bin 0 -> 9397 bytes .../res/drawable-mdpi/ic_launcher.png | Bin 0 -> 5237 bytes .../res/drawable-xhdpi/ic_launcher.png | Bin 0 -> 14383 bytes .../res/drawable/bbuton_danger.xml | 20 +++++++ .../res/drawable/bbuton_danger_rounded.xml | 25 ++++++++ .../res/drawable/bbuton_default.xml | 20 +++++++ .../res/drawable/bbuton_default_rounded.xml | 23 ++++++++ .../AndroidBootstrap/res/drawable/bbuton_info.xml | 20 +++++++ .../res/drawable/bbuton_info_rounded.xml | 23 ++++++++ .../res/drawable/bbuton_inverse.xml | 20 +++++++ .../res/drawable/bbuton_inverse_rounded.xml | 23 ++++++++ .../res/drawable/bbuton_primary.xml | 20 +++++++ .../res/drawable/bbuton_primary_rounded.xml | 23 ++++++++ .../res/drawable/bbuton_success.xml | 20 +++++++ .../res/drawable/bbuton_success_rounded.xml | 23 ++++++++ .../res/drawable/bbuton_warning.xml | 20 +++++++ .../res/drawable/bbuton_warning_rounded.xml | 23 ++++++++ .../res/drawable/bthumbnail_container_rounded.xml | 10 ++++ .../res/drawable/bthumbnail_container_square.xml | 9 +++ .../drawable/bthumbnail_placeholder_default.xml | 9 +++ .../res/drawable/edittext_background.xml | 18 ++++++ .../res/drawable/edittext_background_danger.xml | 12 ++++ .../res/drawable/edittext_background_rounded.xml | 21 +++++++ .../edittext_background_rounded_danger.xml | 17 ++++++ .../edittext_background_rounded_success.xml | 14 +++++ .../edittext_background_rounded_warning.xml | 14 +++++ .../res/drawable/edittext_background_success.xml | 12 ++++ .../res/drawable/edittext_background_warning.xml | 12 ++++ .../res/drawable/thumbnail_circle.xml | 6 ++ .../res/drawable/thumbnail_circle_container.xml | 12 ++++ .../res/drawable/thumbnail_circle_minimal.xml | 11 ++++ .../res/layout/bootstrap_button.xml | 40 +++++++++++++ .../res/layout/bootstrap_button_fill.xml | 40 +++++++++++++ .../res/layout/bootstrap_edit_text.xml | 14 +++++ .../res/layout/bootstrap_thumbnail.xml | 33 +++++++++++ .../res/layout/bootstrap_thumbnail_circle.xml | 32 ++++++++++ .../res/layout/font_awesome_text.xml | 14 +++++ .../AndroidBootstrap/res/layout/row_title.xml | 16 +++++ .../res/layout/row_title_and_subtitle.xml | 26 +++++++++ .../res/layout/row_two_columns.xml | 28 +++++++++ libraries/AndroidBootstrap/res/menu/main.xml | 9 +++ .../AndroidBootstrap/res/values-sw600dp/dimens.xml | 8 +++ .../res/values-sw720dp-land/dimens.xml | 9 +++ .../AndroidBootstrap/res/values-v11/styles.xml | 11 ++++ .../AndroidBootstrap/res/values-v14/styles.xml | 12 ++++ libraries/AndroidBootstrap/res/values/attrs.xml | 50 ++++++++++++++++ libraries/AndroidBootstrap/res/values/colors.xml | 65 +++++++++++++++++++++ libraries/AndroidBootstrap/res/values/dimens.xml | 14 +++++ libraries/AndroidBootstrap/res/values/strings.xml | 8 +++ libraries/AndroidBootstrap/res/values/styles.xml | 16 +++++ 50 files changed, 925 insertions(+) create mode 100644 libraries/AndroidBootstrap/res/drawable-hdpi/ic_launcher.png create mode 100644 libraries/AndroidBootstrap/res/drawable-mdpi/ic_launcher.png create mode 100644 libraries/AndroidBootstrap/res/drawable-xhdpi/ic_launcher.png create mode 100644 libraries/AndroidBootstrap/res/drawable/bbuton_danger.xml create mode 100644 libraries/AndroidBootstrap/res/drawable/bbuton_danger_rounded.xml create mode 100644 libraries/AndroidBootstrap/res/drawable/bbuton_default.xml create mode 100644 libraries/AndroidBootstrap/res/drawable/bbuton_default_rounded.xml create mode 100644 libraries/AndroidBootstrap/res/drawable/bbuton_info.xml create mode 100644 libraries/AndroidBootstrap/res/drawable/bbuton_info_rounded.xml create mode 100644 libraries/AndroidBootstrap/res/drawable/bbuton_inverse.xml create mode 100644 libraries/AndroidBootstrap/res/drawable/bbuton_inverse_rounded.xml create mode 100644 libraries/AndroidBootstrap/res/drawable/bbuton_primary.xml create mode 100644 libraries/AndroidBootstrap/res/drawable/bbuton_primary_rounded.xml create mode 100644 libraries/AndroidBootstrap/res/drawable/bbuton_success.xml create mode 100644 libraries/AndroidBootstrap/res/drawable/bbuton_success_rounded.xml create mode 100644 libraries/AndroidBootstrap/res/drawable/bbuton_warning.xml create mode 100644 libraries/AndroidBootstrap/res/drawable/bbuton_warning_rounded.xml create mode 100644 libraries/AndroidBootstrap/res/drawable/bthumbnail_container_rounded.xml create mode 100644 libraries/AndroidBootstrap/res/drawable/bthumbnail_container_square.xml create mode 100644 libraries/AndroidBootstrap/res/drawable/bthumbnail_placeholder_default.xml create mode 100644 libraries/AndroidBootstrap/res/drawable/edittext_background.xml create mode 100644 libraries/AndroidBootstrap/res/drawable/edittext_background_danger.xml create mode 100644 libraries/AndroidBootstrap/res/drawable/edittext_background_rounded.xml create mode 100644 libraries/AndroidBootstrap/res/drawable/edittext_background_rounded_danger.xml create mode 100644 libraries/AndroidBootstrap/res/drawable/edittext_background_rounded_success.xml create mode 100644 libraries/AndroidBootstrap/res/drawable/edittext_background_rounded_warning.xml create mode 100644 libraries/AndroidBootstrap/res/drawable/edittext_background_success.xml create mode 100644 libraries/AndroidBootstrap/res/drawable/edittext_background_warning.xml create mode 100644 libraries/AndroidBootstrap/res/drawable/thumbnail_circle.xml create mode 100644 libraries/AndroidBootstrap/res/drawable/thumbnail_circle_container.xml create mode 100644 libraries/AndroidBootstrap/res/drawable/thumbnail_circle_minimal.xml create mode 100644 libraries/AndroidBootstrap/res/layout/bootstrap_button.xml create mode 100644 libraries/AndroidBootstrap/res/layout/bootstrap_button_fill.xml create mode 100644 libraries/AndroidBootstrap/res/layout/bootstrap_edit_text.xml create mode 100644 libraries/AndroidBootstrap/res/layout/bootstrap_thumbnail.xml create mode 100644 libraries/AndroidBootstrap/res/layout/bootstrap_thumbnail_circle.xml create mode 100644 libraries/AndroidBootstrap/res/layout/font_awesome_text.xml create mode 100644 libraries/AndroidBootstrap/res/layout/row_title.xml create mode 100644 libraries/AndroidBootstrap/res/layout/row_title_and_subtitle.xml create mode 100644 libraries/AndroidBootstrap/res/layout/row_two_columns.xml create mode 100644 libraries/AndroidBootstrap/res/menu/main.xml create mode 100644 libraries/AndroidBootstrap/res/values-sw600dp/dimens.xml create mode 100644 libraries/AndroidBootstrap/res/values-sw720dp-land/dimens.xml create mode 100644 libraries/AndroidBootstrap/res/values-v11/styles.xml create mode 100644 libraries/AndroidBootstrap/res/values-v14/styles.xml create mode 100644 libraries/AndroidBootstrap/res/values/attrs.xml create mode 100644 libraries/AndroidBootstrap/res/values/colors.xml create mode 100644 libraries/AndroidBootstrap/res/values/dimens.xml create mode 100644 libraries/AndroidBootstrap/res/values/strings.xml create mode 100644 libraries/AndroidBootstrap/res/values/styles.xml (limited to 'libraries/AndroidBootstrap/res') diff --git a/libraries/AndroidBootstrap/res/drawable-hdpi/ic_launcher.png b/libraries/AndroidBootstrap/res/drawable-hdpi/ic_launcher.png new file mode 100644 index 000000000..96a442e5b Binary files /dev/null and b/libraries/AndroidBootstrap/res/drawable-hdpi/ic_launcher.png differ diff --git a/libraries/AndroidBootstrap/res/drawable-mdpi/ic_launcher.png b/libraries/AndroidBootstrap/res/drawable-mdpi/ic_launcher.png new file mode 100644 index 000000000..359047dfa Binary files /dev/null and b/libraries/AndroidBootstrap/res/drawable-mdpi/ic_launcher.png differ diff --git a/libraries/AndroidBootstrap/res/drawable-xhdpi/ic_launcher.png b/libraries/AndroidBootstrap/res/drawable-xhdpi/ic_launcher.png new file mode 100644 index 000000000..71c6d760f Binary files /dev/null and b/libraries/AndroidBootstrap/res/drawable-xhdpi/ic_launcher.png differ diff --git a/libraries/AndroidBootstrap/res/drawable/bbuton_danger.xml b/libraries/AndroidBootstrap/res/drawable/bbuton_danger.xml new file mode 100644 index 000000000..4fd748cb4 --- /dev/null +++ b/libraries/AndroidBootstrap/res/drawable/bbuton_danger.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libraries/AndroidBootstrap/res/drawable/bbuton_danger_rounded.xml b/libraries/AndroidBootstrap/res/drawable/bbuton_danger_rounded.xml new file mode 100644 index 000000000..2fe8b2571 --- /dev/null +++ b/libraries/AndroidBootstrap/res/drawable/bbuton_danger_rounded.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libraries/AndroidBootstrap/res/drawable/bbuton_default.xml b/libraries/AndroidBootstrap/res/drawable/bbuton_default.xml new file mode 100644 index 000000000..77318eae0 --- /dev/null +++ b/libraries/AndroidBootstrap/res/drawable/bbuton_default.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libraries/AndroidBootstrap/res/drawable/bbuton_default_rounded.xml b/libraries/AndroidBootstrap/res/drawable/bbuton_default_rounded.xml new file mode 100644 index 000000000..923a2b66f --- /dev/null +++ b/libraries/AndroidBootstrap/res/drawable/bbuton_default_rounded.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libraries/AndroidBootstrap/res/drawable/bbuton_info.xml b/libraries/AndroidBootstrap/res/drawable/bbuton_info.xml new file mode 100644 index 000000000..5727e095e --- /dev/null +++ b/libraries/AndroidBootstrap/res/drawable/bbuton_info.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libraries/AndroidBootstrap/res/drawable/bbuton_info_rounded.xml b/libraries/AndroidBootstrap/res/drawable/bbuton_info_rounded.xml new file mode 100644 index 000000000..c171215ef --- /dev/null +++ b/libraries/AndroidBootstrap/res/drawable/bbuton_info_rounded.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libraries/AndroidBootstrap/res/drawable/bbuton_inverse.xml b/libraries/AndroidBootstrap/res/drawable/bbuton_inverse.xml new file mode 100644 index 000000000..bee362b30 --- /dev/null +++ b/libraries/AndroidBootstrap/res/drawable/bbuton_inverse.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libraries/AndroidBootstrap/res/drawable/bbuton_inverse_rounded.xml b/libraries/AndroidBootstrap/res/drawable/bbuton_inverse_rounded.xml new file mode 100644 index 000000000..e5ceb1da8 --- /dev/null +++ b/libraries/AndroidBootstrap/res/drawable/bbuton_inverse_rounded.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libraries/AndroidBootstrap/res/drawable/bbuton_primary.xml b/libraries/AndroidBootstrap/res/drawable/bbuton_primary.xml new file mode 100644 index 000000000..5e438f37d --- /dev/null +++ b/libraries/AndroidBootstrap/res/drawable/bbuton_primary.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libraries/AndroidBootstrap/res/drawable/bbuton_primary_rounded.xml b/libraries/AndroidBootstrap/res/drawable/bbuton_primary_rounded.xml new file mode 100644 index 000000000..88d08ea5d --- /dev/null +++ b/libraries/AndroidBootstrap/res/drawable/bbuton_primary_rounded.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libraries/AndroidBootstrap/res/drawable/bbuton_success.xml b/libraries/AndroidBootstrap/res/drawable/bbuton_success.xml new file mode 100644 index 000000000..c611ae9ba --- /dev/null +++ b/libraries/AndroidBootstrap/res/drawable/bbuton_success.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libraries/AndroidBootstrap/res/drawable/bbuton_success_rounded.xml b/libraries/AndroidBootstrap/res/drawable/bbuton_success_rounded.xml new file mode 100644 index 000000000..5536ac0fd --- /dev/null +++ b/libraries/AndroidBootstrap/res/drawable/bbuton_success_rounded.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libraries/AndroidBootstrap/res/drawable/bbuton_warning.xml b/libraries/AndroidBootstrap/res/drawable/bbuton_warning.xml new file mode 100644 index 000000000..e0596201b --- /dev/null +++ b/libraries/AndroidBootstrap/res/drawable/bbuton_warning.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libraries/AndroidBootstrap/res/drawable/bbuton_warning_rounded.xml b/libraries/AndroidBootstrap/res/drawable/bbuton_warning_rounded.xml new file mode 100644 index 000000000..ef0220d60 --- /dev/null +++ b/libraries/AndroidBootstrap/res/drawable/bbuton_warning_rounded.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libraries/AndroidBootstrap/res/drawable/bthumbnail_container_rounded.xml b/libraries/AndroidBootstrap/res/drawable/bthumbnail_container_rounded.xml new file mode 100644 index 000000000..01d8c00e2 --- /dev/null +++ b/libraries/AndroidBootstrap/res/drawable/bthumbnail_container_rounded.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/libraries/AndroidBootstrap/res/drawable/bthumbnail_container_square.xml b/libraries/AndroidBootstrap/res/drawable/bthumbnail_container_square.xml new file mode 100644 index 000000000..2c2729085 --- /dev/null +++ b/libraries/AndroidBootstrap/res/drawable/bthumbnail_container_square.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/libraries/AndroidBootstrap/res/drawable/bthumbnail_placeholder_default.xml b/libraries/AndroidBootstrap/res/drawable/bthumbnail_placeholder_default.xml new file mode 100644 index 000000000..fa0013790 --- /dev/null +++ b/libraries/AndroidBootstrap/res/drawable/bthumbnail_placeholder_default.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/libraries/AndroidBootstrap/res/drawable/edittext_background.xml b/libraries/AndroidBootstrap/res/drawable/edittext_background.xml new file mode 100644 index 000000000..f7f58502a --- /dev/null +++ b/libraries/AndroidBootstrap/res/drawable/edittext_background.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libraries/AndroidBootstrap/res/drawable/edittext_background_danger.xml b/libraries/AndroidBootstrap/res/drawable/edittext_background_danger.xml new file mode 100644 index 000000000..dd38089d0 --- /dev/null +++ b/libraries/AndroidBootstrap/res/drawable/edittext_background_danger.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/libraries/AndroidBootstrap/res/drawable/edittext_background_rounded.xml b/libraries/AndroidBootstrap/res/drawable/edittext_background_rounded.xml new file mode 100644 index 000000000..d3a318fd8 --- /dev/null +++ b/libraries/AndroidBootstrap/res/drawable/edittext_background_rounded.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/libraries/AndroidBootstrap/res/drawable/edittext_background_rounded_danger.xml b/libraries/AndroidBootstrap/res/drawable/edittext_background_rounded_danger.xml new file mode 100644 index 000000000..ad2d03a5e --- /dev/null +++ b/libraries/AndroidBootstrap/res/drawable/edittext_background_rounded_danger.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/libraries/AndroidBootstrap/res/drawable/edittext_background_rounded_success.xml b/libraries/AndroidBootstrap/res/drawable/edittext_background_rounded_success.xml new file mode 100644 index 000000000..7ef80a5f5 --- /dev/null +++ b/libraries/AndroidBootstrap/res/drawable/edittext_background_rounded_success.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/libraries/AndroidBootstrap/res/drawable/edittext_background_rounded_warning.xml b/libraries/AndroidBootstrap/res/drawable/edittext_background_rounded_warning.xml new file mode 100644 index 000000000..b90c3f96f --- /dev/null +++ b/libraries/AndroidBootstrap/res/drawable/edittext_background_rounded_warning.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/libraries/AndroidBootstrap/res/drawable/edittext_background_success.xml b/libraries/AndroidBootstrap/res/drawable/edittext_background_success.xml new file mode 100644 index 000000000..8f6af9700 --- /dev/null +++ b/libraries/AndroidBootstrap/res/drawable/edittext_background_success.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/libraries/AndroidBootstrap/res/drawable/edittext_background_warning.xml b/libraries/AndroidBootstrap/res/drawable/edittext_background_warning.xml new file mode 100644 index 000000000..0f95154c9 --- /dev/null +++ b/libraries/AndroidBootstrap/res/drawable/edittext_background_warning.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/libraries/AndroidBootstrap/res/drawable/thumbnail_circle.xml b/libraries/AndroidBootstrap/res/drawable/thumbnail_circle.xml new file mode 100644 index 000000000..c8d3ab2ff --- /dev/null +++ b/libraries/AndroidBootstrap/res/drawable/thumbnail_circle.xml @@ -0,0 +1,6 @@ + + + + + diff --git a/libraries/AndroidBootstrap/res/drawable/thumbnail_circle_container.xml b/libraries/AndroidBootstrap/res/drawable/thumbnail_circle_container.xml new file mode 100644 index 000000000..7f9e90d84 --- /dev/null +++ b/libraries/AndroidBootstrap/res/drawable/thumbnail_circle_container.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/libraries/AndroidBootstrap/res/drawable/thumbnail_circle_minimal.xml b/libraries/AndroidBootstrap/res/drawable/thumbnail_circle_minimal.xml new file mode 100644 index 000000000..80d4c41b4 --- /dev/null +++ b/libraries/AndroidBootstrap/res/drawable/thumbnail_circle_minimal.xml @@ -0,0 +1,11 @@ + + + + + + + + + + \ No newline at end of file diff --git a/libraries/AndroidBootstrap/res/layout/bootstrap_button.xml b/libraries/AndroidBootstrap/res/layout/bootstrap_button.xml new file mode 100644 index 000000000..d6260eaba --- /dev/null +++ b/libraries/AndroidBootstrap/res/layout/bootstrap_button.xml @@ -0,0 +1,40 @@ + + + + + + + + + + diff --git a/libraries/AndroidBootstrap/res/layout/bootstrap_button_fill.xml b/libraries/AndroidBootstrap/res/layout/bootstrap_button_fill.xml new file mode 100644 index 000000000..545f9b68a --- /dev/null +++ b/libraries/AndroidBootstrap/res/layout/bootstrap_button_fill.xml @@ -0,0 +1,40 @@ + + + + + + + + + + diff --git a/libraries/AndroidBootstrap/res/layout/bootstrap_edit_text.xml b/libraries/AndroidBootstrap/res/layout/bootstrap_edit_text.xml new file mode 100644 index 000000000..63b5b007a --- /dev/null +++ b/libraries/AndroidBootstrap/res/layout/bootstrap_edit_text.xml @@ -0,0 +1,14 @@ + + + + diff --git a/libraries/AndroidBootstrap/res/layout/bootstrap_thumbnail.xml b/libraries/AndroidBootstrap/res/layout/bootstrap_thumbnail.xml new file mode 100644 index 000000000..fb3b43042 --- /dev/null +++ b/libraries/AndroidBootstrap/res/layout/bootstrap_thumbnail.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + diff --git a/libraries/AndroidBootstrap/res/layout/bootstrap_thumbnail_circle.xml b/libraries/AndroidBootstrap/res/layout/bootstrap_thumbnail_circle.xml new file mode 100644 index 000000000..2e4394160 --- /dev/null +++ b/libraries/AndroidBootstrap/res/layout/bootstrap_thumbnail_circle.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/libraries/AndroidBootstrap/res/layout/font_awesome_text.xml b/libraries/AndroidBootstrap/res/layout/font_awesome_text.xml new file mode 100644 index 000000000..3fd7aeebc --- /dev/null +++ b/libraries/AndroidBootstrap/res/layout/font_awesome_text.xml @@ -0,0 +1,14 @@ + + + + diff --git a/libraries/AndroidBootstrap/res/layout/row_title.xml b/libraries/AndroidBootstrap/res/layout/row_title.xml new file mode 100644 index 000000000..dd5a3573a --- /dev/null +++ b/libraries/AndroidBootstrap/res/layout/row_title.xml @@ -0,0 +1,16 @@ + + + + + \ No newline at end of file diff --git a/libraries/AndroidBootstrap/res/layout/row_title_and_subtitle.xml b/libraries/AndroidBootstrap/res/layout/row_title_and_subtitle.xml new file mode 100644 index 000000000..ec25c0a46 --- /dev/null +++ b/libraries/AndroidBootstrap/res/layout/row_title_and_subtitle.xml @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/libraries/AndroidBootstrap/res/layout/row_two_columns.xml b/libraries/AndroidBootstrap/res/layout/row_two_columns.xml new file mode 100644 index 000000000..1029bffb5 --- /dev/null +++ b/libraries/AndroidBootstrap/res/layout/row_two_columns.xml @@ -0,0 +1,28 @@ + + + + + + + + + + \ No newline at end of file diff --git a/libraries/AndroidBootstrap/res/menu/main.xml b/libraries/AndroidBootstrap/res/menu/main.xml new file mode 100644 index 000000000..c00202823 --- /dev/null +++ b/libraries/AndroidBootstrap/res/menu/main.xml @@ -0,0 +1,9 @@ + + + + + diff --git a/libraries/AndroidBootstrap/res/values-sw600dp/dimens.xml b/libraries/AndroidBootstrap/res/values-sw600dp/dimens.xml new file mode 100644 index 000000000..44f01db75 --- /dev/null +++ b/libraries/AndroidBootstrap/res/values-sw600dp/dimens.xml @@ -0,0 +1,8 @@ + + + + + diff --git a/libraries/AndroidBootstrap/res/values-sw720dp-land/dimens.xml b/libraries/AndroidBootstrap/res/values-sw720dp-land/dimens.xml new file mode 100644 index 000000000..61e3fa8fb --- /dev/null +++ b/libraries/AndroidBootstrap/res/values-sw720dp-land/dimens.xml @@ -0,0 +1,9 @@ + + + + 128dp + + diff --git a/libraries/AndroidBootstrap/res/values-v11/styles.xml b/libraries/AndroidBootstrap/res/values-v11/styles.xml new file mode 100644 index 000000000..3c02242ad --- /dev/null +++ b/libraries/AndroidBootstrap/res/values-v11/styles.xml @@ -0,0 +1,11 @@ + + + + + + diff --git a/libraries/AndroidBootstrap/res/values-v14/styles.xml b/libraries/AndroidBootstrap/res/values-v14/styles.xml new file mode 100644 index 000000000..a91fd0372 --- /dev/null +++ b/libraries/AndroidBootstrap/res/values-v14/styles.xml @@ -0,0 +1,12 @@ + + + + + + diff --git a/libraries/AndroidBootstrap/res/values/attrs.xml b/libraries/AndroidBootstrap/res/values/attrs.xml new file mode 100644 index 000000000..2e56a622d --- /dev/null +++ b/libraries/AndroidBootstrap/res/values/attrs.xml @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/libraries/AndroidBootstrap/res/values/colors.xml b/libraries/AndroidBootstrap/res/values/colors.xml new file mode 100644 index 000000000..f0615f3ef --- /dev/null +++ b/libraries/AndroidBootstrap/res/values/colors.xml @@ -0,0 +1,65 @@ + + + #ffffffff + #ff000000 + #ccc + #ffe0e0e0 + + #ff428bca + #ff357ebd + #ff3276b1 + #ff285e8e + #a5428bca + #a5357ebd + + #ffd9534f + #ffd43f3a + #ffd2322d + #ffac2925 + #a5d9534f + #a5d43f3a + + + #ff5cb85c + #ff4cae4c + #ff47a447 + #ff398439 + #a55cb85c + #a54cae4c + + + #fff0ad4e + #ffeea236 + #ffed9c28 + #ffd58512 + #a5f0ad4e + #a5eea236 + + #ff5bc0de + #ff46b8da + #ff39b3d7 + #ff269abc + #a55bc0de + #a546b8da + + #ffffffff + #ffcccccc + #ffebebeb + #ffadadad + #a5ffffff + #a5cccccc + + #ff0a0a0a + #ff141414 + #ff1f1f1f + #ff292929 + #a50a0a0a + #a5141414 + + #ffffffff + #e9e9e9 + #dbdbdb + #7e7e7e + + + diff --git a/libraries/AndroidBootstrap/res/values/dimens.xml b/libraries/AndroidBootstrap/res/values/dimens.xml new file mode 100644 index 000000000..ed16a8abe --- /dev/null +++ b/libraries/AndroidBootstrap/res/values/dimens.xml @@ -0,0 +1,14 @@ + + + + 16dp + 16dp + 5dp + + 3dp + + 4dp + 8dp + 12dp + 16dp + diff --git a/libraries/AndroidBootstrap/res/values/strings.xml b/libraries/AndroidBootstrap/res/values/strings.xml new file mode 100644 index 000000000..69aff74d5 --- /dev/null +++ b/libraries/AndroidBootstrap/res/values/strings.xml @@ -0,0 +1,8 @@ + + + + BButton + Settings + Hello world! + + diff --git a/libraries/AndroidBootstrap/res/values/styles.xml b/libraries/AndroidBootstrap/res/values/styles.xml new file mode 100644 index 000000000..150753361 --- /dev/null +++ b/libraries/AndroidBootstrap/res/values/styles.xml @@ -0,0 +1,16 @@ + + + + + + + -- cgit v1.2.3