Last active
June 28, 2018 02:08
-
-
Save guuilp/0db72feddac7d3f3df93ea7de767eccc to your computer and use it in GitHub Desktop.
Constraint Layout DOJO - Views without constraints (STEP 3)
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
<android.support.constraint.Group | |
android:id="@+id/group_retweet" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
app:constraint_referenced_ids="retweet_top, retweet_user"/> |
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
<ImageView | |
android:id="@+id/retweet_top" | |
android:layout_width="15dp" | |
android:layout_height="15dp" | |
android:src="@drawable/ic_retweet" | |
android:tint="@color/gray"/> |
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
<TextView | |
android:id="@+id/retweet_user" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
tools:text="Nicolas Roard retweetou" | |
android:textColor="@color/gray"/> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment