Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- Dictionary
- matplotlib
- 반복문
- list
- count()
- function
- 최댓값
- hierarchical_clustering
- del
- len()
- sklearn
- pandas
- string
- elbow method
- append()
- DataAccess
- Python
- numpy
- Machine Learning
- dendrogram
- data
- nan
- analizer
- insert()
- 최솟값
- wcss
- DataFrame
- 분류 결과표
- IN
- 덴드로그램
Archives
- Today
- Total
개발공부
[Android Studio] TextView / Button 의 속성들 본문
// 레이아웃의 너비 높이 속성
android:layout_width="match_parent"
android:layout_height="wrap_content"
// 위의 공간
android:layout_marginTop="20dp"
// 아래의 공간
android:layout_marginBottom="20dp"
// 배경색
android:background="#E38282"
// 글자의 위치
android:gravity="center"
// 글자 아래의 공간
android:paddingBottom="15dp"
// 내용
android:text="Hello"
// 글자색
android:textColor="#F1E5E5"
// 글자 사이즈
android:textSize="24sp"
// visibility 여부
android:visibility="gone"
'Android' 카테고리의 다른 글
| [Android Studio] TextView의 setText 함수 특징 (문자열만 가능) (0) | 2022.07.08 |
|---|---|
| [Android Studio] EditText 속성들 (0) | 2022.07.08 |
| [Android Studio] 오픈소스 라이브러리를 안드로이드 스튜디오에 적용하는 법 (0) | 2022.07.08 |
| [Android Studio] 버튼을 클릭하면, 동작하는 코드를 작성하는 방법 (0) | 2022.07.07 |
| [Android Studio] 화면의 UI 위젯들을, 엑티비티에서 가져다 사용하기 위한 방법 (0) | 2022.07.07 |