diff --git a/README.md b/README.md index 8b7e004a6..5000a3e56 100644 --- a/README.md +++ b/README.md @@ -1,44 +1,54 @@ -![FolioReader logo](https://raw.githubusercontent.com/FolioReader/FolioReaderKit/assets/folioreader.png) - -[![Build Status](https://api.travis-ci.org/FolioReader/FolioReader-Android.svg?branch=master)](https://travis-ci.org/FolioReader/FolioReader-Android) - -FolioReader-Android is an EPUB reader written in Java and Kotlin. - -### Features - -- [x] Custom Fonts -- [x] Custom Text Size -- [x] Themes / Day mode / Night mode -- [x] Text Highlighting -- [x] List / Edit / Delete Highlights -- [x] Handle Internal and External Links -- [x] Portrait / Landscape -- [ ] Reading Time Left / Pages left -- [x] In-App Dictionary -- [ ] Media Overlays (Sync text rendering with audio playback) -- [ ] TTS - Text to Speech Support -- [ ] Parse epub cover image -- [ ] PDF support -- [x] Book Search -- [x] Add Notes to a Highlight -- [ ] Better Documentation -- [x] Last Read Locator -- [x] Horizontal Reading -- [x] Distraction Free Reading - -## Demo -##### Custom Fonts -![Custom fonts](https://cloud.githubusercontent.com/assets/1277242/19012915/0661c7b2-87e0-11e6-81d6-8c71051e1074.gif) -##### Day and Night Mode -![Day night mode](https://cloud.githubusercontent.com/assets/1277242/19012914/f42059c4-87df-11e6-97f8-29e61a79e8aa.gif) -##### Text Highlighting -![Highlight](https://cloud.githubusercontent.com/assets/1277242/19012904/c2700c3a-87df-11e6-97ed-507765b3ddf0.gif) -##### Media Overlays -![Media Overlay](https://cloud.githubusercontent.com/assets/1277242/19012908/d61f3ce2-87df-11e6-8652-d72b6a1ad9a3.gif) - -### Gradle - -Add following dependency to your root project `build.gradle` file: +# Vietnamese version FolioReader 0.5.4 - 11 +- Phiên bản nâng cấp tiếng Việt từ thư viện FolioReader-Android 0.5.4 ++ FolioReader-Android is an EPUB reader written in Java and Kotlin. See the [FOLIOREADER_PROJECT](https://github.com/FolioReader/FolioReader-Android) . ++ FolioReaderKit is available under the BSD license. See the [LICENSE](https://github.com/FolioReader/FolioReader-Android/blob/master/License.md) file. + +[![](https://jitpack.io/v/dongnvsince1999/FolioReader-Android.svg)](https://jitpack.io/#dongnvsince1999/FolioReader-Android) + +### Các tính năng của FolioReader 0.5.4 + Demo: [FOLIOREADER_PROJECT](https://github.com/FolioReader/FolioReader-Android) . + +### Các tính năng của phiên bản nâng cấp Tiếng Việt: +- Xử lý Internal / External links +- Portrait / Landscape +- Themes / Day mode / Night mode +- Highlight +- Tìm kiếm trong sách. +- Cập nhật ngôn ngữ tiếng Việt. +- Thay đổi toàn bộ giao diện. +- Custom Fonts cho tài liệu Tiếng Việt. +- Custom Textsize +- Thay đổi màu trong List / Edit / Delete Highlights. +- Hỗ trợ dịch từ trực tiếp trong ứng dụng. +- Hỗ trợ từ điển tiếng Việt offline. +- Bỏ tính năng share. +- Last ReadLocator +- Horizontal Reading +- Cập nhật ngôn ngữ Turkey +## Demo: + +### Đọc sách: + +![alt text](https://raw.githubusercontent.com/dongnvsince1999/FolioReader-Android/master/folioreader/readbook.png) + +### Thao tác với từ ngữ trong sách: + +![alt text](https://raw.githubusercontent.com/dongnvsince1999/FolioReader-Android/master/folioreader/show.png) + +### Quản lý mục lục và ghi chú: + +![alt text](https://raw.githubusercontent.com/dongnvsince1999/FolioReader-Android/master/folioreader/contenthighlight.png) + +### Thay đổi font, cỡ chữ, chế độ ngày / đêm: + +![alt text](https://raw.githubusercontent.com/dongnvsince1999/FolioReader-Android/master/folioreader/nightmode.png) + +### Tìm kiếm trong sách: + +![alt text](https://raw.githubusercontent.com/dongnvsince1999/FolioReader-Android/master/folioreader/search.png) + +## Hướng dẫn các dependence: + +Thêm dependency vào root project `build.gradle` file: ```groovy allprojects { @@ -51,30 +61,32 @@ allprojects { } ``` -Add following dependency to your app module `build.gradle` file: +Thêm dependency vào app module `build.gradle` file: ```groovy dependencies { ... - implementation "com.folioreader:folioreader:0.5.4" + implementation 'com.github.dongnvsince1999:FolioReader-Android:0.5.4-10' ... } ``` -### Enable Multidex support - -Enable Multidex support as explained in this [Android Doc](https://developer.android.com/studio/build/multidex) -### Usage +## Hướng dẫn sử dụng: -Get singleton object of `FolioReader`: +Lấy singleton object `FolioReader`: ```java FolioReader folioReader = FolioReader.get(); ``` -Call the function `openBook()`: +Gọi hàm `openBook()`: +##### opening from file path: + +```java +folioReader.openBook("/sdcard/Download/Book.epub"); +``` ##### opening book from assets - ```java @@ -86,58 +98,17 @@ folioReader.openBook("file:///android_asset/TheSilverChair.epub"); folioReader.openBook(R.raw.accessible_epub_3); ``` +## Đây là bản mở rộng của Folio Reader, mọi thông tin về Folio Reader có thể tham khảo tại: [FOLIOREADER_PROJECT](https://github.com/FolioReader/FolioReader-Android) -## WIKI - -* [Home](https://github.com/FolioReader/FolioReader-Android/wiki) -* [Configuration](https://github.com/FolioReader/FolioReader-Android/wiki/Configuration) - * [Custom Configuration](https://github.com/FolioReader/FolioReader-Android/wiki/Custom-Configuration) -* [Highlight](https://github.com/FolioReader/FolioReader-Android/wiki/Highlight) - * [Highlight Action](https://github.com/FolioReader/FolioReader-Android/wiki/Highlight-Action) - * [Highlight Event](https://github.com/FolioReader/FolioReader-Android/wiki/Highlight-Event) - * [Providing External Highlight](https://github.com/FolioReader/FolioReader-Android/wiki/Providing-External-Highlight) -* [ReadLocator](https://github.com/FolioReader/FolioReader-Android/wiki/ReadLocator) -* [Clean up code](https://github.com/FolioReader/FolioReader-Android/wiki/Clean-up-code) - -## Reporting Issue - -See [KNOWN_ISSUES](https://github.com/FolioReader/FolioReader-Android/blob/master/KNOWN_ISSUES.md) and [CHANGELOG](https://github.com/FolioReader/FolioReader-Android/blob/master/CHANGELOG.md) first before reporting any issue.
-Please follow [Issue Template](https://github.com/FolioReader/FolioReader-Android/blob/master/.github/ISSUE_TEMPLATE.md) to report any issue. - -## Share your application -If you are using FolioReader in your application, share your application link in [this issue](https://github.com/FolioReader/FolioReader-Android/issues/291) - -### Credits -1. SwipeLayout -2. r2-streamer-kotlin -3. Pearson Dictionaries -4. rangy - -### Author +### Tác giả của FolioReader-Android: [**Heberti Almeida**](https://github.com/hebertialmeida) -- Follow me on **Twitter**: [**@hebertialmeida**](https://twitter.com/hebertialmeida) -- Contact me on **LinkedIn**: [**hebertialmeida**](http://linkedin.com/in/hebertialmeida) - -[**CodeToArt Technology**](https://github.com/codetoart) - -- Follow us on **Twitter**: [**@codetoart**](https://twitter.com/codetoart) -- Contact us on **Website**: [**codetoart**](http://www.codetoart.com) - -## Donations - -**This project needs you!** If you would like to support this project's further development, the creator of this project or the continuous maintenance of this project, **feel free to donate**. Your donation is highly appreciated. Thank you! - -**PayPal** - - - [**Donate 5 $**](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=hebertialmeida%40gmail%2ecom&lc=US&item_name=FolioReader%20Libraries&amount=5%2e00¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted): Thank's for creating this project, here's a tea (or some juice) for you! - - [**Donate 10 $**](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=hebertialmeida%40gmail%2ecom&lc=US&item_name=FolioReader%20Libraries&amount=10%2e00¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted): Wow, I am stunned. Let me take you to the movies! - - [**Donate 15 $**](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=hebertialmeida%40gmail%2ecom&lc=US&item_name=FolioReader%20Libraries&amount=15%2e00¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted): I really appreciate your work, let's grab some lunch! - - [**Donate 25 $**](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=hebertialmeida%40gmail%2ecom&lc=US&item_name=FolioReader%20Libraries&amount=25%2e00¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted): That's some awesome stuff you did right there, dinner is on me! - - [**Donate 50 $**](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=hebertialmeida%40gmail%2ecom&lc=US&item_name=FolioReader%20Libraries&amount=50%2e00¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted): I really really want to support this project, great job! - - [**Donate 100 $**](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=hebertialmeida%40gmail%2ecom&lc=US&item_name=FolioReader%20Libraries&amount=100%2e00¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted): You are the man! This project saved me hours (if not days) of struggle and hard work, simply awesome! - - Of course, you can also [**choose what you want to donate**](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=hebertialmeida%40gmail%2ecom&lc=US&item_name=FolioReader%20Libraries¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted), all donations are awesome! - -## License -FolioReaderKit is available under the BSD license. See the [LICENSE](https://github.com/FolioReader/FolioReader-Android/blob/master/License.md) file. +- **Twitter**: [**@hebertialmeida**](https://twitter.com/hebertialmeida) +- **LinkedIn**: [**hebertialmeida**](http://linkedin.com/in/hebertialmeida) +## Các tham khảo khác: + - FOLIOREADER WIKI + - [**EPUB CFI**](http://idpf.org/epub/linking/cfi/epub-cfi.html) + - [**Rangy**](https://github.com/timdown/rangy) + - API của Dịch từ của Google: translate.googleapis.com + - Data từ điển được lấy và convert từ [**UNDERTHESEAPROJECT**](https://github.com/undertheseanlp/underthesea)(Github) diff --git a/folioreader/AndroidManifest.xml b/folioreader/AndroidManifest.xml index 96e7be6ee..2a4d51fc5 100644 --- a/folioreader/AndroidManifest.xml +++ b/folioreader/AndroidManifest.xml @@ -3,6 +3,7 @@ xmlns:tools="http://schemas.android.com/tools" package="com.folioreader"> + diff --git a/folioreader/addmain.png b/folioreader/addmain.png new file mode 100644 index 000000000..261a280b1 Binary files /dev/null and b/folioreader/addmain.png differ diff --git a/folioreader/audioconfig.png b/folioreader/audioconfig.png new file mode 100644 index 000000000..b7909cc6e Binary files /dev/null and b/folioreader/audioconfig.png differ diff --git a/folioreader/audiomain.png b/folioreader/audiomain.png new file mode 100644 index 000000000..d14acb9c5 Binary files /dev/null and b/folioreader/audiomain.png differ diff --git a/folioreader/build.gradle b/folioreader/build.gradle index f41712cc4..aac645338 100644 --- a/folioreader/build.gradle +++ b/folioreader/build.gradle @@ -83,8 +83,12 @@ dependencies { implementation "androidx.appcompat:appcompat:$versions.appcompat" implementation "androidx.constraintlayout:constraintlayout:$versions.constraintLayout" implementation "androidx.recyclerview:recyclerview:$versions.recyclerview" - implementation "com.google.android.material:material:$versions.material" + implementation 'com.android.support:design:28.0.0' + implementation 'androidx.legacy:legacy-support-v4:1.0.0' testImplementation 'junit:junit:4.12' + implementation 'com.readystatesoftware.sqliteasset:sqliteassethelper:+' + + implementation 'org.slf4j:slf4j-android:1.7.25' implementation 'com.daimajia.swipelayout:library:1.2.0@aar' @@ -103,6 +107,8 @@ dependencies { implementation "com.squareup.retrofit2:retrofit:$versions.retrofit" implementation "com.squareup.retrofit2:converter-jackson:$versions.retrofit" implementation "com.squareup.retrofit2:converter-gson:$versions.retrofit" + implementation 'com.squareup.okhttp3:okhttp:3.12.0' + implementation 'com.squareup.moshi:moshi:1.2.0' // R2 modules api("com.github.codetoart:r2-shared-kotlin:$versions.r2SharedKotlin") { diff --git a/folioreader/contenthighlight.png b/folioreader/contenthighlight.png new file mode 100644 index 000000000..c72ba2d4c Binary files /dev/null and b/folioreader/contenthighlight.png differ diff --git a/folioreader/gradle/wrapper/gradle-wrapper.jar b/folioreader/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 000000000..f6b961fd5 Binary files /dev/null and b/folioreader/gradle/wrapper/gradle-wrapper.jar differ diff --git a/folioreader/gradle/wrapper/gradle-wrapper.properties b/folioreader/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 000000000..d5fb67a05 --- /dev/null +++ b/folioreader/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,6 @@ +#Thu Jan 02 07:55:25 EET 2020 +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip diff --git a/folioreader/gradlew b/folioreader/gradlew new file mode 100644 index 000000000..cccdd3d51 --- /dev/null +++ b/folioreader/gradlew @@ -0,0 +1,172 @@ +#!/usr/bin/env sh + +############################################################################## +## +## Gradle start up script for UN*X +## +############################################################################## + +# Attempt to set APP_HOME +# Resolve links: $0 may be a link +PRG="$0" +# Need this for relative symlinks. +while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG=`dirname "$PRG"`"/$link" + fi +done +SAVED="`pwd`" +cd "`dirname \"$PRG\"`/" >/dev/null +APP_HOME="`pwd -P`" +cd "$SAVED" >/dev/null + +APP_NAME="Gradle" +APP_BASE_NAME=`basename "$0"` + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS="" + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD="maximum" + +warn () { + echo "$*" +} + +die () { + echo + echo "$*" + echo + exit 1 +} + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "`uname`" in + CYGWIN* ) + cygwin=true + ;; + Darwin* ) + darwin=true + ;; + MINGW* ) + msys=true + ;; + NONSTOP* ) + nonstop=true + ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD="java" + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then + MAX_FD_LIMIT=`ulimit -H -n` + if [ $? -eq 0 ] ; then + if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then + MAX_FD="$MAX_FD_LIMIT" + fi + ulimit -n $MAX_FD + if [ $? -ne 0 ] ; then + warn "Could not set maximum file descriptor limit: $MAX_FD" + fi + else + warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" + fi +fi + +# For Darwin, add options to specify how the application appears in the dock +if $darwin; then + GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" +fi + +# For Cygwin, switch paths to Windows format before running java +if $cygwin ; then + APP_HOME=`cygpath --path --mixed "$APP_HOME"` + CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` + JAVACMD=`cygpath --unix "$JAVACMD"` + + # We build the pattern for arguments to be converted via cygpath + ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` + SEP="" + for dir in $ROOTDIRSRAW ; do + ROOTDIRS="$ROOTDIRS$SEP$dir" + SEP="|" + done + OURCYGPATTERN="(^($ROOTDIRS))" + # Add a user-defined pattern to the cygpath arguments + if [ "$GRADLE_CYGPATTERN" != "" ] ; then + OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" + fi + # Now convert the arguments - kludge to limit ourselves to /bin/sh + i=0 + for arg in "$@" ; do + CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` + CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option + + if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition + eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` + else + eval `echo args$i`="\"$arg\"" + fi + i=$((i+1)) + done + case $i in + (0) set -- ;; + (1) set -- "$args0" ;; + (2) set -- "$args0" "$args1" ;; + (3) set -- "$args0" "$args1" "$args2" ;; + (4) set -- "$args0" "$args1" "$args2" "$args3" ;; + (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; + (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; + (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; + (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; + (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; + esac +fi + +# Escape application args +save () { + for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done + echo " " +} +APP_ARGS=$(save "$@") + +# Collect all arguments for the java command, following the shell quoting and substitution rules +eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" + +# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong +if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then + cd "$(dirname "$0")" +fi + +exec "$JAVACMD" "$@" diff --git a/folioreader/gradlew.bat b/folioreader/gradlew.bat new file mode 100644 index 000000000..f9553162f --- /dev/null +++ b/folioreader/gradlew.bat @@ -0,0 +1,84 @@ +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS= + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto init + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto init + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:init +@rem Get command-line arguments, handling Windows variants + +if not "%OS%" == "Windows_NT" goto win9xME_args + +:win9xME_args +@rem Slurp the command line arguments. +set CMD_LINE_ARGS= +set _SKIP=2 + +:win9xME_args_slurp +if "x%~1" == "x" goto execute + +set CMD_LINE_ARGS=%* + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/folioreader/highlightmain.png b/folioreader/highlightmain.png new file mode 100644 index 000000000..58fc9e00d Binary files /dev/null and b/folioreader/highlightmain.png differ diff --git a/folioreader/iconlogo_.png b/folioreader/iconlogo_.png new file mode 100644 index 000000000..733217f09 Binary files /dev/null and b/folioreader/iconlogo_.png differ diff --git a/folioreader/main.png b/folioreader/main.png new file mode 100644 index 000000000..824720dd3 Binary files /dev/null and b/folioreader/main.png differ diff --git a/folioreader/nightmode.png b/folioreader/nightmode.png new file mode 100644 index 000000000..17cdf8508 Binary files /dev/null and b/folioreader/nightmode.png differ diff --git a/folioreader/posterapp.png b/folioreader/posterapp.png new file mode 100644 index 000000000..2c9df3aee Binary files /dev/null and b/folioreader/posterapp.png differ diff --git a/folioreader/readbook.png b/folioreader/readbook.png new file mode 100644 index 000000000..0a6103e4f Binary files /dev/null and b/folioreader/readbook.png differ diff --git a/folioreader/res/drawable-hdpi/ic_action_define.png b/folioreader/res/drawable-hdpi/ic_action_define.png new file mode 100644 index 000000000..c47e3503e Binary files /dev/null and b/folioreader/res/drawable-hdpi/ic_action_define.png differ diff --git a/folioreader/res/drawable-hdpi/ic_action_delete_note_icon.png b/folioreader/res/drawable-hdpi/ic_action_delete_note_icon.png new file mode 100644 index 000000000..8e0b46a83 Binary files /dev/null and b/folioreader/res/drawable-hdpi/ic_action_delete_note_icon.png differ diff --git a/folioreader/res/drawable-hdpi/ic_action_edit_icon.png b/folioreader/res/drawable-hdpi/ic_action_edit_icon.png new file mode 100644 index 000000000..9d18829ba Binary files /dev/null and b/folioreader/res/drawable-hdpi/ic_action_edit_icon.png differ diff --git a/folioreader/res/drawable-hdpi/ic_action_fiber_manual_blue.png b/folioreader/res/drawable-hdpi/ic_action_fiber_manual_blue.png new file mode 100644 index 000000000..79a3efdd8 Binary files /dev/null and b/folioreader/res/drawable-hdpi/ic_action_fiber_manual_blue.png differ diff --git a/folioreader/res/drawable-hdpi/ic_action_fiber_manual_green.png b/folioreader/res/drawable-hdpi/ic_action_fiber_manual_green.png new file mode 100644 index 000000000..8de15962c Binary files /dev/null and b/folioreader/res/drawable-hdpi/ic_action_fiber_manual_green.png differ diff --git a/folioreader/res/drawable-hdpi/ic_action_fiber_manual_red.png b/folioreader/res/drawable-hdpi/ic_action_fiber_manual_red.png new file mode 100644 index 000000000..b7f2f1907 Binary files /dev/null and b/folioreader/res/drawable-hdpi/ic_action_fiber_manual_red.png differ diff --git a/folioreader/res/drawable-hdpi/ic_action_fiber_manual_yellow.png b/folioreader/res/drawable-hdpi/ic_action_fiber_manual_yellow.png new file mode 100644 index 000000000..13988872a Binary files /dev/null and b/folioreader/res/drawable-hdpi/ic_action_fiber_manual_yellow.png differ diff --git a/folioreader/res/drawable-hdpi/ic_action_file_copy.png b/folioreader/res/drawable-hdpi/ic_action_file_copy.png new file mode 100644 index 000000000..8a988b50e Binary files /dev/null and b/folioreader/res/drawable-hdpi/ic_action_file_copy.png differ diff --git a/folioreader/res/drawable-hdpi/ic_action_g_translate.png b/folioreader/res/drawable-hdpi/ic_action_g_translate.png new file mode 100644 index 000000000..219167680 Binary files /dev/null and b/folioreader/res/drawable-hdpi/ic_action_g_translate.png differ diff --git a/folioreader/res/drawable-hdpi/ic_action_library_add.png b/folioreader/res/drawable-hdpi/ic_action_library_add.png new file mode 100644 index 000000000..29cbc254e Binary files /dev/null and b/folioreader/res/drawable-hdpi/ic_action_library_add.png differ diff --git a/folioreader/res/drawable-hdpi/ic_action_share.png b/folioreader/res/drawable-hdpi/ic_action_share.png new file mode 100644 index 000000000..7494d7784 Binary files /dev/null and b/folioreader/res/drawable-hdpi/ic_action_share.png differ diff --git a/folioreader/res/drawable-mdpi/ic_action_define.png b/folioreader/res/drawable-mdpi/ic_action_define.png new file mode 100644 index 000000000..0880a09cc Binary files /dev/null and b/folioreader/res/drawable-mdpi/ic_action_define.png differ diff --git a/folioreader/res/drawable-mdpi/ic_action_delete_note_icon.png b/folioreader/res/drawable-mdpi/ic_action_delete_note_icon.png new file mode 100644 index 000000000..dbcce645f Binary files /dev/null and b/folioreader/res/drawable-mdpi/ic_action_delete_note_icon.png differ diff --git a/folioreader/res/drawable-mdpi/ic_action_edit_icon.png b/folioreader/res/drawable-mdpi/ic_action_edit_icon.png new file mode 100644 index 000000000..8a645527f Binary files /dev/null and b/folioreader/res/drawable-mdpi/ic_action_edit_icon.png differ diff --git a/folioreader/res/drawable-mdpi/ic_action_fiber_manual_blue.png b/folioreader/res/drawable-mdpi/ic_action_fiber_manual_blue.png new file mode 100644 index 000000000..a482473b8 Binary files /dev/null and b/folioreader/res/drawable-mdpi/ic_action_fiber_manual_blue.png differ diff --git a/folioreader/res/drawable-mdpi/ic_action_fiber_manual_green.png b/folioreader/res/drawable-mdpi/ic_action_fiber_manual_green.png new file mode 100644 index 000000000..4b3b1737f Binary files /dev/null and b/folioreader/res/drawable-mdpi/ic_action_fiber_manual_green.png differ diff --git a/folioreader/res/drawable-mdpi/ic_action_fiber_manual_red.png b/folioreader/res/drawable-mdpi/ic_action_fiber_manual_red.png new file mode 100644 index 000000000..1813e97b7 Binary files /dev/null and b/folioreader/res/drawable-mdpi/ic_action_fiber_manual_red.png differ diff --git a/folioreader/res/drawable-mdpi/ic_action_fiber_manual_yellow.png b/folioreader/res/drawable-mdpi/ic_action_fiber_manual_yellow.png new file mode 100644 index 000000000..ebadc5691 Binary files /dev/null and b/folioreader/res/drawable-mdpi/ic_action_fiber_manual_yellow.png differ diff --git a/folioreader/res/drawable-mdpi/ic_action_file_copy.png b/folioreader/res/drawable-mdpi/ic_action_file_copy.png new file mode 100644 index 000000000..ca24c9fc3 Binary files /dev/null and b/folioreader/res/drawable-mdpi/ic_action_file_copy.png differ diff --git a/folioreader/res/drawable-mdpi/ic_action_g_translate.png b/folioreader/res/drawable-mdpi/ic_action_g_translate.png new file mode 100644 index 000000000..7a247ad07 Binary files /dev/null and b/folioreader/res/drawable-mdpi/ic_action_g_translate.png differ diff --git a/folioreader/res/drawable-mdpi/ic_action_library_add.png b/folioreader/res/drawable-mdpi/ic_action_library_add.png new file mode 100644 index 000000000..01a30d3f5 Binary files /dev/null and b/folioreader/res/drawable-mdpi/ic_action_library_add.png differ diff --git a/folioreader/res/drawable-mdpi/ic_action_share.png b/folioreader/res/drawable-mdpi/ic_action_share.png new file mode 100644 index 000000000..f4d872123 Binary files /dev/null and b/folioreader/res/drawable-mdpi/ic_action_share.png differ diff --git a/folioreader/res/drawable-xhdpi/define_image.9.png b/folioreader/res/drawable-xhdpi/define_image.9.png new file mode 100644 index 000000000..8f1ff9e0d Binary files /dev/null and b/folioreader/res/drawable-xhdpi/define_image.9.png differ diff --git a/folioreader/res/drawable-xhdpi/delete_btn_background.9.png b/folioreader/res/drawable-xhdpi/delete_btn_background.9.png new file mode 100644 index 000000000..45c76ea69 Binary files /dev/null and b/folioreader/res/drawable-xhdpi/delete_btn_background.9.png differ diff --git a/folioreader/res/drawable-xhdpi/drawable-hdpi/ic_action_edit_icon.png b/folioreader/res/drawable-xhdpi/drawable-hdpi/ic_action_edit_icon.png new file mode 100644 index 000000000..9d18829ba Binary files /dev/null and b/folioreader/res/drawable-xhdpi/drawable-hdpi/ic_action_edit_icon.png differ diff --git a/folioreader/res/drawable-xhdpi/drawable-hdpi/ic_action_library_add.png b/folioreader/res/drawable-xhdpi/drawable-hdpi/ic_action_library_add.png new file mode 100644 index 000000000..29cbc254e Binary files /dev/null and b/folioreader/res/drawable-xhdpi/drawable-hdpi/ic_action_library_add.png differ diff --git a/folioreader/res/drawable-xhdpi/drawable-mdpi/ic_action_edit_icon.png b/folioreader/res/drawable-xhdpi/drawable-mdpi/ic_action_edit_icon.png new file mode 100644 index 000000000..8a645527f Binary files /dev/null and b/folioreader/res/drawable-xhdpi/drawable-mdpi/ic_action_edit_icon.png differ diff --git a/folioreader/res/drawable-xhdpi/drawable-mdpi/ic_action_library_add.png b/folioreader/res/drawable-xhdpi/drawable-mdpi/ic_action_library_add.png new file mode 100644 index 000000000..01a30d3f5 Binary files /dev/null and b/folioreader/res/drawable-xhdpi/drawable-mdpi/ic_action_library_add.png differ diff --git a/folioreader/res/drawable-xhdpi/drawable-xhdpi/ic_action_edit_icon.png b/folioreader/res/drawable-xhdpi/drawable-xhdpi/ic_action_edit_icon.png new file mode 100644 index 000000000..1e3dbd833 Binary files /dev/null and b/folioreader/res/drawable-xhdpi/drawable-xhdpi/ic_action_edit_icon.png differ diff --git a/folioreader/res/drawable-xhdpi/drawable-xhdpi/ic_action_library_add.png b/folioreader/res/drawable-xhdpi/drawable-xhdpi/ic_action_library_add.png new file mode 100644 index 000000000..21843e4f3 Binary files /dev/null and b/folioreader/res/drawable-xhdpi/drawable-xhdpi/ic_action_library_add.png differ diff --git a/folioreader/res/drawable-xhdpi/drawable-xxhdpi/ic_action_edit_icon.png b/folioreader/res/drawable-xhdpi/drawable-xxhdpi/ic_action_edit_icon.png new file mode 100644 index 000000000..17ebcf09b Binary files /dev/null and b/folioreader/res/drawable-xhdpi/drawable-xxhdpi/ic_action_edit_icon.png differ diff --git a/folioreader/res/drawable-xhdpi/drawable-xxhdpi/ic_action_library_add.png b/folioreader/res/drawable-xhdpi/drawable-xxhdpi/ic_action_library_add.png new file mode 100644 index 000000000..1c67c68ba Binary files /dev/null and b/folioreader/res/drawable-xhdpi/drawable-xxhdpi/ic_action_library_add.png differ diff --git a/folioreader/res/drawable-xhdpi/drawable-xxxhdpi/ic_action_edit_icon.png b/folioreader/res/drawable-xhdpi/drawable-xxxhdpi/ic_action_edit_icon.png new file mode 100644 index 000000000..2ad33a9f9 Binary files /dev/null and b/folioreader/res/drawable-xhdpi/drawable-xxxhdpi/ic_action_edit_icon.png differ diff --git a/folioreader/res/drawable-xhdpi/drawable-xxxhdpi/ic_action_library_add.png b/folioreader/res/drawable-xhdpi/drawable-xxxhdpi/ic_action_library_add.png new file mode 100644 index 000000000..13c561573 Binary files /dev/null and b/folioreader/res/drawable-xhdpi/drawable-xxxhdpi/ic_action_library_add.png differ diff --git a/folioreader/res/drawable-xhdpi/edit_note.png b/folioreader/res/drawable-xhdpi/edit_note.png index a031b9be8..1a0c8adcf 100644 Binary files a/folioreader/res/drawable-xhdpi/edit_note.png and b/folioreader/res/drawable-xhdpi/edit_note.png differ diff --git a/folioreader/res/drawable-xhdpi/ic_action_define.png b/folioreader/res/drawable-xhdpi/ic_action_define.png new file mode 100644 index 000000000..39dd72845 Binary files /dev/null and b/folioreader/res/drawable-xhdpi/ic_action_define.png differ diff --git a/folioreader/res/drawable-xhdpi/ic_action_delete_note_icon.png b/folioreader/res/drawable-xhdpi/ic_action_delete_note_icon.png new file mode 100644 index 000000000..3c6c5d362 Binary files /dev/null and b/folioreader/res/drawable-xhdpi/ic_action_delete_note_icon.png differ diff --git a/folioreader/res/drawable-xhdpi/ic_action_edit_icon.png b/folioreader/res/drawable-xhdpi/ic_action_edit_icon.png new file mode 100644 index 000000000..1e3dbd833 Binary files /dev/null and b/folioreader/res/drawable-xhdpi/ic_action_edit_icon.png differ diff --git a/folioreader/res/drawable-xhdpi/ic_action_fiber_manual_blue.png b/folioreader/res/drawable-xhdpi/ic_action_fiber_manual_blue.png new file mode 100644 index 000000000..04a950120 Binary files /dev/null and b/folioreader/res/drawable-xhdpi/ic_action_fiber_manual_blue.png differ diff --git a/folioreader/res/drawable-xhdpi/ic_action_fiber_manual_green.png b/folioreader/res/drawable-xhdpi/ic_action_fiber_manual_green.png new file mode 100644 index 000000000..cba2a3c81 Binary files /dev/null and b/folioreader/res/drawable-xhdpi/ic_action_fiber_manual_green.png differ diff --git a/folioreader/res/drawable-xhdpi/ic_action_fiber_manual_red.png b/folioreader/res/drawable-xhdpi/ic_action_fiber_manual_red.png new file mode 100644 index 000000000..7ab730ec3 Binary files /dev/null and b/folioreader/res/drawable-xhdpi/ic_action_fiber_manual_red.png differ diff --git a/folioreader/res/drawable-xhdpi/ic_action_fiber_manual_yellow.png b/folioreader/res/drawable-xhdpi/ic_action_fiber_manual_yellow.png new file mode 100644 index 000000000..11331a330 Binary files /dev/null and b/folioreader/res/drawable-xhdpi/ic_action_fiber_manual_yellow.png differ diff --git a/folioreader/res/drawable-xhdpi/ic_action_file_copy.png b/folioreader/res/drawable-xhdpi/ic_action_file_copy.png new file mode 100644 index 000000000..aa3442597 Binary files /dev/null and b/folioreader/res/drawable-xhdpi/ic_action_file_copy.png differ diff --git a/folioreader/res/drawable-xhdpi/ic_action_g_translate.png b/folioreader/res/drawable-xhdpi/ic_action_g_translate.png new file mode 100644 index 000000000..d0ed24de2 Binary files /dev/null and b/folioreader/res/drawable-xhdpi/ic_action_g_translate.png differ diff --git a/folioreader/res/drawable-xhdpi/ic_action_library_add.png b/folioreader/res/drawable-xhdpi/ic_action_library_add.png new file mode 100644 index 000000000..21843e4f3 Binary files /dev/null and b/folioreader/res/drawable-xhdpi/ic_action_library_add.png differ diff --git a/folioreader/res/drawable-xhdpi/ic_action_share.png b/folioreader/res/drawable-xhdpi/ic_action_share.png new file mode 100644 index 000000000..ac1a0e12e Binary files /dev/null and b/folioreader/res/drawable-xhdpi/ic_action_share.png differ diff --git a/folioreader/res/drawable-xhdpi/icon_moon_sel.png b/folioreader/res/drawable-xhdpi/icon_moon_sel.png index ecc727599..7cae13d06 100644 Binary files a/folioreader/res/drawable-xhdpi/icon_moon_sel.png and b/folioreader/res/drawable-xhdpi/icon_moon_sel.png differ diff --git a/folioreader/res/drawable-xhdpi/icon_sun_sel.png b/folioreader/res/drawable-xhdpi/icon_sun_sel.png index 2af010582..b31cf20fb 100644 Binary files a/folioreader/res/drawable-xhdpi/icon_sun_sel.png and b/folioreader/res/drawable-xhdpi/icon_sun_sel.png differ diff --git a/folioreader/res/drawable-xhdpi/shadow_replace.9.png b/folioreader/res/drawable-xhdpi/shadow_replace.9.png new file mode 100644 index 000000000..bee264335 Binary files /dev/null and b/folioreader/res/drawable-xhdpi/shadow_replace.9.png differ diff --git a/folioreader/res/drawable-xhdpi/trash.png b/folioreader/res/drawable-xhdpi/trash.png deleted file mode 100644 index 0f82b5a9b..000000000 Binary files a/folioreader/res/drawable-xhdpi/trash.png and /dev/null differ diff --git a/folioreader/res/drawable-xxhdpi/ic_action_define.png b/folioreader/res/drawable-xxhdpi/ic_action_define.png new file mode 100644 index 000000000..e1eb35914 Binary files /dev/null and b/folioreader/res/drawable-xxhdpi/ic_action_define.png differ diff --git a/folioreader/res/drawable-xxhdpi/ic_action_delete_note_icon.png b/folioreader/res/drawable-xxhdpi/ic_action_delete_note_icon.png new file mode 100644 index 000000000..883c2a786 Binary files /dev/null and b/folioreader/res/drawable-xxhdpi/ic_action_delete_note_icon.png differ diff --git a/folioreader/res/drawable-xxhdpi/ic_action_edit_icon.png b/folioreader/res/drawable-xxhdpi/ic_action_edit_icon.png new file mode 100644 index 000000000..17ebcf09b Binary files /dev/null and b/folioreader/res/drawable-xxhdpi/ic_action_edit_icon.png differ diff --git a/folioreader/res/drawable-xxhdpi/ic_action_fiber_manual_blue.png b/folioreader/res/drawable-xxhdpi/ic_action_fiber_manual_blue.png new file mode 100644 index 000000000..bf3490d41 Binary files /dev/null and b/folioreader/res/drawable-xxhdpi/ic_action_fiber_manual_blue.png differ diff --git a/folioreader/res/drawable-xxhdpi/ic_action_fiber_manual_green.png b/folioreader/res/drawable-xxhdpi/ic_action_fiber_manual_green.png new file mode 100644 index 000000000..c783bd83a Binary files /dev/null and b/folioreader/res/drawable-xxhdpi/ic_action_fiber_manual_green.png differ diff --git a/folioreader/res/drawable-xxhdpi/ic_action_fiber_manual_red.png b/folioreader/res/drawable-xxhdpi/ic_action_fiber_manual_red.png new file mode 100644 index 000000000..7925fb5a4 Binary files /dev/null and b/folioreader/res/drawable-xxhdpi/ic_action_fiber_manual_red.png differ diff --git a/folioreader/res/drawable-xxhdpi/ic_action_fiber_manual_yellow.png b/folioreader/res/drawable-xxhdpi/ic_action_fiber_manual_yellow.png new file mode 100644 index 000000000..d90b1f0ab Binary files /dev/null and b/folioreader/res/drawable-xxhdpi/ic_action_fiber_manual_yellow.png differ diff --git a/folioreader/res/drawable-xxhdpi/ic_action_file_copy.png b/folioreader/res/drawable-xxhdpi/ic_action_file_copy.png new file mode 100644 index 000000000..553d18d45 Binary files /dev/null and b/folioreader/res/drawable-xxhdpi/ic_action_file_copy.png differ diff --git a/folioreader/res/drawable-xxhdpi/ic_action_g_translate.png b/folioreader/res/drawable-xxhdpi/ic_action_g_translate.png new file mode 100644 index 000000000..19f7f7230 Binary files /dev/null and b/folioreader/res/drawable-xxhdpi/ic_action_g_translate.png differ diff --git a/folioreader/res/drawable-xxhdpi/ic_action_library_add.png b/folioreader/res/drawable-xxhdpi/ic_action_library_add.png new file mode 100644 index 000000000..1c67c68ba Binary files /dev/null and b/folioreader/res/drawable-xxhdpi/ic_action_library_add.png differ diff --git a/folioreader/res/drawable-xxhdpi/ic_action_share.png b/folioreader/res/drawable-xxhdpi/ic_action_share.png new file mode 100644 index 000000000..ed0c88705 Binary files /dev/null and b/folioreader/res/drawable-xxhdpi/ic_action_share.png differ diff --git a/folioreader/res/drawable-xxxhdpi/ic_action_define.png b/folioreader/res/drawable-xxxhdpi/ic_action_define.png new file mode 100644 index 000000000..db8b05b94 Binary files /dev/null and b/folioreader/res/drawable-xxxhdpi/ic_action_define.png differ diff --git a/folioreader/res/drawable-xxxhdpi/ic_action_delete_note_icon.png b/folioreader/res/drawable-xxxhdpi/ic_action_delete_note_icon.png new file mode 100644 index 000000000..893bca02a Binary files /dev/null and b/folioreader/res/drawable-xxxhdpi/ic_action_delete_note_icon.png differ diff --git a/folioreader/res/drawable-xxxhdpi/ic_action_edit_icon.png b/folioreader/res/drawable-xxxhdpi/ic_action_edit_icon.png new file mode 100644 index 000000000..2ad33a9f9 Binary files /dev/null and b/folioreader/res/drawable-xxxhdpi/ic_action_edit_icon.png differ diff --git a/folioreader/res/drawable-xxxhdpi/ic_action_fiber_manual_blue.png b/folioreader/res/drawable-xxxhdpi/ic_action_fiber_manual_blue.png new file mode 100644 index 000000000..76d232223 Binary files /dev/null and b/folioreader/res/drawable-xxxhdpi/ic_action_fiber_manual_blue.png differ diff --git a/folioreader/res/drawable-xxxhdpi/ic_action_fiber_manual_green.png b/folioreader/res/drawable-xxxhdpi/ic_action_fiber_manual_green.png new file mode 100644 index 000000000..8aa8a29d0 Binary files /dev/null and b/folioreader/res/drawable-xxxhdpi/ic_action_fiber_manual_green.png differ diff --git a/folioreader/res/drawable-xxxhdpi/ic_action_fiber_manual_red.png b/folioreader/res/drawable-xxxhdpi/ic_action_fiber_manual_red.png new file mode 100644 index 000000000..cf3cd5c2a Binary files /dev/null and b/folioreader/res/drawable-xxxhdpi/ic_action_fiber_manual_red.png differ diff --git a/folioreader/res/drawable-xxxhdpi/ic_action_fiber_manual_yellow.png b/folioreader/res/drawable-xxxhdpi/ic_action_fiber_manual_yellow.png new file mode 100644 index 000000000..b3152e4d8 Binary files /dev/null and b/folioreader/res/drawable-xxxhdpi/ic_action_fiber_manual_yellow.png differ diff --git a/folioreader/res/drawable-xxxhdpi/ic_action_file_copy.png b/folioreader/res/drawable-xxxhdpi/ic_action_file_copy.png new file mode 100644 index 000000000..f5306e4e6 Binary files /dev/null and b/folioreader/res/drawable-xxxhdpi/ic_action_file_copy.png differ diff --git a/folioreader/res/drawable-xxxhdpi/ic_action_g_translate.png b/folioreader/res/drawable-xxxhdpi/ic_action_g_translate.png new file mode 100644 index 000000000..031277377 Binary files /dev/null and b/folioreader/res/drawable-xxxhdpi/ic_action_g_translate.png differ diff --git a/folioreader/res/drawable-xxxhdpi/ic_action_library_add.png b/folioreader/res/drawable-xxxhdpi/ic_action_library_add.png new file mode 100644 index 000000000..13c561573 Binary files /dev/null and b/folioreader/res/drawable-xxxhdpi/ic_action_library_add.png differ diff --git a/folioreader/res/drawable-xxxhdpi/ic_action_share.png b/folioreader/res/drawable-xxxhdpi/ic_action_share.png new file mode 100644 index 000000000..3c7ee03f2 Binary files /dev/null and b/folioreader/res/drawable-xxxhdpi/ic_action_share.png differ diff --git a/folioreader/res/drawable/ic_close_green_24dp.xml b/folioreader/res/drawable/ic_close_green_24dp.xml index 62dfc837c..fb02a8edd 100644 --- a/folioreader/res/drawable/ic_close_green_24dp.xml +++ b/folioreader/res/drawable/ic_close_green_24dp.xml @@ -5,6 +5,6 @@ android:viewportWidth="24" android:viewportHeight="24"> \ No newline at end of file diff --git a/folioreader/res/drawable/ic_drawer.xml b/folioreader/res/drawable/ic_drawer.xml index d51676b75..fcff6da30 100644 --- a/folioreader/res/drawable/ic_drawer.xml +++ b/folioreader/res/drawable/ic_drawer.xml @@ -4,6 +4,6 @@ android:viewportWidth="24.0" android:viewportHeight="24.0"> diff --git a/folioreader/res/drawable/ic_search.xml b/folioreader/res/drawable/ic_search.xml index 2774870ad..e8b723935 100644 --- a/folioreader/res/drawable/ic_search.xml +++ b/folioreader/res/drawable/ic_search.xml @@ -5,6 +5,6 @@ android:viewportHeight="24.0" android:viewportWidth="24.0"> diff --git a/folioreader/res/drawable/icon_font.xml b/folioreader/res/drawable/icon_font.xml index f25b3bf10..cfacff5db 100644 --- a/folioreader/res/drawable/icon_font.xml +++ b/folioreader/res/drawable/icon_font.xml @@ -4,6 +4,6 @@ android:viewportHeight="24" android:viewportWidth="24"> \ No newline at end of file diff --git a/folioreader/res/drawable/man_speech_icon.xml b/folioreader/res/drawable/man_speech_icon.xml index 9c71ce2b0..4785a0cf1 100644 --- a/folioreader/res/drawable/man_speech_icon.xml +++ b/folioreader/res/drawable/man_speech_icon.xml @@ -4,9 +4,9 @@ android:viewportHeight="24.0" android:viewportWidth="24.0"> diff --git a/folioreader/res/drawable/note_edittext_background_blue_blur.xml b/folioreader/res/drawable/note_edittext_background_blue_blur.xml new file mode 100644 index 000000000..d827d0c49 --- /dev/null +++ b/folioreader/res/drawable/note_edittext_background_blue_blur.xml @@ -0,0 +1,9 @@ + + + + + + \ No newline at end of file diff --git a/folioreader/res/drawable/note_edittext_background_green_blur.xml b/folioreader/res/drawable/note_edittext_background_green_blur.xml new file mode 100644 index 000000000..18df44644 --- /dev/null +++ b/folioreader/res/drawable/note_edittext_background_green_blur.xml @@ -0,0 +1,9 @@ + + + + + + \ No newline at end of file diff --git a/folioreader/res/drawable/note_edittext_background_orange_blur.xml b/folioreader/res/drawable/note_edittext_background_orange_blur.xml new file mode 100644 index 000000000..c924a0fba --- /dev/null +++ b/folioreader/res/drawable/note_edittext_background_orange_blur.xml @@ -0,0 +1,9 @@ + + + + + + \ No newline at end of file diff --git a/folioreader/res/drawable/note_edittext_background.xml b/folioreader/res/drawable/note_edittext_background_red_blur.xml similarity index 85% rename from folioreader/res/drawable/note_edittext_background.xml rename to folioreader/res/drawable/note_edittext_background_red_blur.xml index 7dd4d8ee0..0456c68e3 100644 --- a/folioreader/res/drawable/note_edittext_background.xml +++ b/folioreader/res/drawable/note_edittext_background_red_blur.xml @@ -4,6 +4,6 @@ \ No newline at end of file diff --git a/folioreader/res/drawable/shape_highlight_yellow.xml b/folioreader/res/drawable/shape_highlight_orange.xml similarity index 79% rename from folioreader/res/drawable/shape_highlight_yellow.xml rename to folioreader/res/drawable/shape_highlight_orange.xml index 8219d4f8e..2d38ae8ad 100644 --- a/folioreader/res/drawable/shape_highlight_yellow.xml +++ b/folioreader/res/drawable/shape_highlight_orange.xml @@ -6,6 +6,6 @@ android:width="48dp" android:height="48dp" /> - + \ No newline at end of file diff --git a/folioreader/res/drawable/shape_highlight_pink.xml b/folioreader/res/drawable/shape_highlight_pink.xml index bbd5f6f07..516098bad 100644 --- a/folioreader/res/drawable/shape_highlight_pink.xml +++ b/folioreader/res/drawable/shape_highlight_pink.xml @@ -6,6 +6,6 @@ android:width="48dp" android:height="48dp" /> - + \ No newline at end of file diff --git a/folioreader/res/layout/activity_search.xml b/folioreader/res/layout/activity_search.xml index 8579a3602..13c294f7f 100644 --- a/folioreader/res/layout/activity_search.xml +++ b/folioreader/res/layout/activity_search.xml @@ -23,7 +23,7 @@ - - - - - - -