Issue
I am trying to build the android app and need to build a button with two images and some text .
here is the example image :
how can i build this button in android ? any help would be appreciated .
Solution
You can use something like this:
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:drawableLeft="@drawable/video_camera"
android:drawableRight="@drawable/right_arrow"
android:text="See a Medical\nDoctor Now"/>
Answered By - Shams Shafiq

0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.