20150602_Andriod 向窗体传递参数

<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: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="com.example.test1.MainActivity" >

<TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />

<TextView
        android:id="@+id/textView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/editText1"
        android:layout_alignParentLeft="true"
        android:layout_alignParentRight="true"
        android:layout_alignRight="@+id/button1"
        android:layout_below="@+id/textView1"
        android:layout_marginTop="59dp"
        android:text="只读文本"
        android:textSize="15pt" 
        android:textColor="#0092c7" />

<EditText
        android:id="@+id/editText1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_above="@+id/button1"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="55dp"
        android:ems="10"
        android:hint="删除完成后显示,提示功能"
        android:text="文本框测试" >

<requestFocus />
    </EditText>

<Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/textView2"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="85dp"
        android:hint="确定功能提示"
        android:text="@string/btn1Text"
        android:textStyle="bold" />

<Button
        android:id="@+id/Button01"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/button1"
        android:layout_below="@+id/button1"
        android:layout_marginTop="18dp"
        android:hint="弹窗功能提示"
        android:text="@string/btn2Text"
        android:textStyle="bold" />
   
        <Button
        android:id="@+id/Button02"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/button1"
        android:layout_alignRight="@+id/Button01"
        android:layout_below="@+id/Button01"
        android:layout_marginTop="28dp"
        android:hint="下拉窗功能提示"
        android:text="@string/btn3Text"
        android:textStyle="bold" />

</RelativeLayout>

///////////////////////////////////////////////////////////////////////////////////////////

package com.example.test1;

import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.EditText;

public class Popu_TC extends ActionBarActivity {
 
 ////////////////////
 private EditText Text_Popu;
 ////////////////////

@Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_popu__tc);
  
        ////////1///////////
  Text_Popu = (EditText)findViewById(R.id.editText_Popu);
        ////////////////////
  
        ////////2///////////
  Bundle bunde = this.getIntent().getExtras();
  //String strs = bunde.getString("key3").toString();
  Text_Popu.setText(bunde.getString("key3").toString());
        ////////////////////
  
 }
 
 @Override
 public boolean onCreateOptionsMenu(Menu menu) {
  // Inflate the menu; this adds items to the action bar if it is present.
  getMenuInflater().inflate(R.menu.popu__tc, 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();
  if (id == R.id.action_settings) {
   return true;
  }
  return super.onOptionsItemSelected(item);
 }
}

///////////////////////////////////////////////////////////////////////////////////////////

package com.example.test1;

import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;

////////////////////
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
import android.content.Intent;
////////////////////

public class MainActivity extends ActionBarActivity {
 
    ////////////////////
 private Button myButton;
 private EditText myText;
 
 private Button myButton01;
 private Button myButton02;
    ////////////////////

@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
       
        //////////1/////////
        myButton = (Button)findViewById(R.id.button1);
        myText = (EditText)findViewById(R.id.editText1);
       
        myButton.setOnClickListener(new View.OnClickListener() {

@Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
                myText.setText("弄明白监听!");
            }
        });

////////////////////
       
       
        /////////2//////////
        myButton01 = (Button)findViewById(R.id.Button01);
        myButton01.setOnClickListener(new View.OnClickListener() {

@Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
                ////显示文本------- 测试通过
                //myText.setText("弄明白监听2!");

////intent负责程序跳转和传递数据
                //Intent intent = new Intent(this,F1_TC.class);
                //startActivity(intent);
                //Toast.makeText(this, "Toast", Toast.LENGTH_SHORT).show();
             
             Intent intent = new Intent(MainActivity.this, F1_TC.class);
             startActivity(intent);
             
             
             ////打开一个伪窗口------- 测试通过
             //Toast.makeText(getApplicationContext(), "提示:点击窗口外部关闭窗口!",
             //Toast.LENGTH_SHORT).show();

}
        });
        ////////////////////
       
        /////////3//////////
        myButton02 = (Button)findViewById(R.id.Button02);
        myButton02.setOnClickListener(new View.OnClickListener() {

@Override
            public void onClick(View v) {

////intent负责程序跳转和传递数据
                Intent intent = new Intent(MainActivity.this,Popu_TC.class);
               
                Bundle bundle = new Bundle(); //通过Bundle实现数据的传递:
                bundle.putString("key1", "value1"); // key1为名,value1为值
                bundle.putString("key2", myButton02.toString());
                bundle.putString("key3", myText.getText().toString());
                bundle.putInt("keyInt1", 100);  //整数类型
                intent.putExtras(bundle); // 传数据
               
               
                startActivity(intent);   // ------- 测试通过    //不需要子窗口回传数据
                //startActivityForResult(intent, 1); //requestCode是子窗口的id标志,而且必须大于1,否则回调函数onActivityResult不响应!

}
        });
        ////////////////////
       
       
    }

@Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.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();
        if (id == R.id.action_settings) {
            return true;
        }
        return super.onOptionsItemSelected(item);
    }

}

时间: 2024-10-09 02:20:11

20150602_Andriod 向窗体传递参数的相关文章

C# 一个子窗体向父窗体传递参数的例子

一.编码思路 在父窗体使用Lambda表达式自定义事件赋给子窗体内定义的事件,通过在子窗体内调用事件实现传参 二.传递的参数 创建文件SomeUtility.cs,在类SomeUtility中声明结构ReturnStruct using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EventTest {

在Winform界面中实现对多文档窗体的参数传值

在Winform界面中窗体我们一般使用多文档进行展示,也就是类似一般的选项卡的方式可以加载多个窗体界面.一般来说,我们如果打开新的窗体,给窗体传递参数是很容易的事情,但是在框架层面,一般的窗体是通过动态创建的,一般传入窗体的类型,在多文档集合里面判断,如果存在则激活,如果不存在则创建的方式,所以我们传递参数会碰到一些问题.本文即使介绍如何在这种方式下,给窗体对象传递参数,从而实现相应的数据处理功能. 不管是主体界面中,左侧包含树形列表,还是顶部包含工具栏的情况,都可能涉及打开窗体的时候,传递一些

JS加载获取父窗体传递的参数

JS加载获取父窗体传递的参数 $(document).ready(function () { var query = location.search.substring(1); var values = query.split("&"); for (var i = 0; i < values.length; i++) { var pos = values[i].indexOf('='); if (pos == -1) continue; var paramname = v

window.showModalDialog 与window.open传递参数的不同?

简单的说,就是一个在弹出窗口之后可以做其它的事,即window.open 另一个在弹出窗口之后不能做其它的事,只能是关闭了当前的窗口之后才能做其它的事,即window.showModalDialog 那么两者在使用上有什么不同呢?他们分别是如何和父窗口进行交互的呢? 先来看window.showModalDialog的例子: 我这里现在有一个父窗体parent.jsp,它里面有一个方法 function openChild(){                var temp = window.

用SqlParameter 给SQL传递参数

1.数据访问层 using的用法: 01.可以using System;导命名控空间 02.using 的语法结构 using(变量类型  变量名 =new 变量类型()) { } 案例: 03.using的原理 为什么出了using所在的{},会自动回收对象. 原因是当我们将要出{},系统自动调用了Dispose()方法. 而在DISpose方法中是这么实现的 2.哪些对象才可以使用Using回收!如:SqlConnection  Font 和File 也都可以使用using   因为他们实现

给wxPython事件处理函数传递参数

给wxPython事件处理函数传递参数 2014-04-30 07:47:08segmentfault-博客--点击数:39 最近捣鼓Python,也就自然捣鼓上了wxPython.我曾经用过Qt和Gtk+写GUI,但几乎所有的Python书都告诉我说最好用的是wxPython,我没有尝试PyQt和PyGtk就开始研究wxPython了.在Qt和Gtk+之间我更喜欢Qt,因为它跨平台做得很好,而且商业化也不错.但wxWidget给人的感觉就完全不同了. 如果说wxWidgets相对于Qt有什么优

单件模式+打开窗体+窗体构造函数参数

利用单件模式避免重复打开窗体,窗体为无参数构造函数模式. 注:该博客中有自动关闭窗体的方法 http://www.cnblogs.com/zfanlong1314/p/3567308.html 为了打开窗体时传入参数,可以改变方法的传递参数,本人修改后代码如下 /// <summary> /// 泛型实现窗体实例单件化/// </summary> /// <typeparam name="T">窗体类</typeparam> public

委托实现窗体传递

委托可以将方法作为参数进行传递. public delegate void DGFillAreas(string ids,string names); //定义委托 //定义委托就是确定这个委托对象里面可以存储那一种签名(返回值/参数)的方法 //如这个委托就说明了以后这种类型的委托对象里面就只能存储 无返回值 有两个String类型参数的方法,委托里面可以存储多个这种签名的方法 private void btnChoice_Click(object sender, EventArgs e) {

post 传递参数中包含 html 代码解决办法,js加密,.net解密

今天遇到一个问题,就是用post方式传递参数,程序在vs中完美调试,但是在iis中,就无法运行了,显示传递的参数获取不到,报错了,查看浏览器请求情况,错误500,服务器内部错误,当时第一想法是接收方式有问题,换了无数次接收方式,都没有效,后来在请求情况的,Response中发现,其实根本原因是由于post参数中不能包含html代码,设计到跨域攻击...,所以被禁止了. 微软给出的建议是 ASP.NET Web窗体中禁用请求验证 ,我是没成功,后来我查到其实可以用在前端用js base64加密,后