Android 在不同Actitity之間數據傳遞

来源:http://www.cnblogs.com/wuyudong/archive/2016/07/17/5679191.html
-Advertisement-
Play Games

本文實現一個簡易的人品計算器來實踐在不同Actitity之間數據傳遞 intent的數據傳遞 從A界面打開B界面 把A界面的數據傳遞給B界面 1. intent.setData(uri) -- intent.getData(); 可以傳遞簡單的文本數據。 2. intent.putExtra(nam ...


本文實現一個簡易的人品計算器來實踐在不同Actitity之間數據傳遞

intent的數據傳遞

從A界面打開B界面 把A界面的數據傳遞給B界面

1. intent.setData(uri) -- intent.getData();

可以傳遞簡單的文本數據。

2. intent.putExtra(name, value)

8大基本類型的數據,數組都可以傳遞
String對象 可以傳遞 charSequence
可以序列化的對象(序列化到文件) Serializable 也可以傳遞
可以序列化的對象(序列化到記憶體) Parcelable 也可以傳遞 bitmap
可以傳遞 一個map集合 Bundle extras = new Bundle();

本文地址:http://www.cnblogs.com/wuyudong/p/5679191.html,轉載請註明源地址。

新建項目,MainActivity中的代碼如下:

package com.wuyudong.testrp;

import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.text.TextUtils;
import android.view.View;
import android.widget.EditText;
import android.widget.Toast;

public class MainActivity extends Activity {

    private EditText et_name;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        et_name = (EditText)findViewById(R.id.et_name);
    }

    public void click(View view) {
        String name = et_name.getText().toString().trim();
        if (TextUtils.isEmpty(name)) {
            Toast.makeText(this, "名字不能為空", 1).show();
            return;
        }
        Intent intent = new Intent(this, ResultActivity.class);
        intent.putExtra("name", name);
        startActivity(intent);
    }

}

activity_main.xml中的代碼如下:

<LinearLayout 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:orientation="vertical"
    tools:context=".MainActivity" >

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="center_horizontal"
        android:text="人品計算器"
        android:textColor="#ff0000"
        android:textSize="26sp" />

    <EditText
        android:id="@+id/et_name"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="請輸入姓名" >
    </EditText>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <Button
            android:layout_centerInParent="true"
            android:onClick="click"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" 
            android:text="計算"
            >
        </Button>
    </RelativeLayout>

</LinearLayout>

界面如下:

輸入姓名後,點擊按鈕跳轉到另一個結果界面:activity_result.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:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="測試結果:"
        android:textColor="#ff0000"
        android:textSize="20sp" />

    <TextView
        android:id="@+id/tv_result"
        android:text="xxx:"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textColor="#99000000"
        android:textSize="17sp" />

    <ProgressBar
        android:id="@+id/progressBar1"
        android:max="100"
        style="?android:attr/progressBarStyleHorizontal"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" />

</LinearLayout>

界面如下:

ResultActivity.java代碼如下:

package com.wuyudong.testrp;

import java.util.Random;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.widget.ProgressBar;
import android.widget.TextView;

public class ResultActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_result);
        TextView tv_result = (TextView) findViewById(R.id.tv_result);
        
        Intent intent = getIntent();
        
        String name = intent.getStringExtra("name");
        Random rm = new Random();
        int rp = rm.nextInt(101);
        tv_result.setText(name + ":您的人品值為:" + rp);
        
        ProgressBar pb = (ProgressBar)findViewById(R.id.progressBar1);
        pb.setProgress(rp);

    }
}

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • DBFarmer是PowerFramework資料庫管理工具的集合。 可以進行對象的存儲,添加了setter和getter的參數會被收錄到資料庫中,每個參數作為一個項,int類型的id或_id會被作為primary key。 資料庫名為DBFarmer.db,在項目目錄下。每個對象的表名為類的全名替 ...
  • 鎖屏作為一種黑白屏時代就存在的手機功能,至今仍發揮著巨大作用,特別是觸屏時代的到來,鎖屏的功用被髮揮到了極致。多少人曾經在無聊的時候每隔幾分鐘劃開鎖屏再關上,孜孜不倦,其酸爽程度不亞於捏氣泡膜。 ...
  • 1Add JAR 從Eclipse的現有所有工程中,添加jar包到該工程下 2Add External JARs 從Eclipse外的其他的位置,添加jar包到該工程下 3Add Variable 增加一個變數 4Add Library 增加一個庫 5Add Class Folder 從Eclips ...
  • /etc/hosts 把host 複製到桌面 修改 然後 替換原來的 ...
  • 一,工程圖。 二,代碼。 AppDelegate.m ...
  • 縱觀移動市場,一款移動app,要想長期在移動市場立足,最起碼要包含以下幾個要素:實用的功能、極強的用戶體驗、華麗簡潔的外觀。華麗外觀的背後,少不了美工的辛苦設計,但如果開發人員不懂得怎麼合理展示這些設計好的圖片,將會糟蹋了這些設計,功虧一簣。 比如下麵張圖片,本來是設計來做按鈕背景的: button ...
  • 學習知識:界面組成、事件監聽器 界面組成 1.用戶界面的基本組件叫做View,都是繼承android.view.View類,Android裡面預定義很多基本的界面組件,比如 Button, CheckBox, ProgressBar and TextView,它們一般稱作組件或是部件(widgets ...
  • 本文主要介紹Android立體旋轉動畫,或者3D旋轉,下圖是我自己實現的一個界面 立體旋轉分為以下三種: 1. 以X軸為軸心旋轉 2. 以Y軸為軸心旋轉 3. 以Z軸為軸心旋轉--這種等價於android預設自帶的旋轉動畫RotateAnimation 實現立體旋轉核心步驟: 1. 繼承系統Anim ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...