Created
July 25, 2013 17:28
-
-
Save shikajiro/6081947 to your computer and use it in GitHub Desktop.
2013/07/25の宿題レイアウト
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
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:tools="http://schemas.android.com/tools" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:orientation="vertical" | |
tools:context=".MainActivity" > | |
<Button | |
android:layout_width="200dp" | |
android:layout_height="wrap_content" | |
android:layout_gravity="center" | |
android:text="red" /> | |
<Button | |
android:layout_width="200dp" | |
android:layout_height="wrap_content" | |
android:layout_gravity="center" | |
android:text="blue" /> | |
<Button | |
android:layout_width="200dp" | |
android:layout_height="wrap_content" | |
android:layout_gravity="center" | |
android:text="yellow" /> | |
<LinearLayout | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:layout_gravity="center" | |
android:orientation="horizontal" > | |
<Button | |
android:layout_width="0dp" | |
android:layout_height="wrap_content" | |
android:layout_weight="1" | |
android:text="white" /> | |
<Button | |
android:layout_width="0dp" | |
android:layout_height="wrap_content" | |
android:layout_weight="1" | |
android:text="black" /> | |
</LinearLayout> | |
</LinearLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment