Skip to content

Commit

Permalink
Add translators to About
Browse files Browse the repository at this point in the history
  • Loading branch information
javiersantos committed Jul 17, 2015
1 parent b288444 commit 707324e
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 0 deletions.
Binary file added app/src/main/res/drawable/ic_italy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable/ic_poland.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
53 changes: 53 additions & 0 deletions app/src/main/res/layout/activity_about.xml
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,59 @@
android:layout_marginLeft="70dp"
android:layout_marginRight="30dp"/>
</android.support.v7.widget.CardView>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/about_googleplus"
android:orientation="horizontal"
android:weightSum="2">
<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_margin="5dp"
android:layout_width="0dp"
android:layout_height="40dp"
android:layout_weight="1"
card_view:cardCornerRadius="2dp">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:layout_marginLeft="10dp"
android:src="@drawable/ic_italy" />
<TextView
android:fontFamily="sans-serif-light"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Lucian Sipos"
android:textSize="15dp"
android:layout_gravity="center"
android:layout_marginLeft="20dp"/>
</android.support.v7.widget.CardView>
<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_margin="5dp"
android:layout_width="0dp"
android:layout_height="40dp"
android:layout_weight="1"
card_view:cardCornerRadius="2dp">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:layout_marginLeft="10dp"
android:src="@drawable/ic_poland" />
<TextView
android:fontFamily="sans-serif-light"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TykTak"
android:textSize="15dp"
android:layout_gravity="center"
android:layout_marginLeft="20dp" />
</android.support.v7.widget.CardView>
</LinearLayout>
</RelativeLayout>
</ScrollView>

Expand Down

0 comments on commit 707324e

Please sign in to comment.