猜纸牌游戏之一 界面设计和资源文件的设计

举报
tea_year 发表于 2021/12/29 23:03:16 2021/12/29
【摘要】 视频课:https://edu.csdn.net/course/play/7621 本游戏实现安卓手机下的猜纸牌游戏,由电脑和玩家一起玩,进行随机扑克的猜测,得分! 一:定义字符串的资源文件 <?xml version="1.0" encoding="utf-8"?><resources> <str...

视频课:https://edu.csdn.net/course/play/7621

本游戏实现安卓手机下的猜纸牌游戏,由电脑和玩家一起玩,进行随机扑克的猜测,得分!

一:定义字符串的资源文件


  
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  3. <string name="app_name">纸牌游戏</string>
  4. <string name="action_settings">Settings</string>
  5. <string name="hello_world">Hello world!</string>
  6. <string name="show1">请单机获取按钮,来得到你的牌,并通过输入你现有的牌的数字并点击确定来进行游戏。每张纸牌只能使用1次!</string>
  7. <string name="tishi">请输入你的用户名!</string>
  8. <string name="ok">确定</string>
  9. <string name="gameguize"></string>
  10. </resources>

主界面


  
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@drawable/backe"
  6. android:paddingBottom="@dimen/activity_vertical_margin"
  7. android:paddingLeft="@dimen/activity_horizontal_margin"
  8. android:paddingRight="@dimen/activity_horizontal_margin"
  9. android:paddingTop="@dimen/activity_vertical_margin"
  10. tools:context=".MainActivity" >
  11. <ImageView
  12. android:id="@+id/ivcpu"
  13. android:layout_width="105dp"
  14. android:layout_height="150dp"
  15. android:layout_alignParentRight="true"
  16. android:layout_alignParentTop="true"
  17. android:src="@drawable/img16" />
  18. <ImageView
  19. android:id="@+id/ivcm"
  20. android:layout_width="105dp"
  21. android:layout_height="150dp"
  22. android:layout_alignParentBottom="true"
  23. android:layout_alignParentLeft="true"
  24. android:layout_marginBottom="64dp"
  25. android:src="@drawable/img16" />
  26. <EditText
  27. android:id="@+id/edtcm"
  28. android:layout_width="50dp"
  29. android:layout_height="50dp"
  30. android:layout_alignBottom="@+id/ivcm"
  31. android:layout_toLeftOf="@+id/ivcpu"
  32. android:background="#00ff00"
  33. android:ems="10"
  34. android:inputType="number"
  35. android:textSize="40sp" >
  36. <requestFocus />
  37. </EditText>
  38. <TextView
  39. android:id="@+id/tvshow"
  40. android:layout_width="wrap_content"
  41. android:layout_height="wrap_content"
  42. android:layout_above="@+id/ivcm"
  43. android:layout_alignLeft="@+id/ivcm"
  44. android:layout_alignTop="@+id/ivcpu"
  45. android:layout_toLeftOf="@+id/btnget"
  46. android:text="@string/show1"
  47. android:textColor="#ffffff"
  48. android:textSize="20sp" />
  49. <Button
  50. android:id="@+id/buttonok"
  51. android:layout_width="wrap_content"
  52. android:layout_height="wrap_content"
  53. android:layout_above="@+id/edtcm"
  54. android:layout_alignLeft="@+id/edtcm"
  55. android:text="@string/ok" />
  56. <ListView
  57. android:id="@+id/lvcmsz"
  58. android:layout_width="80dp"
  59. android:layout_height="200dp"
  60. android:background="#ffffff"
  61. android:layout_alignTop="@+id/ivcm"
  62. android:layout_toRightOf="@+id/buttonok" >
  63. </ListView>
  64. <Button
  65. android:id="@+id/btnget"
  66. android:layout_width="wrap_content"
  67. android:layout_height="wrap_content"
  68. android:layout_below="@+id/tvshow"
  69. android:layout_toLeftOf="@+id/lvcmsz"
  70. android:text="获取" />
  71. </RelativeLayout>


  
  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:background="@drawable/background"
  6. >
  7. <TextView
  8. android:id="@+id/tvshow"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:layout_alignParentRight="true"
  12. android:layout_alignParentTop="true"
  13. android:layout_marginTop="42dp"
  14. android:text="@string/show1"
  15. android:textSize="20sp" />
  16. <EditText
  17. android:id="@+id/edtcm"
  18. android:layout_width="50dp"
  19. android:layout_height="50dp"
  20. android:layout_alignLeft="@+id/ivcm"
  21. android:layout_below="@+id/ivcm"
  22. android:layout_marginTop="50dp"
  23. android:background="#00ff00"
  24. android:maxLength="2"
  25. android:ems="10"
  26. android:inputType="number"
  27. android:textSize="40sp" />
  28. <Button
  29. android:id="@+id/buttonok"
  30. android:layout_width="wrap_content"
  31. android:layout_height="wrap_content"
  32. android:layout_alignBottom="@+id/edtcm"
  33. android:layout_toRightOf="@+id/edtcm"
  34. android:text="@string/ok" />
  35. <Button
  36. android:id="@+id/btnget"
  37. android:layout_width="80dp"
  38. android:layout_height="80dp"
  39. android:layout_alignTop="@+id/ivcpu"
  40. android:layout_marginTop="27dp"
  41. android:layout_toRightOf="@+id/ivcm"
  42. android:background="@drawable/pk"
  43. android:text="PK"
  44. android:textColor="#ffff00"
  45. android:textSize="70px"/>
  46. <ImageView
  47. android:id="@+id/ivcm"
  48. android:layout_width="105dp"
  49. android:layout_height="150dp"
  50. android:layout_alignLeft="@+id/tvshow"
  51. android:layout_alignTop="@+id/ivcpu"
  52. android:src="@drawable/img16" />
  53. <ImageView
  54. android:id="@+id/ivcpu"
  55. android:layout_width="105dp"
  56. android:layout_height="150dp"
  57. android:layout_below="@+id/tvshow"
  58. android:layout_marginTop="15dp"
  59. android:layout_toRightOf="@+id/btnget"
  60. android:src="@drawable/img16" />
  61. </RelativeLayout>


  
  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:background="@drawable/background"
  6. >
  7. <TextView
  8. android:id="@+id/tvshow"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:layout_alignParentRight="true"
  12. android:layout_alignParentTop="true"
  13. android:layout_marginTop="42dp"
  14. android:text="@string/show1"
  15. android:textSize="20sp" />
  16. <EditText
  17. android:id="@+id/edtcm"
  18. android:layout_width="50dp"
  19. android:layout_height="50dp"
  20. android:layout_alignLeft="@+id/ivcm"
  21. android:layout_below="@+id/ivcm"
  22. android:layout_marginTop="50dp"
  23. android:background="#00ff00"
  24. android:maxLength="2"
  25. android:ems="10"
  26. android:inputType="number"
  27. android:textSize="40sp" />
  28. <Button
  29. android:id="@+id/buttonok"
  30. android:layout_width="wrap_content"
  31. android:layout_height="wrap_content"
  32. android:layout_alignBottom="@+id/edtcm"
  33. android:layout_toRightOf="@+id/edtcm"
  34. android:text="@string/ok" />
  35. <Button
  36. android:id="@+id/btnget"
  37. android:layout_width="80dp"
  38. android:layout_height="80dp"
  39. android:layout_alignTop="@+id/ivcpu"
  40. android:layout_marginTop="27dp"
  41. android:layout_toRightOf="@+id/ivcm"
  42. android:background="@drawable/pk"
  43. android:text="PK"
  44. android:textColor="#ffff00"
  45. android:textSize="70px"/>
  46. <ImageView
  47. android:id="@+id/ivcm"
  48. android:layout_width="105dp"
  49. android:layout_height="150dp"
  50. android:layout_alignLeft="@+id/tvshow"
  51. android:layout_alignTop="@+id/ivcpu"
  52. android:src="@drawable/img16" />
  53. <ImageView
  54. android:id="@+id/ivcpu"
  55. android:layout_width="105dp"
  56. android:layout_height="150dp"
  57. android:layout_below="@+id/tvshow"
  58. android:layout_marginTop="15dp"
  59. android:layout_toRightOf="@+id/btnget"
  60. android:src="@drawable/img16" />
  61. </RelativeLayout>


  
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical"
  6. android:gravity="center"
  7. android:background="@drawable/backe"
  8. >
  9. <TextView
  10. android:id="@+id/tvtishi"
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:text="纸牌游戏!"
  14. android:textSize="30sp"
  15. android:textColor="#ffffff"
  16. />
  17. <EditText
  18. android:id="@+id/edtusename"
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:hint="@string/tishi"
  22. android:maxLength="5"
  23. android:text=""
  24. android:textColor="#ffffff"
  25. />
  26. <Button
  27. android:id="@+id/btnlogin"
  28. android:layout_width="wrap_content"
  29. android:layout_height="wrap_content"
  30. android:text="登陆"
  31. android:textColor="#ffffff"
  32. />
  33. </LinearLayout>



文章来源: aaaedu.blog.csdn.net,作者:tea_year,版权归原作者所有,如需转载,请联系作者。

原文链接:aaaedu.blog.csdn.net/article/details/51737167

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。