`
XiangdongLee
  • 浏览: 91197 次
  • 性别: Icon_minigender_1
  • 来自: 长沙
社区版块
存档分类
最新评论

【攻克Android (6)】事件

阅读更多
本文围绕以下两个部分展开:

一、“办公自动化”案例
二、“BMI(体重指数)”案例

附  补充代码






一、“办公自动化”案例

        实现以下效果:



        1. 在 styles.xml(v21) 中,实现状态栏变蓝。

 <?xml version="1.0" encoding="utf-8"?>  
 <resources>  
 <!--隐藏标题栏-->  
 <style name="AppTheme" parent="android:Theme.Material.Light.NoActionBar">  
   <item name="android:colorPrimaryDark">@android:color/holo_blue_dark</item>  
   <item name="android:colorPrimary">@android:color/holo_blue_light</item>  
 </style>  
 </resources>


        2. 在 strings.xml 中,定义字符串。

 <resources>  
   <string name="app_name">Event</string>  
   
   <string name="oa">办公自动化</string>  
   <string name="phone_hint">请输入手机号</string>  
   <string name="password_hint">请输入密码</string>  
   <string name="cb_password">显示密码</string>  
   <string name="btn_login">登录</string>  
   <string name="forget_password">忘记密码</string>  
   
   <string name="action_settings">Settings</string>  
 </resources>


        3. 在主界面(activity_main.xml) 中,设计布局。

 <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"  
   
                 tools:context=".MainActivity">  
   
   <TextView  
       android:id="@+id/tvOA"  
       android:text="@string/oa"  
       android:gravity="center"  
       android:textSize="30sp"  
       android:textColor="@android:color/white"  
       android:background="@android:color/holo_blue_light"  
       android:layout_width="match_parent"  
       android:layout_height="150dp"/>  
   <RelativeLayout  
       android:layout_width="match_parent"  
       android:layout_height="wrap_content"  
       android:layout_below="@+id/tvOA"  
       android:paddingLeft="@dimen/activity_horizontal_margin"  
       android:paddingRight="@dimen/activity_horizontal_margin"  
       android:paddingTop="@dimen/activity_vertical_margin"  
       android:paddingBottom="@dimen/activity_vertical_margin">  
     <EditText  
         android:id="@+id/txtPhone"  
         android:layout_width="match_parent"  
         android:layout_height="wrap_content"  
         android:hint="@string/phone_hint"  
         android:inputType="phone"  
         android:maxLength="11"/>  
   
     <EditText  
         android:id="@+id/txtPassword"  
         android:layout_width="match_parent"  
         android:layout_height="wrap_content"  
         android:layout_below="@+id/txtPhone"  
         android:hint="@string/password_hint"  
         android:inputType="textPassword"/>  
       
     <CheckBox  
         android:id="@+id/cbPassword"  
         android:layout_width="wrap_content"  
         android:layout_height="wrap_content"  
         android:text="@string/cb_password"  
         android:layout_below="@+id/txtPassword"/>  
   
     <Button  
         android:id="@+id/btnLogin"  
         android:layout_width="wrap_content"  
         android:layout_height="wrap_content"  
         android:layout_below="@+id/txtPassword"  
         android:layout_alignParentRight="true"  
         android:onClick="onClick"  
         android:text="@string/btn_login"/>  
   
     <Button  
         android:id="@+id/btnForgetPassword"  
         android:layout_width="wrap_content"  
         android:layout_height="wrap_content"  
         android:layout_below="@+id/btnLogin"  
         android:layout_alignParentRight="true"  
         android:onClick="onClick"  
         android:text="@string/forget_password"  
         style="@android:style/Widget.Material.Button.Borderless"/>  
   
   </RelativeLayout>  
   
 </RelativeLayout>


        4. 在主活动(MainActivity) 中,写事件。

 package com.xiangdong.event;  
  
 import android.app.Activity;  
 import android.os.Bundle;  
 import android.text.method.HideReturnsTransformationMethod;  
 import android.text.method.PasswordTransformationMethod;  
 import android.view.Menu;  
 import android.view.MenuItem;  
 import android.view.View;  
 import android.widget.CheckBox;  
 import android.widget.CompoundButton;  
 import android.widget.EditText;  
 import android.widget.Toast;  
   
   
 public class MainActivity extends Activity {  
     // 1. 声明控件/声明变量 (定义3个即可。输入手机号、输入密码、显示密码)(登录和忘记密码,在代码中写)
     private EditText txtPhone;  
     private EditText txtPassword;  
     private CheckBox cbPassword;  
   
     @Override  
     protected void onCreate(Bundle savedInstanceState) {  
         super.onCreate(savedInstanceState);  
         setContentView(R.layout.activity_main);  
   
         // 2. 初始化控件  
         txtPhone = (EditText) findViewById(R.id.txtPhone);  
         txtPassword = (EditText) findViewById(R.id.txtPassword);  
         cbPassword = (CheckBox) findViewById(R.id.cbPassword);  
   
         // 3. 注册 CheckBox 状态改变的事件(选中:显示密码 或 未选中:隐藏密码)  
         cbPassword.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {  
             @Override  
             public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { 
                 // 事件处理代码  
                 if(isChecked){  
                     // 如果选中则显示密码 (隐藏星号)  
                     txtPassword.setTransformationMethod(  
                             HideReturnsTransformationMethod.getInstance());  
                 } else {  
                     // 否则隐藏密码 (密码转换成星号)  
                     txtPassword.setTransformationMethod(  
                             PasswordTransformationMethod.getInstance()  
                     );  
                 }  
             }  
         });  
     }  
     // 按钮事件(点击事件)  
     public void onClick(View view){  
         //不同的按钮匹配不同的事件。可以用switch,也可以用if-else  
         switch (view.getId()){  
             case R.id.btnLogin:  
                 //登录 流程  
                 String phone = txtPhone.getText().toString();  
                 String password = txtPassword.getText().toString();  
                 //格式化输出值 (好处:当值多的时候,不用使用“ ”+的形式)  
                 String text = String.format("Phone:%s\nPassword:%s",phone,password);  
                 Toast.makeText(this,text,Toast.LENGTH_SHORT).show();  
                 break;  
             case R.id.btnForgetPassword:  
                 //忘记密码 流程  
                 break;  
         }  
     }  
   
     @Override  
     public boolean onCreateOptionsMenu(Menu menu) {  
         // Inflate the menu; this adds items to the action bar if it is present.  
         getMenuInflater().inflate(R.menu.menu_main, menu);  
         return true;  
     }  
   
     @Override  
     public boolean onOptionsItemSelected(MenuItem item) {  
         // Handle action bar item clicks here. The action bar will  
         // automatically handle clicks on the Home/Up button, so long  
         // as you specify a parent activity in AndroidManifest.xml.  
         int id = item.getItemId();  
   
         //noinspection SimplifiableIfStatement  
         if (id == R.id.action_settings) {  
             return true;  
         }  
   
         return super.onOptionsItemSelected(item);  
     }  
 }


二、“BMI(体重指数)”案例

        实现以下效果:



        1. 在 styles.xml(v21) 中,实现状态栏变蓝。

        2. 在 strings.xml 中,定义字符串。

 <resources>  
   <string name="app_name">Bmi</string>  
   
   <string name="action_settings">Settings</string>  
   <string name="bmi">BMI(体重指数)</string>  
   <string name="male">男</string>  
   <string name="female">女</string>  
   <string name="calWeight">计算标准体重</string>  
   <string name="standWeight">标准体重:</string>  
   <string name="scope">体重的合理范围:</string>  
   <string name="weight_hint">输入您的体重(kg)</string>  
   <string name="height_hint">输入您的身高(cm)</string>  
   <string name="about">关于</string>  
   <string name="aboutContent" formatted="false">  
         世界卫生组织计算标准体重的方法:\n\n  
         男性:(身高cm - 80) × 70% = 标准体重\n  
         女性:(身高cm - 70) × 60% = 标准体重\n\n\n  
         标准体重正负 10% 为正常体重\n  
         标准体重正负 10% ~ 20% 为体重过重或过轻\n  
         标准体重正负 20% 以上为肥胖或体重不足  
   </string>  
 </resources>


        3. 在主界面(activity_main.xml) 中,设计布局。

 <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"  
                 tools:context=".MainActivity">  
   
   <TextView  
       android:id="@+id/tvBmi"  
       android:text="@string/bmi"  
       android:gravity="center"  
       android:textSize="30sp"  
       android:textColor="@android:color/white"  
       android:background="@android:color/holo_blue_light"  
       android:layout_width="match_parent"  
       android:layout_height="100dp"/>  
   <RelativeLayout  
       android:layout_width="match_parent"  
       android:layout_height="wrap_content"  
       android:layout_below="@+id/tvBmi"  
       android:paddingLeft="@dimen/activity_horizontal_margin"  
       android:paddingRight="@dimen/activity_horizontal_margin"  
       android:paddingTop="@dimen/activity_vertical_margin"  
       android:paddingBottom="@dimen/activity_vertical_margin">  
   
     <RadioGroup  
         android:id="@+id/sexGroup"  
         android:layout_width="match_parent"  
         android:layout_height="wrap_content"  
         android:orientation="horizontal">  
   
       <RadioButton  
           android:id="@+id/rbMale"  
           android:layout_width="wrap_content"  
           android:layout_height="wrap_content"  
           android:layout_weight="1"  
           android:checked="true"  
           android:text="@string/male"/>  
   
       <RadioButton  
           android:id="@+id/rbFemale"  
           android:layout_width="wrap_content"  
           android:layout_height="wrap_content"  
           android:layout_weight="1"  
           android:text="@string/female"/>  
     </RadioGroup>  
   
     <EditText  
         android:id="@+id/txtHeight"  
         android:layout_width="match_parent"  
         android:layout_height="wrap_content"  
         android:layout_below="@+id/sexGroup"  
         android:hint="@string/height_hint"  
         android:inputType="number"/>  
   
     <EditText  
         android:id="@+id/txtWeight"  
         android:layout_width="match_parent"  
         android:layout_height="wrap_content"  
         android:layout_below="@+id/txtHeight"  
         android:inputType="numberDecimal"  
         android:hint="@string/weight_hint"/>  
   
     <Button  
         android:id="@+id/btnCalWeight"  
         android:layout_width="wrap_content"  
         android:layout_height="wrap_content"  
         android:layout_below="@+id/txtWeight"  
         android:onClick="onClick"  
         android:text="@string/calWeight"/>  
   
     <Button  
         android:id="@+id/btnAbout"  
         android:layout_width="wrap_content"  
         android:layout_height="wrap_content"  
         android:layout_below="@+id/txtWeight"  
         android:layout_toRightOf="@+id/btnCalWeight"  
         android:onClick="onClick"  
         android:text="@string/about"/>  
   
     <TextView  
         android:id="@+id/tvScope"  
         android:layout_width="wrap_content"  
         android:layout_height="wrap_content"  
         android:layout_below="@+id/btnCalWeight"  
         android:text="@string/scope"  
         android:visibility="gone"/>  
   
     <TextView  
         android:id="@+id/tvAboutContent"  
         android:layout_width="wrap_content"  
         android:layout_height="wrap_content"  
         android:layout_alignParentBottom="true"  
         android:layout_centerHorizontal="true"  
         android:text="@string/aboutContent"  
         android:visibility="gone"/>  
   
   </RelativeLayout>  
 
 </RelativeLayout>


        4. 在主活动(MainActivity) 中,写事件。

 package com.xiangdong.bmi;  
   
 import android.app.Activity;  
 import android.graphics.Color;  
 import android.os.Bundle;  
 import android.view.Menu;  
 import android.view.MenuItem;  
 import android.view.View;  
 import android.widget.EditText;  
 import android.widget.RadioButton;  
 import android.widget.TextView;  
 import android.widget.Toast;  
   
   
 public class MainActivity extends Activity {  
   
     @Override  
     protected void onCreate(Bundle savedInstanceState) {  
         super.onCreate(savedInstanceState);  
         setContentView(R.layout.activity_main);  
     }  
   
     public void onClick(View view) {  
         switch (view.getId()) {  
             case R.id.btnCalWeight:  
                 String sheight = this.getEditText(R.id.txtHeight);  
                 String sweight = this.getEditText(R.id.txtWeight);  
   
                 // 验证 输入的性别/身高 是否有效  
                 if (sheight == null || sheight.trim().length() == 0) {  
                     Toast.makeText(this, R.string.height_hint, Toast.LENGTH_SHORT).show();  
                     return;  
                 } else if (sweight == null || sweight.trim().length() == 0) {  
                     sweight = "0";  
                 }  
   
                 // System.out.println(sex + " " + sheight + " " + sweight);  
   
                 int cm = 80;  
                 double cmPer = 0.7;  
                 RadioButton rbFemale = (RadioButton) findViewById(R.id.rbFemale);  
                 if (rbFemale.isChecked()) {  
                     cm = 70;  
                     cmPer = 0.6;  
                 }  
   
                 int height = Integer.parseInt(sheight);  
                 double weight = Double.parseDouble(sweight);  
   
                 // 计算标准体重  
                 double standWeight = (height - cm) * cmPer;  
                 double lowWeight = standWeight - standWeight * 0.1;  
                 double hightWeight = standWeight + standWeight * 0.1;  
   
                 TextView tvScope = (TextView) findViewById(R.id.tvScope);  
                 String tvtext = "标准体重:" + String.valueOf(standWeight) + "\n体重的合理范围:" + String.valueOf(lowWeight) + "~"  
                        + String.valueOf(hightWeight);  
   
                 // 弹出体重的提示信息  
                 String text = "";  
                 int color = 0;  
                 if (weight >= lowWeight && weight <= hightWeight) {  
                     text = "亲,是标准体重.继续保持哦...";  
                     color = Color.GREEN;  
                     showMessage(text);  
                 } else if (weight >= (standWeight + standWeight * 0.11)  
                         && weight <= (standWeight + standWeight * 0.2)) {  
                     text = "亲,体重过重...";  
                     color = Color.YELLOW;  
                     showMessage(text);  
                 } else if (weight <= (standWeight - standWeight * 0.11)  
                         && weight >= (standWeight - standWeight * 0.20)) {  
                     text = "亲,体重过轻...";  
                     color = Color.YELLOW;  
                     showMessage(text);  
                 } else if (weight > (standWeight + standWeight * 0.2)) {  
                     text = "亲,肥胖...要减肥啦..";  
                     color = Color.RED;  
                     showMessage(text);  
                 } else if (weight < (standWeight - standWeight * 0.2)) {  
                     text = "亲,太瘦...要多吃啦..";  
                     color = Color.RED;  
                     showMessage(text);  
                 }  
   
                 tvScope.setVisibility(View.VISIBLE);  
                 tvScope.setText(tvtext + "\n" + text);  
                 tvScope.setTextColor(color);  
                 break;  
             case R.id.btnAbout:  
                 TextView tvAboutContent = (TextView) findViewById(R.id.tvAboutContent);  
                 if (tvAboutContent.getVisibility() == View.VISIBLE) {  
                     // 设置控件隐藏  
                     tvAboutContent.setVisibility(View.GONE);  
                 } else {  
                     // 设置控件可见  
                     tvAboutContent.setVisibility(View.VISIBLE);  
                 }  
                 break;  
         }  
     }  
   
     /** 
      * 获得文本框的值 
      * 
      * @param id 
      * @return 
      */  
     private String getEditText(int id) {  
         return ((EditText) findViewById(id)).getText().toString();  
     }  
   
     /** 
      * 显示信息 
      * 
      * @param message 
      */  
     private void showMessage(String message) {  
         Toast.makeText(this, message, Toast.LENGTH_SHORT).show();  
     }  
   
     @Override  
     public boolean onCreateOptionsMenu(Menu menu) {  
         // Inflate the menu; this adds items to the action bar if it is present.  
         getMenuInflater().inflate(R.menu.menu_main, menu);  
         return true;  
     }  
   
     @Override  
     public boolean onOptionsItemSelected(MenuItem item) {  
         // Handle action bar item clicks here. The action bar will  
         // automatically handle clicks on the Home/Up button, so long  
         // as you specify a parent activity in AndroidManifest.xml.  
         int id = item.getItemId();  
   
         //noinspection SimplifiableIfStatement  
         if (id == R.id.action_settings) {  
             return true;  
         }  
   
         return super.onOptionsItemSelected(item);  
     }  
 }
  • 大小: 15 KB
  • 大小: 22.2 KB
0
0
分享到:
评论

相关推荐

    Android自动来电录音

    在Android平台上实现自动来电录音是一项技术挑战,但并非无法攻克。Android系统提供了丰富的API和工具,使得开发者可以创建各种功能丰富的应用,包括来电录音。在本文中,我们将深入探讨如何利用Android的...

    如何深入学习Android Framework.pdf

    ### 如何深入学习Android Framework #### 一、学习Android Framework的重要性 在当今移动互联网时代,Android作为全球最大的移动操作系统之一,...通过不断地实践和探索,逐步攻克各个难点,最终达到熟练掌握的目的。

    Flash Development for Android Cookbook

    **6. 实战案例详解** - **动画制作:** 使用Flash创建动态背景或过渡效果。 - **用户界面设计:** 应用Flex的UI组件构建美观且易用的界面。 - **多媒体处理:** 如何在Android应用中播放视频和音频文件。 - **地理...

    android-ndkr10环境搭建.pdf

    6. 处理Java源代码:将NDK示例中的`HelloJni.java`文件复制到TestNDK工程的src目录对应的包下。同时,修改`AndroidManifest.xml`文件中的activity标签,将`android:name`指向`HelloJni`类。 7. 配置Builder:在...

    需要攻克的模块

    7. **跨平台开发**:考虑到蓝牙技术的广泛应用,可能还会涉及如何在Android、iOS等不同平台上实现蓝牙功能。 8. **应用案例**:蓝牙技术在智能穿戴设备、智能家居、医疗健康等领域有广泛应用,文档可能涵盖实际应用...

    Android开心词场app

    ### Android开心词场App知识点详解 #### 一、项目背景及意义 - **研究内容**:本项目旨在设计并实现一...它通过创新的设计理念和技术手段,为用户提供了一个高效、便捷的学习环境,助力英语学习者轻松攻克词汇难关。

    Android程序技术:开拓创新.pptx

    Android 程序技术 本节课程内容:开拓创新 开拓创新 开拓创新 Blaze new trails in a pioneering spirit 开拓创新 Blaze new trails in a pioneering spirit 创新区别于发明 发明是从无到有,而创新是除旧创新。从...

    Android应用源码之Fanfoudroid(饭否网开源项目)-IT计算机-毕业设计.zip

    3) 功能实现与难点攻克;4) 性能优化与用户体验;5) 项目总结与展望。通过深入分析源码,结合自己的理解和创新,可以写出具有深度的毕业论文。 总的来说,“Fanfoudroid”项目为Android初学者和开发者提供了一个...

    毕业设计 中期汇报表 android 个人理财

    - **项目名称**:基于Android平台的个人理财系统设计与实现。 - **项目意义**:随着移动互联网技术的发展,人们越来越依赖智能手机来进行日常生活中的各种操作,包括财务管理。本项目旨在开发一款针对个人用户的理财...

    Android专项测试之GPU测试探索

    这一方面是由于系统没有提供相关接口与命令,另一方面似乎业界目前对于GPU的关注度不足,相关积累与沉淀较少,鉴于此,个人感觉GPU测试这一块也可以作为终端专项后面需要关注及攻克的课题。通过这两天的调研,笔者将...

    mars_adroid全集源码

    通过研究这些子文件,开发者可以逐一攻克Android开发中的各个技术要点,如UI设计、网络通信、数据存储、性能优化等。 总结起来,这份《mars_adroid全集源码》是Android开发者的一份宝贵学习资料,它不仅提供了实战...

    miniApps:此存储库包含为Android开发的不同基本概念提供单独代码的应用程序

    这种分模块的学习方式对于初学者来说尤其有用,因为它允许他们逐一攻克难点,而不是一次性面对复杂的综合项目。 【标签】“Kotlin”表明了这些miniApps主要使用的是Kotlin编程语言。Kotlin是Google推荐的Android...

    Android高级UI特效仿直播点赞动画效果

    攻克难点: 心形图片的路径等走向 心形图片的控制范围 部分代码如下: 通过AbstractPathAnimator定义飘心动画控制器 @Override public void start(final View child, final ViewGroup parent) { parent.addView...

    攻克可视门铃中的设计障碍-综合文档

    为此,设计团队可能需要采用标准化的通信协议和接口,如Wi-Fi、Zigbee或Z-Wave,同时还要考虑到跨平台应用的开发,比如支持iOS和Android操作系统。 综上所述,攻克可视门铃中的设计障碍涉及多方面的专业知识,从...

    JAVA开发经理_java个人简历模板.doc

    * Java ME(Micro Edition):用于开发移动设备应用程序,涉及技术包括 Android app 软件开发 * 软件研发经理:负责带领团队攻克技术难题,设计和研发创新产品 * 软件工程师:负责开发和维护软件系统,包括 Java ...

    AndroidOfferKiller:帮助您获得更好的报价

    1. **Android核心知识**:作为Android开发者,理解Android系统架构、组件交互(如Activity、Service、BroadcastReceiver和ContentProvider)、UI布局与事件处理、数据存储(SQLite、SharedPreferences、文件系统)...

    计算机科学与技术个人简历.doc

    * 有6年软件开发经验,2年项目管理经验 * 具有较强的自学能力、软件需求分析及设计能力 * 愿意接触新的技术,做事认真踏实,能吃苦耐劳,性情稳定,有较强的团队合作精神 四、技能 * 精通C#语言及面向对象设计思想...

    智能终端软件开发报告.docx

    ### 智能终端软件开发知识点总结 #### 一、项目背景与意义 - **解决的社会问题**:...通过使用Android SDK、百度地图SDK等技术,实现了软件的功能需求和技术难点的攻克,为用户提供了一个便捷、有趣的移动应用体验。

Global site tag (gtag.js) - Google Analytics