Service(一)----->简单计算

xml:

 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     tools:context="com.zzw.server.MainActivity" >
 6
 7     <EditText
 8         android:id="@+id/editText1"
 9         android:layout_width="wrap_content"
10         android:layout_height="wrap_content"
11         android:layout_alignParentTop="true"
12         android:layout_centerHorizontal="true"
13         android:layout_marginTop="58dp"
14         android:ems="10"
15         android:inputType="number" >
16
17         <requestFocus />
18     </EditText>
19
20     <EditText
21         android:id="@+id/editText2"
22         android:layout_width="wrap_content"
23         android:layout_height="wrap_content"
24         android:layout_alignLeft="@+id/editText1"
25         android:layout_below="@+id/editText1"
26         android:layout_marginTop="68dp"
27         android:ems="10"
28         android:inputType="number" />
29
30     <Button
31         android:id="@+id/button"
32         android:layout_width="wrap_content"
33         android:layout_height="wrap_content"
34         android:layout_alignParentBottom="true"
35         android:layout_centerHorizontal="true"
36         android:layout_marginBottom="85dp"
37         android:text="相加" />
38
39 </RelativeLayout>

activity_main.xml

MainActivity:

 1 package com.zzw.server;
 2
 3 import android.app.Activity;
 4 import android.content.Intent;
 5 import android.os.Bundle;
 6 import android.view.View;
 7 import android.view.View.OnClickListener;
 8 import android.widget.EditText;
 9
10 public class MainActivity extends Activity {
11     EditText et1, et2;
12
13     @Override
14     protected void onCreate(Bundle savedInstanceState) {
15         super.onCreate(savedInstanceState);
16         setContentView(R.layout.activity_main);
17         findViewById(R.id.button).setOnClickListener(new OnClickListener() {
18
19             @Override
20             public void onClick(View v) {
21                 init();
22             }
23         });
24     }
25
26     public void init() {
27         et1 = (EditText) findViewById(R.id.editText1);
28         et2 = (EditText) findViewById(R.id.editText2);
29         Intent intent = new Intent(MainActivity.this, TestServer.class);
30         int a = Integer.parseInt(et1.getText().toString());
31         int b = Integer.parseInt(et2.getText().toString());
32         int num[] = { a, b };
33         intent.putExtra(Canshu.KEY, num);
34         startService(intent);//开始
35
36     }
37
38     @Override
39     protected void onDestroy() {
40         super.onDestroy();
41         Intent intent = new Intent(MainActivity.this, TestServer.class);
42         stopService(intent);//结束
43     }
44
45 }

Server:

 1 package com.zzw.server;
 2
 3 import android.app.Service;
 4 import android.content.Intent;
 5 import android.os.IBinder;
 6 import android.util.Log;
 7 import android.widget.Toast;
 8
 9 public class TestServer extends Service {
10     //开始只运行一次
11     @Override
12     public void onCreate() {
13         Log.d("=========", "我开始了");
14         super.onCreate();
15     }
16
17     @Override
18     public int onStartCommand(Intent intent, int flags, int startId) {
19         int num[] = intent.getIntArrayExtra(Canshu.KEY);
20         int sum = num[0] + num[1];
21         Toast.makeText(TestServer.this, sum + "", 1).show();
22         return super.onStartCommand(intent, flags, startId);
23     }
24
25     @Override
26     public IBinder onBind(Intent intent) {
27         // TODO Auto-generated method stub
28         return null;
29     }
30
31     @Override
32     public void onDestroy() {
33         Log.d("======", "我被干掉了");
34         super.onDestroy();
35     }
36
37 }

AndroidManifest.xml:

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
 3     package="com.zzw.server"
 4     android:versionCode="1"
 5     android:versionName="1.0" >
 6
 7     <uses-sdk
 8         android:minSdkVersion="14"
 9         android:targetSdkVersion="21" />
10
11     <application
12         android:allowBackup="true"
13         android:icon="@drawable/ic_launcher"
14         android:label="@string/app_name"
15         android:theme="@style/AppTheme" >
16         <activity
17             android:name=".MainActivity"
18             android:label="@string/app_name" >
19             <intent-filter>
20                 <action android:name="android.intent.action.MAIN" />
21
22                 <category android:name="android.intent.category.LAUNCHER" />
23             </intent-filter>
24         </activity>
25         <!-- 注册服务器 -->
26         <service android:name="com.zzw.server.TestServer" >
27         </service>
28     </application>
29
30 </manifest>
时间: 2024-12-15 09:24:44

Service(一)----->简单计算的相关文章

Python中的简单计算

Python中的简单计算 (1)基本的加减乘除 >>> 2 + 2 4 >>> 50 - 5*6 20 >>> (50 - 5*6) / 4 5.0 >>> 8 / 5  1.6 (2)除法总是会返回一个浮点数,想要返回整数,需要用"//"来表示(floor division),另外,可以用"%"进行取余操作 >>> 17 / 3  # classic division ret

HDU 1038[Biker&#39;s Trip Odometer]简单计算

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1038 题目大意:给轮子直径,转数,时间.要求输出走过的距离和时速(mile为单位) 关键思想:纯算 代码如下: #include <iostream> using namespace std; #define pi 3.1415927 int main(){ double d,r,t,l; int cnt=1; while(cin>>d>>r>>t&&a

SDUT OJ 2616 简单计算

简单计算 Time Limit: 1000ms   Memory limit: 65536K  有疑问?点这里^_^ 题目描述 某天,XX 给YY 出了一道题,题目是: 给出n 个十进制的数,找出这n 个数的二进制表示中1 的个数最少的数. 由于YY 的计算能力很差,所以他想让你帮他写个程序来计算出来. 输入 输入的第一行为一个正整数T(1 ≤T≤20),代表测试数据组数. 对于每组测试数据: 输入的第一行为一个正整数n (1 ≤ n ≤105): 第二行为n 个正整数A1.A2.… .An(1

Date()日期简单计算

/** * 判断是否为闰年 * @param year * @return */ public boolean isLeap ( int year ) { if ( (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0) ) return true; else return false; } /** * 判断某年某月总天数 * @param year * @param month * @return */ public int get

数论 --- 简单计算

Power of Cryptography Time Limit: 1000MS   Memory Limit: 30000K Total Submissions: 18018   Accepted: 9090 Description Current work in cryptography involves (among other things) large prime numbers and computing powers of numbers among these primes. W

简单计算字符串的高度

计算字符串的高度有很多种,这里写下最常用的简单计算字符串的高度 // // NSString+NSStringExt.h // UIFontSize // // Created by mac on 15/11/14. // Copyright (c) 2015年 叶炯. All rights reserved. // #import <Foundation/Foundation.h> #import <UIKit/UIKit.h> @interface NSString (NSSt

一个Nodejs的简单计算测试程序

测试目的: 1 测试二维数组的使用 2 输出函数的使用 代码: var util = require('util'); a = 3; b = 4; c = a + b; a = []; for(i = 0; i < 10; i++) { info = ""; for(j = 0; j < 10; j++) { a[i,j] = i + j; util.print(util.format('%d', a[i, j])); util.print(' '); } console.

读书-算法《程序设计导引及在线实践》-简单计算题2:棋盘上的距离

题目:棋盘上的距离 求国际象棋中王.后.车.象从起始位置到目标位置所需的最少步骤. 行走规则如下: 王:横.竖.斜都可以走,但每步只能走一格. 后:横.竖.斜都可以走,但每步格数不限. 车:横.竖都可以走,不能斜着走,每步格数不限. 象:只能斜着走,格数不限. 我没有下过国际象棋,但题目中这四种角色的行走规则.把题目翻译一下,在一个8*8 的矩阵里面,按照给定的规则从一个点到另一个点的最近路径,好像也不用翻译,题目就是这么说的. 代码实现如下: #include <stdio.h> #incl

csps模拟9495凉宫春日的忧郁,漫无止境的八月,简单计算,格式化题解

题面:https://www.cnblogs.com/Juve/articles/11767239.html 94,95的T3都没改出来,是我太菜了... 凉宫春日的忧郁: 比较$x^y$和$y!$的大小,如果打高精会T掉 正解:把两个数取log,则$log_2x^y=ylog_2x$,$log_2y!=\sum\limits_{i=1}^{y}log_2i$ 然后就A了 1 #include<iostream> 2 #include<cstdio> 3 #include<c