Android小程序-乐学成语游戏
Posted Vivinia_Vivinia
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android小程序-乐学成语游戏相关的知识,希望对你有一定的参考价值。
目标效果:
游戏页面有几个小游戏,因为时间原因只做了第一个猜成语,是用的选择题方式,十道题以内答对六题算闯关成功。
1.新建GameActivity.java页面和activity_game.xml页面,activity_game.xml作为显示游戏目录页面:
activity_game.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:background="@drawable/bg_ling"
android:orientation="vertical"
tools:context=".GameActivity" >
<TextView
android:id="@+id/tvGameGuess"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="50dp"
android:clickable="true"
android:onClick="gamePlay"
android:text="@string/tvGameGuess"
android:textColor="#000000"
android:textSize="23sp" />
<TextView
android:id="@+id/tvGameWrite"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="30dp"
android:clickable="true"
android:onClick="gamePlay"
android:text="@string/tvGameWrite"
android:textColor="#000000"
android:textSize="23sp" />
<TextView
android:id="@+id/tvGameConn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="30dp"
android:clickable="true"
android:onClick="gamePlay"
android:text="@string/tvGameConn"
android:textColor="#000000"
android:textSize="23sp" />
</LinearLayout>
以上是关于Android小程序-乐学成语游戏的主要内容,如果未能解决你的问题,请参考以下文章
Android乐学成语之TabHost介绍及使用Fragment 替换 TabActivity