Skip to content

Commit

Permalink
use the standard dp margin & padding references
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyScherzinger committed Jan 6, 2016
1 parent 3f70348 commit d006a66
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions res/layout/whats_new_activity.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@
android:layout_height="0dp"
android:layout_weight="10"
android:weightSum="3"
android:layout_marginBottom="16dp"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp">
android:layout_marginBottom="@dimen/standard_margin"
android:layout_marginLeft="@dimen/standard_margin"
android:layout_marginRight="@dimen/standard_margin">

<android.support.v7.widget.AppCompatButton
android:id="@+id/skip"
Expand Down Expand Up @@ -63,7 +63,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:padding="16dp"/>
android:padding="@dimen/standard_padding"/>
</LinearLayout>
</LinearLayout>

Expand Down
2 changes: 1 addition & 1 deletion res/layout/whats_new_element.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
android:id="@+id/whatsNewText"
android:layout_margin="15dp"
android:layout_margin="@dimen/standard_margin"
android:layout_gravity="center_horizontal"/>
</LinearLayout>

0 comments on commit d006a66

Please sign in to comment.