[android 게임] 안드로이드로 같은 그림 게임 찾기!!

이것은 있다가 할 안드로이드 게임에서 필요한 이미지입니다~

특별히 필요한 것이 있으면 https://aries574.tistory.com/278#google_vignette –> 여기로 들어가서 찾아보시면 됩니다~ 파트1, 파트2로 나눠줘있으니 잘 보고 찾아보셔야 합니다~

-안드로이드 그림 찾기 게임소스


xmlns:app=”http://schemas.android.com/apk/res-auto”
xmlns:tools=”http://schemas.android.com/tools”
android:layout_width=”match_parent”
android:layout_height=”match_parent”
android:orientation=”vertical”
tools:context=”.MainActivity”>

android:id=”@+id/result_text”
android:layout_width=”match_parent”
android:layout_height=”wrap_content”
android:layout_marginTop=”10dp”
android:gravity=”center”
android:textSize=”35sp”
android:testStyle=”bold” />

android:layout_width=”match_parent”
android:layout_height=”wrap_content”
android:layout_marginTop=”20dp”
android:orientation=”vertical”>

android:layout_width=”match_parent”
android:layout_height=”wrap_content”
android:layout_marginTop=”20dp”
android:orientation=”vertical”>

android:layout_width=”match_parent”
android:layout_height=”wrap+content”
android:orientation=”horizontal”>

android:id=”@+id/imageBtn0″
android:layout_width=”0dp”
android:layout_height=”wrap_content”
android:layout_margin=”10dp”
android:layout_weight=”1″
android:background=”@android:color/white”
android:src=”@drawable/question” />

android:id=”@+id/imageBtn1″
….




이 그림찾기 안드로이드 게임소스는 MainAcitivity.java, activity_main.xml —> 이 두개 소스만 보면 되기때문에 다른 쪽은 안봐도 됩니다~

약간 소스코드 양이 많아서 다 적진 못했습니다~

2 thoughts on “[android 게임] 안드로이드로 같은 그림 게임 찾기!!”

Leave a Comment