由于才学,这个布局实在不敢恭维,请各位谅解!!
好吧,废话不多说了,来看看这个代码吧(关于这个例子本人会在后面继续添加,不断增加)!!
其中使用到得技术有:intent Bundle AlertDialog SMS Activity
首先是程序的布局文件
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:stretchColumns="0,1,2"
android:shrinkColumns="0,1,2"
>
<TextView
android:id="@+id/hello"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
<!--//添加两个输入框(使用TabLayout进行布局) -->
<TableLayout
android:id="@+id/table"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_below="@id/hello"
>
<TableRow>
<EditText
android:id="@+id/one"
android:gravity="left"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:drawable/editbox_background"
android:layout_below="@id/hello"/>
<TextView
android:id="@+id/fangfa"
android:gravity="left"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="X"/>
<EditText
android:id="@+id/two"
android:gravity="left"
android:layout_column="1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:drawable/editbox_background"
android:layout_below="@id/one"/>
</TableRow>
<TableRow android:stretchColumns="">
<Button
android:id="@+id/cacl"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/table"
android:layout_alignParentLeft="true"
android:text="@string/caleValue" />
<Button
android:id="@+id/smstoId"
android:layout_column="1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/table"
android:layout_alignRight="@id/cacl"
android:text="@string/smstoValue"/>
</TableRow>
</TableLayout>
<!--添加两个控件分别启动两个应用(短信应用 计算器Demo)-->
</RelativeLayout>
然后是另一个Activity的布局文件
<?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">
<TextView
android:id="@+id/resultTitleId"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/resultValue"
/>
<!-- 再添加一个 文本控件进行Result值的显示-->
<TextView
android:id="@+id/resultId"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>
然后就是资源文件
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="hello">应用总结(Activity)</string>
<string name="app_name">Activity阶段总结</string>
<string name="smstoValue">求助短信</string>
<string name="caleValue">计算器</string>
<!-- Result.xml配置文件中控件名称-->
<string name="resultValue">等于:</string>
<string name="menuValue1">退出</string>
<string name="outOk">确认退出</string>
<string name="outCancel">取消退出</string>
<string name="menuValue2">关于</string>
</resources>
然后是Mainifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="zhou.activity"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="8" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".ActivityDemo"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".Result" android:label="@string/app_name"></activity>
</application>
</manifest>
最后就是相关的程序
package zhou.activity;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
/**
* ?1:如果用一个公共的监听类 来控制多个点击事件
* ?2:
* @author 周周
* 完成Activity操作 sms Intent Listener Uri
*/
public class ActivityDemo extends Activity {
private Button smsButton = null;
private Button caclButton = null;
private EditText editTextOne = null;
private EditText editTextTwo = null;
/**
* 得到相应的控件
* 再添加相应的监听
*
* 添加一个公共的监听 在监听里面进行点击事件的分类
*/
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
smsButton = (Button)this.findViewById(R.id.smstoId);
caclButton = (Button)this.findViewById(R.id.cacl);
editTextOne = (EditText)this.findViewById(R.id.one);
editTextTwo = (EditText)this.findViewById(R.id.two);
smsButton.setOnClickListener(new ButtonListener());
caclButton.setOnClickListener(new ButtonListener());
}
private class ButtonListener implements OnClickListener{
public void onClick(View v) {
switch (v.getId()) {
case R.id.cacl:
String oneStr = editTextOne.getText().toString();///获取两个//关联的代码输入款的值
String TwoStr = editTextTwo.getText().toString();
//创建传输对象 进行改建为Bundle对象
Bundle b = new Bundle();
b.putString("one", oneStr);
b.putString("two", TwoStr);
Intent intent = new Intent();
intent.putExtras(b);///把这个存放数据的Bundle对象拿给Intent对象传递
intent.setClass(ActivityDemo.this, Result.class);
ActivityDemo.this.startActivity(intent);
break;
case R.id.smstoId:
///代码
Uri uri = Uri.parse("smsto:郭佳");
Intent intent2 = new Intent(Intent.ACTION_SENDTO,uri);
ActivityDemo.this.startActivity(intent2);
break;
default:
break;
}
}
}
/**
* ///添加菜单 以及相关的处理
*/
@Override
public boolean onCreateOptionsMenu(Menu menu) {
menu.add(0,1,1,R.string.menuValue1);
menu.add(0,2,2,R.string.menuValue2);
return super.onCreateOptionsMenu(menu);
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
if(item.getItemId() == 1){
//做一个代码的增强
new AlertDialog.Builder(ActivityDemo.this).setTitle("退出提示").setPositiveButton(R.string.outOk, new DialogInterface.OnClickListener(){
public void onClick(DialogInterface dialog, int which) {
finish();
}
}).setNegativeButton(R.string.outCancel, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
System.out.println("按钮已经取消,系统不执行反应");
}
}).show();
}else if(item.getItemId() == 2){
//这个是一个关于对话框
new AlertDialog.Builder(ActivityDemo.this).setTitle("程序作者介绍")
.setMessage("姓名:周利军\n性别:男\nQ Q:271218983\n有意者请指教").show();
}
return super.onOptionsItemSelected(item);
}
}
Result.java
package zhou.activity;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.widget.TextView;
public class Result extends Activity {
private TextView resultText = null;
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.result);
resultText = (TextView)this.findViewById(R.id.resultId);
///获取上一个Activity传过来的值 (程序改进 使用Bundler对数据进行封转)
Intent intent = this.getIntent();
Bundle bundle = intent.getExtras();
String oneStr = bundle.getString("one");
String twoStr = bundle.getString("two");
int one = Integer.parseInt(oneStr);
int two = Integer.parseInt(twoStr);
Integer result = one * two;
resultText.setText(result.toString());
}
}
分享到:
相关推荐
总的来说,这个"android的小例子"涵盖了Android开发中的基础组件使用,特别是ListView和ScrollView的实践应用,对初学者和有经验的开发者都具有一定的学习价值。通过研究这个例子,我们可以加深对这两类布局的理解,...
【Android例子源码仿QQ的基于Bmob】是一款Android应用开发示例,旨在帮助开发者学习如何在Android平台上构建类似QQ的即时通讯应用。这个项目利用了Bmob后端云服务,提供了一种快速构建和管理应用程序后端的方式,...
【Android Studio小游戏:蛇吃果】是一个非常适合初学者和进阶者探索Android应用程序开发的经典案例。这个项目展示了如何使用Android Studio构建一个简单的交互式游戏,玩家控制蛇移动,目标是吃到屏幕上随机出现的...
【标题】"Android初学者的ListView完整工程"是专为新手设计的一个教学项目,它旨在帮助初学者理解和掌握Android平台上ListView组件的使用。ListView是Android UI设计中非常常见且重要的控件,通常用于显示大量的可...
标题中的“蓝牙4.0BLE安卓开发的小例子”是指基于Android平台进行低功耗蓝牙(Bluetooth Low Energy,简称BLE)开发的一个简易项目,适合初学者作为入门教程。BLE是蓝牙技术联盟推出的一种针对物联网设备而设计的...
【仿QQ侧滑例子源码】是一个用于学习和实践的Android开发项目,旨在模拟QQ应用中的侧滑菜单效果。在Android应用设计中,侧滑菜单(通常称为抽屉式导航)是一个常见且实用的设计模式,它允许用户通过从屏幕边缘向内...
这里提供的"android 登入的例子 14个"压缩包文件,很显然包含了多种不同的登录实现方式,适合初学者或者开发者们进行学习和参考。下面将详细讲解Android登录功能的一些关键知识点。 1. **登录界面设计**:登录界面...
在"教程重要说明.txt"文件中,可能包含了一些关键步骤的详细说明,例如如何集成ExListView库、如何构建数据模型、如何定制适配器等,这对于初学者来说是非常有价值的参考资料。 总的来说,实现Android上的仿QQ多级...
本示例“通知栏android例子”是一个简单的演示,适合初学者了解和学习如何在Android中创建和管理通知。 通知在Android系统中是通过Notification类来构建的,它包含了一个或多个消息、图标、标题和附加操作等元素。...
本资料是"Android APP开发入门:使用Android Studio环境 配套范例程序1-6章",涵盖了初学者需要了解的基本概念和实践操作,但由于文件大小限制,只包含了前六章的实例代码。 **第一章:环境搭建与Hello World** 在...
【标题】"安卓Android源码——有米广告SDK例子.zip" 涉及的主要知识点是Android平台上的应用开发,特别是集成有米广告SDK的过程。有米广告SDK是中国领先的移动广告平台,为开发者提供广告接入服务,帮助他们实现应用...
在Android开发领域,创建用户...通过这个简单的QQ登录页面实例,初学者不仅可以掌握基本的Android UI控件用法,还能了解Activity、事件监听、数据验证等核心概念。实践中不断学习和优化,将有助于提升Android开发技能。
这个示例项目为初学者提供了一个平台,了解并实践Android中的触控事件处理。通过分析和运行这个案例,你可以掌握如何监听和响应用户的点击、滑动等动作,这对于构建任何用户界面都至关重要。 【标签】:“Android”...
总的来说,这份“Android应用源码SlidingMenu使用例子.zip”是一个宝贵的学习资源,它涵盖了SlidingMenu的实现细节,有助于开发者掌握这一重要组件的使用。通过实际运行和修改源码,开发者不仅可以理解SlidingMenu的...
【Android开发教程】是IT领域中的一个重要分支,尤其对于初学者而言,这是一份非常宝贵的资源。这份"新版Android入门开发教程 完整pdf开发笔记"涵盖了从零开始学习Android应用开发所需的基础知识和实践技能。 ...
《Android应用源码有米广告SDK例子》是一个包含有米广告SDK集成的Android应用程序源代码示例。这个压缩包提供了一个宝贵的参考资料,帮助开发者了解如何在自己的Android应用中集成有米广告,从而实现盈利和推广。 ...
在Android平台上,构建一个简单的留言板应用是初学者学习Android开发的一个常见练习。这个教程将带你了解如何实现这样一个功能,让用户能够发布留言并查看其他用户的留言。我们将主要涉及以下几个核心知识点: 1. *...
Android核心分析28篇,强烈推荐android初学者,android进阶者看看这个系列教程 Android应用开发者指南:性能优化 android开发教程合集(推荐新手看下这一季教程) 新手入门 会员贡献电子图书整理(内含PDF下载) ...
通过这个例子,初学者可以了解到如何在Android中创建、操作和管理SQLite数据库,从而更好地掌握Android开发中的数据存储技术。如果在实践过程中遇到任何问题,可以联系作者lipengpeng82010Q@qq.com获取帮助。
综上所述,这些视频教程涵盖了Android开发中的多个关键领域,适合初学者系统学习Android开发的基础知识和技术实践。通过学习这些教程和实践提供的源码示例,可以快速掌握Android开发的核心技能。