Android Studio를 활용한 안드로이드 프로그래밍 P167 직접풀어보기 4-2


다음과 같은 화면을 XML로 코딩하라. (버튼2,텍스트뷰1,에디트텍스트)




XML코드

간단한 프로그램입니다.


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text='버튼1'
android:layout_margin="20dp"
android:background="#00ff00"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="30dp"
android:textSize="30sp"
android:text="여긴 텍스트뷰입니다."/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#0000FF"
android:layout_margin="30dp"/>
<Button
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_margin="30dp"
android:text="버튼2"/>
</LinearLayout>



'Android Studio를 활용한 안드로이드 프로그래밍' 카테고리의 다른 글

직접 풀어보기 5-5  (0) 2020.05.03
직접 풀어보기 5-4  (0) 2020.05.03
직접 풀어보기 5-3  (0) 2020.05.03
직접 풀어보기 5-2  (0) 2020.05.03
직접 풀어보기 4-3  (0) 2020.05.03

+ Recent posts