Created
June 28, 2018 02:08
-
-
Save guuilp/1a1d372048040f6dcdabf807e57a35cc to your computer and use it in GitHub Desktop.
Constraint Layout DOJO - Views without constraints (STEP 2)
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
<ImageView | |
android:id="@+id/comment" | |
android:layout_width="21dp" | |
android:layout_height="21dp" | |
android:layout_marginTop="12dp" | |
android:src="@drawable/ic_comment" | |
android:tint="@color/gray"/> |
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
<ImageView | |
android:id="@+id/favorite" | |
android:layout_width="21dp" | |
android:layout_height="21dp" | |
android:src="@drawable/ic_favorite" | |
android:tint="@color/gray"/> |
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
<ImageView | |
android:id="@+id/retweet" | |
android:layout_width="21dp" | |
android:layout_height="21dp" | |
android:src="@drawable/ic_retweet" | |
android:tint="@color/gray"/> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment