반응형
layout에서 textView를 그린 후 xml 파일과 java 파일을 다음과 같이 코딩한다.
xml 파일
<TextView
android:id="@+id/textView1"
android:layout_width="360dp"
android:layout_height="60dp"
android:text=""
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
android:layout_marginTop="8dp" />
java 파일
TextView textview1;
protected void onCreate(Bundle savedInstanceState) {
textview1 = (TextView) findViewById(R.id.textView1);
textview1.setText("Hello");
}
# 버턴 사용법
반응형
'컴퓨터공학 > 안드로이드' 카테고리의 다른 글
[안드로이드 스튜디오] Button을 누를 때 Button 색 변경 (0) | 2017.08.20 |
---|---|
자신의 스마트폰 와이파이 IP 확인하는 법 (0) | 2017.08.20 |
[안드로이드 스튜디오] 버턴 소문자 표시하기 (0) | 2017.08.20 |
[안드로이드 스튜디오] 버턴(Button) 사용법 (0) | 2017.08.20 |
[안드로이드 스튜디오] 진동(Vibrator) 기능 구현 (0) | 2017.08.20 |
댓글