일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- html multimedia
- mac terminal command
- html charset
- relative path
- 토큰경제
- #CallByAddress
- #C++ 연산자함수오버로딩
- #1차원배열
- #3차원배열
- #binary
- 하이퍼레저패브릭
- #C++ has~a
- #자바상속#자바이즈어#is~a
- #다차원포인터
- html youtube
- html video
- html object
- docker example
- html plug-in
- git flow
- #bubbleSort
- hyperledger transaction
- html5 new tag
- border-box
- html id
- html code
- #android activity
- #성적관리프로그램
- #JAVASCRIPT
- #2차원배열
Archives
- Today
- Total
A sentimental robot
TableLayout 본문
<TableLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#ff0000"
android:stretchColumns="0,1,2"> <!--- 행 0, 1, 2 번째가 width 를 동등하게 배분 -->
<TableRow>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
</TableRow>
<TableRow>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
</TableRow>
<TableRow>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
android:layout_span="3"/> <!-- 버튼 3개의 자리 차지-->
</TableRow>
</TableLayout>
'Android Studio' 카테고리의 다른 글
GridLayout (0) | 2018.02.05 |
---|---|
배경색 자동으로 바꾸기 (0) | 2018.02.01 |
Transmission (0) | 2018.01.31 |
Activity (0) | 2018.01.31 |
Activity transition/intent (0) | 2018.01.30 |