반응형
TextView
html 의 p태그와 비슷하며, 텍스트를 입력할 수 있다
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="소개팅 앱!!"
/>
match_parent : 부모요소의 길이
예제를 기준으로, textView 상위 부모의 width 를 따라간다
wrap_content : 해당요소의 길이
예제를 기준으로, text 요소의 height를 입력한다
LinearLayout
여러 요소를 줄세우는 div
세로, 가로 가능
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintBottom_toBottomOf="parent"
tools:layout_editor_absoluteX="0dp">
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/mainColor"
android:layout_margin="10dp"
android:textColor="@color/white"
android:text="Login" />
</LinearLayout>
orientation = vertical : 세로정렬
728x90
'Mobile > Android' 카테고리의 다른 글
eclipse jar import 하는방법 (class not found될때) (0) | 2024.01.19 |
---|---|
이클립스 Android Dx Error1, Failed to convert to Dalvik format 에러 (0) | 2024.01.18 |
안드로이드 스튜디오 Activity 생성하기 (0) | 2024.01.08 |
안드로이드 스튜디오 Error running 'app' Processes ~~ are not found. Aborting session. (0) | 2024.01.05 |
CardStackView import 안될때 (0) | 2024.01.03 |