Created
September 27, 2018 23:09
-
-
Save bubbleguuum/47eceb482d563de7a5372c97a0820da6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:tools="http://schemas.android.com/tools" | |
android:id="@id/container" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:layout_gravity="center" | |
android:orientation="horizontal" | |
android:paddingBottom="10dip" | |
android:paddingLeft="10dip" | |
android:paddingRight="10dip" | |
android:paddingTop="10dip" > | |
<ImageView | |
android:id="@+id/icon" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:layout_gravity="center_vertical" | |
tools:ignore="ContentDescription" > | |
</ImageView> | |
<TextView | |
android:id="@+id/text" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:layout_gravity="center_vertical" | |
android:gravity="center_vertical" | |
android:paddingLeft="15dip" | |
android:textAppearance="?android:attr/textAppearanceLarge" | |
android:textColor="@android:color/primary_text_dark" /> | |
</LinearLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment