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 --- OpenPGP-Keychain/build.gradle | 1 + OpenPGP-Keychain/project.properties | 1 + OpenPGP-Keychain/res/raw/help_about.html | 6 +- README.md | 13 +- libraries/AndroidBootstrap/AndroidManifest.xml | 26 ++ libraries/AndroidBootstrap/build.gradle | 17 + .../AndroidBootstrap/libs/android-support-v4.jar | Bin 0 -> 271754 bytes libraries/AndroidBootstrap/proguard-project.txt | 20 + libraries/AndroidBootstrap/project.properties | 15 + .../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 + .../androidbootstrap/BootstrapButton.java | 445 +++++++++++++++++++++ .../androidbootstrap/BootstrapCircleThumbnail.java | 215 ++++++++++ .../androidbootstrap/BootstrapEditText.java | 188 +++++++++ .../androidbootstrap/BootstrapThumbnail.java | 209 ++++++++++ .../beardedhen/androidbootstrap/FontAwesome.java | 390 ++++++++++++++++++ .../androidbootstrap/FontAwesomeText.java | 274 +++++++++++++ .../androidbootstrap/utils/AutoResizeTextView.java | 303 ++++++++++++++ .../androidbootstrap/utils/ImageUtils.java | 77 ++++ settings.gradle | 1 + 68 files changed, 3121 insertions(+), 5 deletions(-) create mode 100644 libraries/AndroidBootstrap/AndroidManifest.xml create mode 100644 libraries/AndroidBootstrap/build.gradle create mode 100644 libraries/AndroidBootstrap/libs/android-support-v4.jar create mode 100644 libraries/AndroidBootstrap/proguard-project.txt create mode 100644 libraries/AndroidBootstrap/project.properties 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 create mode 100644 libraries/AndroidBootstrap/src/com/beardedhen/androidbootstrap/BootstrapButton.java create mode 100644 libraries/AndroidBootstrap/src/com/beardedhen/androidbootstrap/BootstrapCircleThumbnail.java create mode 100644 libraries/AndroidBootstrap/src/com/beardedhen/androidbootstrap/BootstrapEditText.java create mode 100644 libraries/AndroidBootstrap/src/com/beardedhen/androidbootstrap/BootstrapThumbnail.java create mode 100644 libraries/AndroidBootstrap/src/com/beardedhen/androidbootstrap/FontAwesome.java create mode 100644 libraries/AndroidBootstrap/src/com/beardedhen/androidbootstrap/FontAwesomeText.java create mode 100644 libraries/AndroidBootstrap/src/com/beardedhen/androidbootstrap/utils/AutoResizeTextView.java create mode 100644 libraries/AndroidBootstrap/src/com/beardedhen/androidbootstrap/utils/ImageUtils.java diff --git a/OpenPGP-Keychain/build.gradle b/OpenPGP-Keychain/build.gradle index afc95fee8..143005caa 100644 --- a/OpenPGP-Keychain/build.gradle +++ b/OpenPGP-Keychain/build.gradle @@ -25,6 +25,7 @@ dependencies { compile project(':libraries:HtmlTextView') compile project(':libraries:StickyListHeaders:library') compile project(':libraries:zxing') + compile project(':libraries:AndroidBootstrap') } android { diff --git a/OpenPGP-Keychain/project.properties b/OpenPGP-Keychain/project.properties index 73fc44378..76caac668 100644 --- a/OpenPGP-Keychain/project.properties +++ b/OpenPGP-Keychain/project.properties @@ -13,3 +13,4 @@ android.library.reference.1=../libraries/ActionBarSherlock android.library.reference.2=../libraries/HtmlTextView android.library.reference.3=../libraries/StickyListHeaders/library android.library.reference.4=../libraries/zxing +android.library.reference.5=../libraries/AndroidBootstrap diff --git a/OpenPGP-Keychain/res/raw/help_about.html b/OpenPGP-Keychain/res/raw/help_about.html index 0ed0d3b05..8b412ded0 100644 --- a/OpenPGP-Keychain/res/raw/help_about.html +++ b/OpenPGP-Keychain/res/raw/help_about.html @@ -14,6 +14,8 @@ And don't add newlines before or after p tags because of transifex -->
  • Dominik Schürmann (Lead developer)
  • Ash Hughes
  • Brian C. Barnes
  • +
  • Bahtiar 'kalkin' Gadimov
  • +

    Developers APG 1.x