-
Notifications
You must be signed in to change notification settings - Fork 892
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
2,211 additions
and
995 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:layout_width = "fill_parent" | ||
android:layout_height = "fill_parent" | ||
android:orientation = "vertical" | ||
android:layout_gravity = "center"> | ||
<TextView | ||
android:id="@+id/txtPageNotFound" | ||
android:text="@string/pageLoading" | ||
android:visibility="gone" | ||
android:layout_width="fill_parent" | ||
android:layout_height="fill_parent" | ||
android:gravity = "center" | ||
android:textSize="16sp" | ||
android:textColor="@android:color/black" | ||
android:background="#FFF4CB" /> | ||
<ScrollView | ||
android:id = "@+id/page_scroller" | ||
android:layout_width = "wrap_content" | ||
android:layout_height = "wrap_content" | ||
android:background = "@android:color/black" | ||
android:fillViewport="true"> | ||
<ImageView | ||
android:id = "@+id/page_image" | ||
android:background="#FFF4CB" | ||
android:layout_width = "wrap_content" | ||
android:layout_height = "wrap_content"/> | ||
</ScrollView> | ||
</LinearLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:layout_width = "fill_parent" | ||
android:layout_height = "fill_parent" | ||
android:orientation = "vertical" | ||
android:layout_gravity = "center"> | ||
<TextView | ||
android:id="@+id/txtPageNotFound" | ||
android:text="@string/pageLoading" | ||
android:visibility="gone" | ||
android:layout_width="fill_parent" | ||
android:layout_height="fill_parent" | ||
android:gravity = "center" | ||
android:textSize="16sp" | ||
android:textColor="@android:color/black" | ||
android:background="#FFF4CB" /> | ||
<ImageView | ||
android:id = "@+id/page_image" | ||
android:background="#FFF4CB" | ||
android:layout_width = "wrap_content" | ||
android:layout_height = "wrap_content" /> | ||
</LinearLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,20 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<com.quran.labs.androidquran.widgets.GalleryFriendlyScrollView | ||
xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/pageScrollView" | ||
android:layout_width="fill_parent" android:layout_height="wrap_content"> | ||
<TextView android:background="#FFF4CB" android:textColor="#000000" | ||
android:layout_width="fill_parent" android:layout_height="fill_parent" | ||
android:textAppearance="?android:attr/textAppearanceSmall" android:id="@+id/translationText" | ||
android:padding="5dip" /> | ||
</com.quran.labs.androidquran.widgets.GalleryFriendlyScrollView> | ||
<LinearLayout | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:layout_width = "fill_parent" | ||
android:layout_height = "fill_parent" | ||
android:orientation = "vertical" | ||
android:layout_gravity = "center"> | ||
<ScrollView | ||
android:id = "@+id/page_scroller" | ||
android:layout_width = "wrap_content" | ||
android:layout_height = "wrap_content" | ||
android:background = "@android:color/black" | ||
android:fillViewport="true"> | ||
<TextView android:background="#FFF4CB" android:textColor="#000000" | ||
android:layout_width="fill_parent" android:layout_height="fill_parent" | ||
android:textAppearance="?android:attr/textAppearanceSmall" | ||
android:id="@+id/translationText" | ||
android:padding="5dip" /> | ||
</ScrollView> | ||
</LinearLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<resources> | ||
<declare-styleable name="QuranPageCurlView"> | ||
<attr name="enableDebugMode" format="boolean" /> | ||
<attr name="curlSpeed" format="integer" /> | ||
<attr name="updateRate" format="integer" /> | ||
<attr name="initialEdgeOffset" format="integer" /> | ||
<attr name="backgroundColor" format="color" /> | ||
<attr name="curlMode" format="integer"/> | ||
</declare-styleable> | ||
|
||
<declare-styleable name="SlidingPanel"> | ||
<attr name="speed" format="integer" /> | ||
<attr name="targetHeight" format="dimension" /> | ||
<attr name="isRTL" format="boolean" /> | ||
</declare-styleable> | ||
|
||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
<string name="translationsNeeded">Need to download translation!</string> | ||
<string name="app_name">Quran Android</string> | ||
<string name="pageNotFound">Page not found.</string> | ||
<string name="pageLoading">Page Loading...</string> | ||
<string name="downloadPrompt_title">Download Required Files?</string> | ||
<string name="downloadPrompt">For optimal performance, some files must be | ||
downloaded to the sd card. | ||
|
@@ -41,16 +42,17 @@ | |
<string name="email_subject">Feedback</string> | ||
<string name="email_to">[email protected]</string> | ||
<string name="aboutUs">Quran Android is a free, open source Quran | ||
application for Android. The images used are from the quran.com | ||
project, and the data used in the translations and Arabic comes from | ||
tanzil.net. graphics by @somaiagabr. | ||
application for Android. The images used are from the quran.com | ||
project, and the data used in the translations and Arabic comes from | ||
tanzil.net. | ||
\n\nCredits: | ||
\n @wnafee - page flip animation (based on android-page-curl project) | ||
\n @hams_rrr - arabic support for non-arabic phones | ||
\n @neo_4583 - arabic reshaper project | ||
\n @somaiagabr - graphics | ||
\n\nNew features in this release: | ||
\n- Enhanced Navigation. | ||
\n- Arabic support (if your device does not support Arabic). | ||
\n- New translations added: French, German, Urdu, Spanish, Indonesian, | ||
Turkish and Malay Translations. | ||
\n- Al Tafsir Al Mouyassar. (Added with translations) | ||
\n- Search translations. (Soon we will introduce Arabic search) | ||
\n- Awesome page flip animation (thanks @wnafee). | ||
\n- Minor bugfixes. | ||
\n\nUpcoming features include: | ||
\n- Recitation. | ||
\nAnd more.. | ||
|
@@ -68,9 +70,9 @@ | |
\n- Adjust translation text size to your preference via Settings. | ||
\n- Initial search implementation allows you to search the active translation | ||
via the search button. | ||
\n- On tapping the center of the screen and you will find the page bookmarker | ||
on the top left corner. | ||
tap on the bookmarker to toggle the page bookmark state. | ||
\n- On tapping the center of the screen and you will find the page bookmark | ||
option in the top left corner. | ||
tap on the bookmark button to toggle the page bookmark state. | ||
\n- You can add as many bookmarks as you\'d like. | ||
\n- The application remembers the last page you were reading and displays it when you restart the app. | ||
\n- Don\'t forget to check out the settings.</string> | ||
|
Oops, something went wrong.