본문 바로가기

안드로이드43

안드로이드 ImageView Toast http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context=".MainActivity"> //이미지 정렬 가운데 right(오른쪽) left(왼쪽) //이미지 ------------------------------------------------------------------------------------------------------------------ package com.example... 2022. 1. 12.
안드로이드 Intent 화면전환 http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> --------------------------------------------------------------------------------------------------------------- http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/tools" andr.. 2022. 1. 6.
안드로이드 텍스트뷰 글자크기 클자색상 레이아웃 android:layout_width="match_parent" //부모의 크기만큼 android:layout_height="wrap_content" //밑 android:text="Hello world"의 폰트 크기만큼 감싸라 android:text="Hello world"/> 텍스트 뷰가 2개 이상이고 레이아웃이 LinearLayout이라면 http://schemas.android.com/apk/res/android" 그냥은 TextView가 2개가 나오지 않고 2개가 나오기 위해서는 orientation을 지정해줘야 함 android:orientation="vertical" 방향 세로 android:orientation="horizontal" 방향 가로 android:textColor="#00000.. 2022. 1. 3.