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
| <svg height="400" width="400"> | |
| <rect x="50" y="50" width="100" height="150" rx="10" ry="10" style="stroke: #c40000; stroke-width: 3; fill: #a8a8a8;"/> | |
| </svg> |
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
| <html> | |
| <head> | |
| <title>SVG Example</title> | |
| </head> | |
| <body> | |
| <svg height="250" width="400"> | |
| <rect x="50" y="50" width="100" height="150" style="stroke: #c40000; stroke-width: 3; fill: #ececec;"/> | |
| </svg> | |
| </body> | |
| </html> |
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
| <html> | |
| <head> | |
| <title>SVG Example</title> | |
| </head> | |
| <body> | |
| <svg height="250" width="400"> | |
| <line x1="50" y1="50" x2="200" y2="200" style="stroke: #c40000; stroke-width: 3;"/> | |
| </svg> | |
| </body> | |
| </html> |
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
| <svg height="225" width="400"> | |
| <text x="50" y="50" fill="#cc0e00" stroke="#047ff2" transform="rotate(35,50,50)" style="font-size: 40; font-family:Verdana">HELLO WORLD</text> | |
| </svg> |
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
| <html> | |
| <head> | |
| <title>SVG Example</title> | |
| </head> | |
| <body> | |
| <svg height="200" width="400"> | |
| <text x="50" y="50" fill="#cc0e00" stroke="#047ff2" transform="rotate(35)" style="font-size: 40; font-family:Verdana">Hello World</text> | |
| </svg> | |
| </body> | |
| </html> |
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
| <html> | |
| <head> | |
| <title>SVG Example</title> | |
| </head> | |
| <body> | |
| <svg height="200" width="400"> | |
| <text x="50" y="50" fill="#cc0e00" style="font-size: 40; font-family:Verdana">HELLO WORLD</text> | |
| </svg> | |
| </body> | |
| </html> |
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
| android:id="@+id/simpleTableLayout" | |
| android:layout_width="match_parent" | |
| android:layout_height="match_parent" | |
| android:stretchColumns="1"> <!-- stretch the second column of the layout--> | |
| <!-- first row of the table layout--> | |
| <TableRow |
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
| <Button android:id="@+id/buttonA" ... /> | |
| <Button android:id="@+id/buttonB" ... | |
| app:layout_constraintCircle="@+id/buttonA" | |
| app:layout_constraintCircleRadius="100dp" | |
| app:layout_constraintCircleAngle="45" /> |
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
| <android.support.constraint.ConstraintLayout ...> | |
| <Button android:id="@+id/button" ... | |
| app:layout_constraintHorizontal_bias="0.3" | |
| app:layout_constraintLeft_toLeftOf="parent" | |
| app:layout_constraintRight_toRightOf="parent/> | |
| </> |
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
| <android.support.constraint.ConstraintLayout ...> | |
| <Button android:id="@+id/button" ... | |
| app:layout_constraintLeft_toLeftOf="parent" | |
| app:layout_constraintRight_toRightOf="parent/> | |
| </android.support.constraint.ConstraintLayout> |