欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

android使用intent传递参数实现乘法计算

时间:2022-11-30 10:58:38|栏目:Android代码|点击:

本文实例为大家分享了android使用intent传递参数实现乘法计算的具体代码,供大家参考,具体内容如下

主界面上是两个EditText和一个按钮。用于输入两个数字参数。

calcute.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" 
    android:gravity="center">
    
    <LinearLayout 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:gravity="center"
        >
        
        <EditText 
            android:id="@+id/factory1"
            android:layout_height="wrap_content"
            android:layout_width="100dip"
            />
        <TextView 
            android:layout_width="50dip"
            android:layout_height="wrap_content"
            android:text="X"
            android:layout_marginLeft="30dip"
            />
         <EditText 
             android:id="@+id/factory2"
             android:layout_height="wrap_content"
             android:layout_width="100dip"
             />
    </LinearLayout>
    <Button 
        android:id="@+id/calute"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="计算"
        />
 
</LinearLayout>

处理calcute的java程序

CaluteMain.java:

package com.example.wenandroid;
 
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
 
public class CaluteMain extends Activity {
private EditText factory1;
private EditText factory2;
private Button calute;
@Override
protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.calcute);
    factory1=(EditText)findViewById(R.id.factory1);
    factory2=(EditText)findViewById(R.id.factory2);
    calute=(Button)findViewById(R.id.calute);
    calute.setOnClickListener(new MyOnClickListener());
}
class MyOnClickListener implements OnClickListener{
 
    @Override
    public void onClick(View v) {
        String factoryStr1=factory1.getText().toString();
        String factoryStr2=factory2.getText().toString();
        Intent intent=new Intent(CaluteMain.this,CaluteResult.class);
        intent.putExtra("one", factoryStr1);
        intent.putExtra("two", factoryStr2);
        startActivity(intent);
    }
    
}
}

计算结果的界面:caluteresult.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" >
    <TextView 
        android:id="@+id/result"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        />
</LinearLayout>

接收两个数字参数并显示结果的Activity。CaluteResult.java:

package com.example.wenandroid;
 
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.widget.TextView;
 
public class CaluteResult extends Activity {
private TextView resultView;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.caluteresult);
        resultView=(TextView)findViewById(R.id.result);
        Intent intent=getIntent();
        String factoryStr1=intent.getStringExtra("one");
        String factoryStr2=intent.getStringExtra("two");
        //将字符串转换为整形
        int factoryInt1=Integer.parseInt(factoryStr1);
        int factoryInt2=Integer.parseInt(factoryStr2);
        int result=factoryInt1*factoryInt2;
        resultView.setText("结果是:"+result+"");
        
    }
 
}

上一篇:Android即时通讯设计(腾讯IM接入和WebSocket接入)

栏    目:Android代码

下一篇:Android调用系统默认浏览器访问的方法

本文标题:android使用intent传递参数实现乘法计算

本文地址:http://www.codeinn.net/misctech/220254.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有