2010. 4. 22. 13:40ㆍ언어/Android
일단 화면은 다음과 같다.
역시 하고나면 간단하다.. 이미지 위에 뭔가 올릴수 있는 API가 있을것이라고 생각했지만.. 결국 XML의 구성이었던가..
XML의 코딩은 다음과 같다
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<FrameLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView
android:id="@+id/backgroundimage"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/test"
/>
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
<Button
android:id="@+id/"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<Button
android:id="@+id/"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<Button
android:id="@+id/"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<Button
android:id="@+id/"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>
</FrameLayout>
</LinearLayout>
어렵군하 어려워~~
'언어 > Android' 카테고리의 다른 글
Tstore에 내가 만든 프로그램이 메인에 올라오다. (0) | 2010.05.28 |
---|---|
Android 공부 2일차입니다. (0) | 2010.05.07 |
Android 공부 1일차입니다. (0) | 2010.05.04 |
Android 기초 (0) | 2010.05.04 |
Android 와 XML (0) | 2010.04.16 |