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

简介: Android项目猜纸牌游戏之一 界面设计和资源文件的设计

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

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

主界面

<RelativeLayout 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/backe"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >
    <ImageView
        android:id="@+id/ivcpu"
        android:layout_width="105dp"
        android:layout_height="150dp"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:src="@drawable/img16" />
    <ImageView
        android:id="@+id/ivcm"
        android:layout_width="105dp"
        android:layout_height="150dp"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_marginBottom="64dp"
        android:src="@drawable/img16" />
    <EditText
        android:id="@+id/edtcm"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:layout_alignBottom="@+id/ivcm"
        android:layout_toLeftOf="@+id/ivcpu"
        android:background="#00ff00"
        android:ems="10"
        android:inputType="number"
        android:textSize="40sp" >
        <requestFocus />
    </EditText>
    <TextView
        android:id="@+id/tvshow"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_above="@+id/ivcm"
        android:layout_alignLeft="@+id/ivcm"
        android:layout_alignTop="@+id/ivcpu"
        android:layout_toLeftOf="@+id/btnget"
        android:text="@string/show1"
        android:textColor="#ffffff"
        android:textSize="20sp" />
    <Button
        android:id="@+id/buttonok"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_above="@+id/edtcm"
        android:layout_alignLeft="@+id/edtcm"
        android:text="@string/ok" />
    <ListView
        android:id="@+id/lvcmsz"
        android:layout_width="80dp"
        android:layout_height="200dp"
        android:background="#ffffff"
        android:layout_alignTop="@+id/ivcm"
        android:layout_toRightOf="@+id/buttonok" >
    </ListView>
    <Button
        android:id="@+id/btnget"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/tvshow"
        android:layout_toLeftOf="@+id/lvcmsz"
        android:text="获取" />
</RelativeLayout>

调用图片xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/background"
     >
 <TextView
        android:id="@+id/tvshow"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:layout_marginTop="42dp"
        android:text="@string/show1"
        android:textSize="20sp" />
    <EditText
        android:id="@+id/edtcm"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:layout_alignLeft="@+id/ivcm"
        android:layout_below="@+id/ivcm"
        android:layout_marginTop="50dp"
        android:background="#00ff00"
        android:maxLength="2"
        android:ems="10"
        android:inputType="number"
        android:textSize="40sp" />
    <Button
        android:id="@+id/buttonok"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBottom="@+id/edtcm"
        android:layout_toRightOf="@+id/edtcm"
        android:text="@string/ok" />
    <Button
        android:id="@+id/btnget"
        android:layout_width="80dp"
        android:layout_height="80dp"
        android:layout_alignTop="@+id/ivcpu"
        android:layout_marginTop="27dp"
        android:layout_toRightOf="@+id/ivcm"
        android:background="@drawable/pk"
        android:text="PK"
        android:textColor="#ffff00" 
        android:textSize="70px"/>
    <ImageView
        android:id="@+id/ivcm"
        android:layout_width="105dp"
        android:layout_height="150dp"
        android:layout_alignLeft="@+id/tvshow"
        android:layout_alignTop="@+id/ivcpu"
        android:src="@drawable/img16" />
    <ImageView
        android:id="@+id/ivcpu"
        android:layout_width="105dp"
        android:layout_height="150dp"
        android:layout_below="@+id/tvshow"
        android:layout_marginTop="15dp"
        android:layout_toRightOf="@+id/btnget"
        android:src="@drawable/img16" />
</RelativeLayout>


排行榜.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/background"
     >
 <TextView
        android:id="@+id/tvshow"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:layout_marginTop="42dp"
        android:text="@string/show1"
        android:textSize="20sp" />
    <EditText
        android:id="@+id/edtcm"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:layout_alignLeft="@+id/ivcm"
        android:layout_below="@+id/ivcm"
        android:layout_marginTop="50dp"
        android:background="#00ff00"
        android:maxLength="2"
        android:ems="10"
        android:inputType="number"
        android:textSize="40sp" />
    <Button
        android:id="@+id/buttonok"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBottom="@+id/edtcm"
        android:layout_toRightOf="@+id/edtcm"
        android:text="@string/ok" />
    <Button
        android:id="@+id/btnget"
        android:layout_width="80dp"
        android:layout_height="80dp"
        android:layout_alignTop="@+id/ivcpu"
        android:layout_marginTop="27dp"
        android:layout_toRightOf="@+id/ivcm"
        android:background="@drawable/pk"
        android:text="PK"
        android:textColor="#ffff00" 
        android:textSize="70px"/>
    <ImageView
        android:id="@+id/ivcm"
        android:layout_width="105dp"
        android:layout_height="150dp"
        android:layout_alignLeft="@+id/tvshow"
        android:layout_alignTop="@+id/ivcpu"
        android:src="@drawable/img16" />
    <ImageView
        android:id="@+id/ivcpu"
        android:layout_width="105dp"
        android:layout_height="150dp"
        android:layout_below="@+id/tvshow"
        android:layout_marginTop="15dp"
        android:layout_toRightOf="@+id/btnget"
        android:src="@drawable/img16" />
