Skip to content

Commit

Permalink
Updated TextJustify-Android. Fixes #7. Updated README.
Browse files Browse the repository at this point in the history
Updated TextJustify Android Library to v2.0.5.
  • Loading branch information
khalid-hussain committed Jan 18, 2015
1 parent 1dc8f84 commit 3035b72
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ bookmarked.

# Credits
- [Ahmed El-Helw](http://twitter.com/ahmedre)
- [Ahmad Sabree](https://www.facebook.com/ahmad.sabree.5)
- [Ahmad Sabree](https://twitter.com/sabree01)
- [Azhar Ali](https://www.linkedin.com/pub/md-azhar-ali/90/251/140)
- [Abdul Majed Ahmed](https://www.facebook.com/abdulmajed.ahmed)
- [Muhammad Hussaini Zulkifli](https://www.facebook.com/the1375)
- [Hussaini Zulkifli](https://twitter.com/HussainiZul)
- [StackOverFlow Question: Custom Adapter for ListView](http://stackoverflow.com/questions/8166497/custom-adapter-for-list-view)
- [StackOverFlow Question: Default Font Set on Android](http://stackoverflow.com/questions/6809944/default-font-set-on-android)
- [Font Awesome CSS Library](http://fortawesome.github.io/Font-Awesome/)
Expand Down
2 changes: 1 addition & 1 deletion app/app.iml
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@
<orderEntry type="library" exported="" name="appcompat-v7-21.0.3" level="project" />
<orderEntry type="library" exported="" name="android-iconify-1.0.8" level="project" />
<orderEntry type="library" exported="" name="support-annotations-21.0.3" level="project" />
<orderEntry type="library" exported="" name="textjustify-android-2.0.4" level="project" />
<orderEntry type="library" exported="" name="nineoldandroids-2.4.0" level="project" />
<orderEntry type="library" exported="" name="textjustify-android-2.0.5" level="project" />
<orderEntry type="library" exported="" name="support-v4-21.0.3" level="project" />
<orderEntry type="library" exported="" name="cardview-v7-21.0.3" level="project" />
<orderEntry type="library" exported="" name="recyclerview-v7-21.0.3" level="project" />
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ dependencies {
compile 'com.android.support:recyclerview-v7:21.0.3'
compile 'com.android.support:support-v4:21.0.3'
compile 'com.joanzapata.android:android-iconify:1.0.8'
compile 'com.github.bluejamesbond:textjustify-android:2.0.4'
compile 'com.github.bluejamesbond:textjustify-android:2.0.5'
compile project(':vntnumberpickerpreference')
compile project(':vntfontlistpreference')
}
2 changes: 1 addition & 1 deletion app/src/main/java/adapters/DuaDetailAdapter.java
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public View getView(int position, View convertView, ViewGroup parent) {
holder.tvDuaArabic.setTextSize(prefArabicFontSize);

holder.tvDuaTranslation = (DocumentView) convertView.findViewById(R.id.txtDuaTranslation);
holder.tvDuaTranslation.getDocumentLayoutParams().setTextSize(prefOtherFontSize * 2);
holder.tvDuaTranslation.getDocumentLayoutParams().setTextSize(prefOtherFontSize);

holder.tvDuaReference = (TextView) convertView.findViewById(R.id.txtDuaReference);
holder.tvDuaReference.setTextSize(prefOtherFontSize);
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
Ahmed El-Helw (&lt;a href="http://twitter.com/ahmedre">@ahmedre&lt;/a>)&lt;br/>
Azhar Ali (&lt;a href="https://www.linkedin.com/pub/md-azhar-ali/90/251/140">LinkedIn&lt;/a>)&lt;br/>
Abdul Majed Ahmed (&lt;a href="https://www.facebook.com/abdulmajed.ahmed">Facebook&lt;/a>)&lt;br/>
Muhammad Hussaini Zulkifli (&lt;a href="https://www.facebook.com/the1375">Facebook&lt;/a>)&lt;br/>
Hussaini Zulkifli (&lt;a href="https://twitter.com/HussainiZul">@HussainiZulk&lt;/a>)&lt;br/>
Mohammad Khalid Hussain (&lt;a href="https://www.github.com/khalid.hussain">GitHub&lt;/a>)
&lt;br/>&lt;br/>

Expand All @@ -41,4 +41,4 @@
Ahmad Sabree (&lt;a href="https://twitter.com/sabree01">@sabree01&lt;/a>)&lt;br/></string>
<string name="title_activity_preferences">Settings</string>

</resources>
</resources>

0 comments on commit 3035b72

Please sign in to comment.