当前位置:   article > 正文

【安卓学习笔记】Android Studio第7课——ImageView与小游戏练习_android studio猜拳游戏

android studio猜拳游戏

综合了之前学习的内容,做了一款很LOW的猜拳游戏,先上图:

以上就是所用到的一些东西包括了RadioGroup、TextView、EditView、Button,在之前的基础上添加了一个ImageView。先简单介绍下ImageView,很好理解,其实就是图片的显示。

  1. <ImageView
  2. android:id="@+id/L6_image1"
  3. android:layout_width="100dp"
  4. android:layout_height="100dp"
  5. android:src="@drawable/pic"
  6. android:scaleType="fitCenter"
  7. android:layout_below="@+id/textLable"
  8. android:layout_alignParentLeft="true"/>

原理想简单一点是这样的,在Activity中首先添加一个ImageView控件,并且设定好所占屏幕的大小,这里就以宽高100dp为例,其次就是需要把一个图片放置在这个控件里面,这个图片是实现准备好的,一般png格式最好,然后拷贝到drawable里面去,所以在src引用的时候就有了@drawable,后面的pic是图片在drawable中的名字。然后就是一个很重要scaleType了,这个直接反映了这个图片的呈现形式,比如适应控件缩放、居中缩放、填充等等,这里就用到了一个fitCenter,英译过来也不知道叫什么好,暂且就叫适应居中缩放把,就这么个差不多的意思。然后是位置,位置这里用到的是相对布局(Relativelayout)。

最后把所有的控件都丢上去之后,就可以编写activity的代码了。总体的说下思路:

第一步:声明控件。

第二步:用findByid找到相对应的控件,当然这里在xml中需要先对控件命名。

第三步:编写监听器,并复写里面的监听器函数。

第四步:把对应的监听器绑定到对应的控件上。

那以上就是四个大的步骤。接下来详细说下第三步的实现过程:

浏览全局,需要设置的监听器总共有三个,两个RadioGroup和一个Button。

在RadioGroup的监听器里面,获取Group中哪一个RadioButton被选中,并把选中的记录下来,为了方便我直接设置了两个字符串类型的全局变量,分别对应两个Group中的RadioButton。

在Button点击监听器里面,第一步是得到判断两个比较并判断两个字符串里面的内容,进而得到最终的结果,结果有三中情况。同时获取两个EditText中的姓名,然后输出给显示的textView就行了。

需要注意的点,在判断字符串是不是空最终用了长度去判断,这样是可以用的而== null 或者==“”都不好使,当然查到也可以用isEmpty()等方式。为什么要判断,这里程序给在判定两个用户姓名为空的时候,会提示“请输入姓名”,而不会直接把结果显示出来。

其次就是判断字符串相等了,开始的时候用==来判断字符串完全相等,但是因为很多原因会导致不好用或者不方便,比如一个标点写错了什么的,最终选用contains方法,具体的方法是  字符串.constains("所包含的字符")。

就是这些了,贴上代码:

