Created
December 12, 2014 23:29
-
-
Save px-amaac/7da69358a74e091236b2 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<CheckBox | |
android:id="@+id/selected_check_box" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:button="@drawable/default_checkbox_btn" | |
android:text="Select" | |
android:layout_marginLeft="4dp" | |
android:layout_marginRight="32dp" | |
android:layout_alignParentRight="true" | |
android:layout_centerVertical="true"/> |
This file contains hidden or 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
<shape xmlns:android="http://schemas.android.com/apk/res/android" | |
android:shape="rectangle"> | |
<solid android:color="@color/white"/> | |
<corners android:radius="4dp"/> | |
<size android:height="32dp" | |
android:width="74dp"/> | |
</shape> |
This file contains hidden or 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
<shape xmlns:android="http://schemas.android.com/apk/res/android" | |
android:shape="rectangle"> | |
<solid android:color="@color/primary_orange"/> | |
<corners android:radius="4dp"/> | |
<size android:height="32dp" | |
android:width="74dp"/> | |
</shape> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment