Skip to content
This repository was archived by the owner on Mar 26, 2025. It is now read-only.

Commit 392e0b1

Browse files
committed
Update README
1 parent 4d9c0a4 commit 392e0b1

File tree

1 file changed

+43
-15
lines changed

1 file changed

+43
-15
lines changed

README.md

Lines changed: 43 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# AndroidAboutPage ![version](http://img.shields.io/badge/original-v1.0.6-brightgreen.svg?style=flat) [![NuGet](https://img.shields.io/nuget/v/AndroidAboutPage.svg?label=NuGet)](https://www.nuget.org/packages/AndroidAboutPage/)
1+
# AndroidAboutPage ![version](http://img.shields.io/badge/original-v1.2.1-brightgreen.svg?style=flat) [![NuGet](https://img.shields.io/nuget/v/AndroidAboutPage.svg?label=NuGet)](https://www.nuget.org/packages/AndroidAboutPage/)
22

33
Port of [android-about-page](https://github.com/medyo/android-about-page) for Xamarin.Android
44

@@ -12,13 +12,13 @@ This library allows to generate beautiful About Pages with less effort, it's ful
1212

1313
```csharp
1414
View aboutPage = new AboutPage(this)
15-
.IsRTL(false)
15+
.IsRtl(false)
1616
.SetImage(Resource.Drawable.dummy_image)
1717
.AddItem(versionElement)
1818
.AddItem(adsElement)
1919
.AddGroup("Connect with us")
2020
.AddEmail("[email protected]")
21-
.AddWebsite("http://medyo.github.io/")
21+
.AddWebsite("http://wcoder.github.io/")
2222
.AddFacebook("the.medy")
2323
.AddTwitter("medyo80")
2424
.AddYoutube("UCdPQtdWIsg7_pi4mrRu46vA")
@@ -32,14 +32,11 @@ View aboutPage = new AboutPage(this)
3232

3333
Grab the latest version from NuGet
3434

35-
> PM Install-Package AndroidAboutPage
35+
> Install-Package AndroidAboutPage
3636
3737
## Dependencies
3838

39-
* Xamarin.Android.Support.v4
4039
* Xamarin.Android.Support.v7.AppCompat
41-
* Xamarin.Android.Support.Vector.Drawable
42-
* Xamarin.Android.Support.Animated.Vector.Drawable
4340

4441
## Usage
4542
### 1. Add Description
@@ -54,7 +51,7 @@ SetImage(int)
5451
```
5552

5653
### 3. Add predefined Social network
57-
The library has already some predefined social networks like :
54+
The library has already some predefined social networks like :
5855

5956
* Facebook
6057
* Twitter
@@ -83,18 +80,49 @@ AddItem(versionElement)
8380
### 5. Available attributes for Element Class
8481

8582
| Function | Description |
86-
| ------------- |:-------------:| -----:|
87-
| string Title | Set title of the element|
88-
| int Color | Set color of the element|
89-
| int Icon | Set icon of the element|
90-
| string Value | Set Element value like Facebook ID|
91-
| string Tag | Set a unique tag value to the element|
92-
| Intent Intent | Set an intent to be called on `OnClick` |
83+
| ------------- |:------------------|
84+
| `string` Title | Set title of the element|
85+
| `int` IconTint | Set color of the element|
86+
| `int` IconDrawable | Set icon of the element|
87+
| `string` Value | Set Element value like Facebook ID|
88+
| `Intent` Intent | Set an intent to be called on `OnClick` |
89+
| `GravityFlags` Gravity | Set a unique tag value to the element|
90+
| `Action` ClickHandler | If `intent` isn't suitable for you need, implement your custom behaviour by overriding the click event |
9391

9492

9593
## Sample Project
9694
[sample](https://github.com/wcoder/AndroidAboutPage/tree/master/samples)
9795

96+
## Translations
97+
The library does supports the following languages :
98+
99+
* English (default)
100+
* German (by [vanniktech](https://github.com/vanniktech))
101+
* Italian (by [greenaddress](https://github.com/greenaddress))
102+
* Croatian (by [skmlcd](https://github.com/skmlcd))
103+
* Arabic (by [zecharyah](https://github.com/zecharyah))
104+
* Slovenian (by [skmlcd](https://github.com/skmlcd))
105+
* Ukrainian (by [NumezmaT](https://github.com/NumezmaT))
106+
* Russian (by [NumezmaT](https://github.com/NumezmaT))
107+
* Romanian (by [Vally79](https://github.com/Vally79))
108+
* Portuguese Brazil (by [rbaprado](https://github.com/rbaprado))
109+
* French (by [medyo](https://github.com/medyo))
110+
* Simplified Chinese (by [whiskeyfei](https://github.com/whiskeyfei))
111+
* Spanish (by [danramirez](https://github.com/danramirez))
112+
* Japanese (by [chibatching](https://github.com/chibatching))
113+
* Turkish (by [tekseker](https://github.com/tekseker))
114+
* Catalan (by [unxavi](https://github.com/unxavi))
115+
* Czech (by [semanticer](https://github.com/semanticer))
116+
* Hungarian (by [jbarat](https://github.com/jbarat))
117+
* Korean (by [Alfex4936](https://github.com/Alfex4936))
118+
* Swedish (by [Krillsson](https://github.com/Krillsson))
119+
* Polish (by [karmil32](https://github.com/karmil32))
120+
* Persian (by [mortezasun](https://github.com/mortezasun))
121+
* Traditional Chinese (by [ppcrong](https://github.com/ppcrong))
122+
* Serbian (by [ljmocic](https://github.com/ljmocic))
123+
* Greek (by [jvoyatz](https://github.com/jvoyatz))
124+
125+
Please make a Pull request to add a new language.
98126

99127
## License
100128

0 commit comments

Comments
 (0)