XML:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:padding="50dp">
  6. <TextView
  7. android:id="@+id/textLable"
  8. android:layout_width="wrap_content"
  9. android:layout_height="wrap_content"
  10. android:text="猜拳游戏"
  11. android:textSize="20sp"
  12. android:textColor="@color/colorAccent"
  13. android:gravity="center_horizontal"
  14. android:layout_centerHorizontal="true"
  15. android:paddingBottom="20dp"/>
  16. <ImageView
  17. android:id="@+id/L6_image1"
  18. android:layout_width="100dp"
  19. android:layout_height="100dp"
  20. android:src="@drawable/pic"
  21. android:scaleType="fitCenter"
  22. android:layout_below="@+id/textLable"
  23. android:layout_alignParentLeft="true"/>
  24. <EditText
  25. android:id="@+id/L6_edit1"
  26. android:layout_width="wrap_content"
  27. android:layout_height="wrap_content"
  28. android:layout_below="@+id/L6_image1"
  29. android:layout_alignRight="@+id/L6_image1"
  30. android:layout_alignLeft="@+id/L6_image1"
  31. android:hint="姓名"/>
  32. <ImageView
  33. android:id="@+id/L6_image2"
  34. android:layout_width="100dp"
  35. android:layout_height="100dp"
  36. android:src="@drawable/pic"
  37. android:scaleType="fitCenter"
  38. android:layout_alignBottom="@+id/L6_image1"
  39. android:layout_alignParentRight="true"/>
  40. <EditText
  41. android:id="@+id/L6_edit2"
  42. android:layout_width="wrap_content"
  43. android:layout_height="wrap_content"
  44. android:layout_below="@+id/L6_image2"
  45. android:layout_alignLeft="@+id/L6_image2"
  46. android:layout_alignRight="@+id/L6_image2"
  47. android:hint="姓名"/>
  48. <RadioGroup
  49. android:id="@+id/L6_radioGroup1"
  50. android:layout_height="wrap_content"
  51. android:layout_width="wrap_content"
  52. android:layout_below="@+id/L6_edit1"
  53. android:paddingLeft="20dp"
  54. android:paddingTop="20dp">
  55. <RadioButton
  56. android:id="@+id/L6_g1_radiobt1"
  57. android:layout_width="wrap_content"
  58. android:layout_height="wrap_content"
  59. android:text="石头"/>
  60. <RadioButton
  61. android:id="@+id/L6_g1_radiobt2"
  62. android:layout_width="wrap_content"
  63. android:layout_height="wrap_content"
  64. android:text="剪刀"/>
  65. <RadioButton
  66. android:id="@+id/L6_g1_radiobt3"
  67. android:layout_width="wrap_content"
  68. android:layout_height="wrap_content"
  69. android:text="布"/>
  70. </RadioGroup>
  71. <RadioGroup
  72. android:layout_width="wrap_content"
  73. android:layout_height="wrap_content"
  74. android:id="@+id/L6_radioGroup2"
  75. android:layout_below="@+id/L6_edit2"
  76. android:paddingTop="20dp"
  77. android:layout_alignRight="@+id/L6_image2"
  78. android:paddingRight="20dp">
  79. <RadioButton
  80. android:id="@+id/L6_g2_radiobt1"
  81. android:layout_width="wrap_content"
  82. android:layout_height="wrap_content"
  83. android:text="石头"/>
  84. <RadioButton
  85. android:id="@+id/L6_g2_radiobt2"
  86. android:layout_width="wrap_content"
  87. android:layout_height="wrap_content"
  88. android:text="剪刀"/>
  89. <RadioButton
  90. android:id="@+id/L6_g2_radiobt3"
  91. android:layout_width="wrap_content"
  92. android:layout_height="wrap_content"
  93. android:text="布"/>
  94. </RadioGroup>
  95. <Button
  96. android:id="@+id/L6_buttonOK"
  97. android:layout_width="wrap_content"
  98. android:layout_height="wrap_content"
  99. android:text="确定"
  100. android:textSize="20sp"
  101. android:layout_below="@+id/L6_radioGroup1"
  102. android:layout_centerHorizontal="true"/>
  103. <TextView
  104. android:id="@+id/L6_textResult"
  105. android:layout_width="wrap_content"
  106. android:layout_height="wrap_content"
  107. android:layout_below="@+id/L6_buttonOK"
  108. android:paddingTop="20sp"
  109. android:text="测试结果"
  110. android:textColor="@color/colorPrimaryDark"
  111. android:textSize="20sp"
  112. android:layout_centerHorizontal="true"/>
  113. </RelativeLayout>