</RelativeLayout>

保存信息.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:gravity="center"
    android:background="@drawable/backe"
     >
    <TextView 
         android:id="@+id/tvtishi"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:text="纸牌游戏!"
         android:textSize="30sp"
         android:textColor="#ffffff"
         />
       <EditText
         android:id="@+id/edtusename"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:hint="@string/tishi"
         android:maxLength="5"
         android:text=""  
         android:textColor="#ffffff"    
         />
       <Button 
         android:id="@+id/btnlogin"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:text="登陆"
         android:textColor="#ffffff"
           />
</LinearLayout>
目录
相关文章
|
1月前
|
Java Android开发 Swift
安卓与iOS开发对比:平台选择对项目成功的影响
【10月更文挑战第4天】在移动应用开发的世界中,选择合适的平台是至关重要的。本文将深入探讨安卓和iOS两大主流平台的开发环境、用户基础、市场份额和开发成本等方面的差异,并分析这些差异如何影响项目的最终成果。通过比较这两个平台的优势与挑战,开发者可以更好地决定哪个平台更适合他们的项目需求。
110 1
|
1月前
|
前端开发 JavaScript 测试技术
android做中大型项目完美的架构模式是什么?是MVVM吗?如果不是,是什么?
android做中大型项目完美的架构模式是什么?是MVVM吗?如果不是,是什么?
100 2
|
1月前
|
XML Java 数据库
安卓项目:app注册/登录界面设计
本文介绍了如何设计一个Android应用的注册/登录界面,包括布局文件的创建、登录和注册逻辑的实现,以及运行效果的展示。
140 0
安卓项目:app注册/登录界面设计
|
2月前
|
IDE Android开发 iOS开发
探索Android与iOS开发的差异:平台选择对项目成功的影响
【9月更文挑战第27天】在移动应用开发的世界中,Android和iOS是两个主要的操作系统平台。每个系统都有其独特的开发环境、工具和用户群体。本文将深入探讨这两个平台的关键差异点,并分析这些差异如何影响应用的性能、用户体验和最终的市场表现。通过对比分析,我们将揭示选择正确的开发平台对于确保项目成功的重要作用。
|
15天前
|
前端开发 JavaScript 测试技术
android做中大型项目完美的架构模式是什么?是MVVM吗?如果不是,是什么?
在 Android 开发中,选择合适的架构模式对于构建中大型项目至关重要。常见的架构模式有 MVVM、MVP、MVI、Clean Architecture 和 Flux/Redux。每种模式都有其优缺点和适用场景,例如 MVVM 适用于复杂 UI 状态和频繁更新,而 Clean Architecture 适合大型项目和多平台开发。选择合适的架构应考虑项目需求、团队熟悉度和可维护性。
43 6
|
25天前
|
前端开发 JavaScript 测试技术
Android适合构建中大型项目的架构模式全面对比
Android适合构建中大型项目的架构模式全面对比
42 2
|
2月前
|
Java Maven 开发工具
第一个安卓项目 | 中国象棋demo学习
本文是作者关于其第一个安卓项目——中国象棋demo的学习记录,展示了demo的运行结果、爬坑记录以及参考资料,包括解决Android Studio和maven相关问题的方法。
第一个安卓项目 | 中国象棋demo学习
|
1月前
|
编译器 Android开发
配置环境变量,使CMakeLists.txt可直接使用Android NDK工具链编译项目
配置环境变量,使CMakeLists.txt可直接使用Android NDK工具链编译项目
|
2月前
|
JavaScript 前端开发 Android开发
让Vite+Vue3项目在Android端离线打开(不需要起服务)
让Vite+Vue3项目在Android端离线打开(不需要起服务)
|
2月前
|
IDE 开发工具 Android开发
安卓与iOS开发对比:平台选择对项目成功的影响
【9月更文挑战第10天】在移动应用开发的世界中,选择正确的平台是至关重要的。本文将深入探讨安卓和iOS这两大主要移动操作系统的开发环境,通过比较它们的市场份额、开发工具、编程语言和用户群体等方面,为开发者提供一个清晰的指南。我们将分析这两个平台的优势和劣势,并讨论如何根据项目需求和目标受众来做出最佳选择。无论你是初学者还是有经验的开发者,这篇文章都将帮助你更好地理解每个平台的特性,并指导你做出明智的决策。