Adding button Icons

This commit is contained in:
Roumen Georgiev 2017-09-29 09:40:11 +03:00 committed by GitHub
parent ba54dacffb
commit 92e2008692

View file

@ -608,27 +608,40 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:orientation="horizontal"> android:orientation="horizontal">
<Button <Button
android:id="@+id/danar_viewprofile" android:id="@+id/danar_viewprofile"
android:layout_width="match_parent" style="@style/ButtonSmallFontStyle"
android:layout_height="wrap_content" android:layout_width="match_parent"
android:layout_weight="1" android:layout_height="wrap_content"
android:text="@string/danar_viewprofile" /> android:layout_weight="1"
android:drawableTop="@drawable/icon_danarprofile"
android:paddingLeft="0dp"
android:paddingRight="0dp"
android:text="@string/danar_viewprofile"/>
<Button <Button
android:id="@+id/danar_history" android:id="@+id/danar_history"
style="@style/ButtonSmallFontStyle"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_weight="1" android:layout_weight="1"
android:drawableTop="@drawable/icon_danarhistory"
android:paddingLeft="0dp"
android:paddingRight="0dp"
android:text="@string/danar_history" /> android:text="@string/danar_history" />
</LinearLayout> </LinearLayout>
<Button <Button
android:id="@+id/danar_stats" android:id="@+id/danar_stats"
style="@style/ButtonSmallFontStyle"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_weight="1" android:layout_weight="1"
android:drawableTop="@drawable/icon_danarstats"
android:paddingLeft="0dp"
android:paddingRight="0dp"
android:text="@string/danar_stats" /> android:text="@string/danar_stats" />
</LinearLayout> </LinearLayout>
</ScrollView> </ScrollView>