Activity:

  1. package com.example.urien.secondapp;
  2. import android.os.Bundle;
  3. import android.support.v7.app.AppCompatActivity;
  4. import android.view.View;
  5. import android.widget.Button;
  6. import android.widget.EditText;
  7. import android.widget.RadioButton;
  8. import android.widget.RadioGroup;
  9. import android.widget.TextView;
  10. import android.widget.Toast;
  11. public class Lesson6_Activity extends AppCompatActivity {
  12. //1.声明要用到的控件
  13. private RadioGroup radioGroup1;
  14. private RadioGroup radioGroup2;
  15. private RadioButton g1_radio1;
  16. private RadioButton g1_radio2;
  17. private RadioButton g1_radio3;
  18. private RadioButton g2_radio1;
  19. private RadioButton g2_radio2;
  20. private RadioButton g2_radio3;
  21. private Button buttonOk;
  22. private TextView textView;
  23. private EditText editText1;
  24. private EditText editText2;
  25. private String str_result1 = "石头";
  26. private String str_result2 = "石头";
  27. @Override
  28. protected void onCreate(Bundle savedInstanceState) {
  29. super.onCreate(savedInstanceState);
  30. setContentView(R.layout.activity_lesson6_);
  31. // textView.setText("测试结果");
  32. //2.找到相对应的控件
  33. _FindView();
  34. //3.设置监听器
  35. radioGroup1.setOnCheckedChangeListener(new _RadioGroupListener1());
  36. radioGroup2.setOnCheckedChangeListener(new _RadioGroupListener2());
  37. buttonOk.setOnClickListener(new _ButtonClickListener());
  38. }
  39. private void _FindView(){
  40. radioGroup1 = findViewById(R.id.L6_radioGroup1);
  41. radioGroup2 = findViewById(R.id.L6_radioGroup2);
  42. g1_radio1 = findViewById(R.id.L6_g1_radiobt1);
  43. g1_radio2 = findViewById(R.id.L6_g1_radiobt2);
  44. g1_radio3 = findViewById(R.id.L6_g1_radiobt3);
  45. g2_radio1 = findViewById(R.id.L6_g2_radiobt1);
  46. g2_radio2 = findViewById(R.id.L6_g2_radiobt2);
  47. g2_radio3 = findViewById(R.id.L6_g2_radiobt3);
  48. buttonOk = findViewById(R.id.L6_buttonOK);
  49. textView = findViewById(R.id.L6_textResult);
  50. editText1 = findViewById(R.id.L6_edit1);
  51. editText2 = findViewById(R.id.L6_edit2);
  52. //默认选择一个,不然在没有选择的情况下会闪退
  53. g1_radio1.setChecked(true);
  54. g2_radio1.setChecked(true);
  55. }
  56. //RadioGroup1监听函数
  57. class _RadioGroupListener1 implements RadioGroup.OnCheckedChangeListener{
  58. @Override
  59. public void onCheckedChanged(RadioGroup group, int checkedId) {
  60. if(g1_radio1.isChecked()) str_result1 = "石头";
  61. else if(g1_radio2.isChecked()) str_result1 = "剪刀";
  62. else if(g1_radio3.isChecked()) str_result1 = "布";
  63. }
  64. }
  65. //RadioGroup2监听函数
  66. class _RadioGroupListener2 implements RadioGroup.OnCheckedChangeListener{
  67. @Override
  68. public void onCheckedChanged(RadioGroup group, int checkedId) {
  69. if(g2_radio1.isChecked()) str_result2 = "石头";
  70. else if(g2_radio2.isChecked()) str_result2 = "剪刀";
  71. else if(g2_radio3.isChecked()) str_result2 = "布";
  72. }
  73. }
  74. //按键监听函数
  75. class _ButtonClickListener implements View.OnClickListener{
  76. @Override
  77. public void onClick(View v) {
  78. String result = null;
  79. if(str_result1 == "石头"){
  80. if(str_result2 == "石头") result = "打平手!";
  81. else if(str_result2 == "剪刀") result = "A赢了!";
  82. else if(str_result2 == "布") result = "B赢了!";
  83. }
  84. else if(str_result1 == "剪刀") {
  85. if (str_result2 == "石头") result = "B赢了!";
  86. else if (str_result2 == "剪刀") result = "打平手!";
  87. else if (str_result2 == "布") result = "A赢了!";
  88. }
  89. else if(str_result1 == "布"){
  90. if (str_result2 == "石头") result = "A赢了!";
  91. else if (str_result2 == "剪刀") result = "B赢了!";
  92. else if (str_result2 == "布") result = "打平手!";
  93. }
  94. String UserA = editText1.getText().toString();
  95. String UserB = editText2.getText().toString();
  96. String winner = null;
  97. System.out.println("UserName = " + UserA + ",UserNameB = " + UserB + ",winner = " + winner);
  98. //判断有没有正确的输入用户名
  99. //if(UserA == null || UserB == null)
  100. //if(UserA == "" && UserB == "" )
  101. //用上面两个方法行不通都不好用
  102. //所以换成通过判断字符串长度来判定字符串为空
  103. if(UserA.length() == 0 || UserB.length()==0) {
  104. System.out.println("还没有输入姓名");
  105. Toast.makeText(Lesson6_Activity.this,"请输入姓名",Toast.LENGTH_LONG).show();
  106. }
  107. else {
  108. // if(result == "A赢了!") winner = editText1.getText().toString();
  109. // else if(result == "B赢了!") winner = editText2.getText().toString();
  110. //用下面contains文本包含更方便快捷 也不容易出错
  111. if (result.contains("A")) winner = UserA + " 赢了";
  112. else if (result.contains("B")) winner = UserB + "赢了";
  113. else winner = "打平手!";
  114. textView.setText(winner);
  115. System.out.println(winner);
  116. }
  117. //
  118. }
  119. }
  120. }
By Urien 2018年5月15日 16:45:31
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/474112
推荐阅读
相关标签
  

闽ICP备14008679号