当前位置:  编程技术>移动开发
本页文章导读:
    ▪android搬动开发简单的开发实例        android移动开发简单的开发实例 呵呵今天终于写了两个跳转的actity的页面,感觉还可以,呵呵  好了,下面记录下我今天晚上的android实例:开发环境:windowXP、androidSDK2.2、eclipse3.4(关于环.........
    ▪ 键盘展示与隐藏        键盘显示与隐藏   InputMethodManager imm = (InputMethodManager)getSystemService(SendActivity.this.INPUT_METHOD_SERVICE); //显示键盘 imm.showSoftInput(editText, 0); //隐藏键盘 imm.hideSoftInputFromWindow(editText.getWindowToken(), 0.........
    ▪ AndTerm 安安超级终端 1.2 公布       AndTerm 安安超级终端 1.2 发布  AndTerm - Android super terminal It is a super terminal to send command and manage your android system. 它是一款超级终端通过命令管理你的android系统    1) Fix the previous version of the bug .........

[1]android搬动开发简单的开发实例
    来源: 互联网  发布时间: 2014-02-18
android移动开发简单的开发实例
呵呵今天终于写了两个跳转的actity的页面,感觉还可以,呵呵  好了,下面记录下我今天晚上的android实例:

开发环境:windowXP、androidSDK2.2、eclipse3.4(关于环境配置请看我的另外一篇博客文章介绍)

项目名称:layout

应用名称:layout

包名:com.eoeandroid.layout



首先新建一个主actity名称:ActivityMain.java

package com.eoeandroid.layout;

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;

public class ActivityMain extends Activity {
Button button0;

//配置的监听程序
OnClickListener listener0= new OnClickListener() {
      public void onClick(View v){

//通过Intent这个类能够使我们从本页面跳转到ActivityRelativeLayout这个类里面
      Intent intent1 =new Intent(ActivityMain.this,ActivityRelativeLayout.class);
      startActivity(intent1);
      }
       };

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);


        button0 = (Button) findViewById(R.id.button0);

         //为butonO按钮注册监听程序
        button0.setOnClickListener(listener0);
    }
}

下一步新建一个跳转到的actity :ActivityRelativeLayout.java

package com.eoeandroid.layout;

import android.app.Activity;
import android.os.Bundle;

public class ActivityRelativeLayout extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState); 

//通过这个方法显示:relative_layout.xml配置的界面
  setContentView(R.layout.relative_layout);
 
}
}





上面的类已经建完成了,下面就需要构建UI层,android系统开发,和以前的javase还不太一样就是说:android的界面一般通常情况下界面都是通过xml的配置显示效果界面出来,当然也可以用java代码编写出来,这要看个人的需要:

首先配置主屏幕显示的界面也就是ActivityMain.java的界面(ActivityMain.java只是将按钮注册了一个监听但没有显示):ActivityMain默认的main.xml中配置:

-------------------------

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Button android:id="@+id/button0" android:layout_width="wrap_content"
  android:layout_height="wrap_content" android:text="我来了" />

<TextView android:layout_width="fill_parent"
  android:layout_height="wrap_content" android:text="@string/hello" />
</LinearLayout>
-------------------------

上面的XML的配置效果是:一个按钮,按钮上面文字是:“我来了”,按钮下面有一行字“HelloWorld Actitymain”

下面接添加配置需要转到的页面的xml配置文件:

relative_layout.xml

----------------------

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content">
  <TextView android:id="@+id/label" android:layout_width="fill_parent"
  android:layout_height="wrap_content" android:text="请输入用户名:" />

<!--
  这个EditText放置在上边id为label的TextView的下边
-->
<EditText android:id="@+id/entry" android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:background="@android:drawable/editbox_background"
  android:layout_below="@id/label" />

<!--
  取消按钮和容器的右边齐平,并且设置左边的边距为10dip
-->
<Button android:id="@+id/cancel" android:layout_width="wrap_content"
  android:layout_height="wrap_content" android:layout_below="@id/entry"
  android:layout_alignParentRight="true"
  android:layout_marginLeft="10dip" android:text="取消" />

<!--
  确定按钮在取消按钮的左侧,并且和取消按钮的高度齐平
-->
<Button android:id="@+id/ok" android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_toLeftOf="@id/cancel"
  android:layout_alignTop="@id/cancel" android:text="确定" />
</RelativeLayout>
-----------------------------

上面的两个配置是两个页面的的UI的XML配置文件,现在还需要将两个界面的Actity的java类都注册到android系统中(当然这时我自己的理解),这时还需要配置一下默认的一个文件叫:AndroidManifest.xml

----------------------

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.eoeandroid.layout"
      android:versionCode="1"
      android:versionName="1.0">
    <application android:icon="@drawable/icon" android:label="@string/app_name">
        <activity android:name=".ActivityMain"
                  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="ActivityRelativeLayout"></activity>
    </application>
 

    <uses-sdk android:minSdkVersion="8" />

</manifest>

----------------------------

以上就是完整的一个实例了,已经经过我的测验,当然这个代码是参照了android开发与入门的代码,看了几天一会查资料,一会问别人呵呵终于算是理解了一点点,不管理解的到底对不对,最起码按照我的理解算是把一个完整的小例子给跑了起来,呵呵

    
[2] 键盘展示与隐藏
    来源: 互联网  发布时间: 2014-02-18
键盘显示与隐藏

 

InputMethodManager imm = (InputMethodManager)getSystemService(SendActivity.this.INPUT_METHOD_SERVICE);


//显示键盘
imm.showSoftInput(editText, 0);

//隐藏键盘
imm.hideSoftInputFromWindow(editText.getWindowToken(), 0);
 

 


    
[3] AndTerm 安安超级终端 1.2 公布
    来源: 互联网  发布时间: 2014-02-18
AndTerm 安安超级终端 1.2 发布

 AndTerm - Android super terminal

It is a super terminal to send command and manage your android system.

它是一款超级终端通过命令管理你的android系统

 

 1) Fix the previous version of the bug

 2) Add "Prev cmd","Su cmd" button

 

 1) 修复了上一个版本的错误

 2) 新增“上条命令”,“Su命令”按钮

 

 

了解更多:http://code.google.com/p/andbox/

 

 


    
最新技术文章:
▪Android开发之登录验证实例教程
▪Android开发之注册登录方法示例
▪Android获取手机SIM卡运营商信息的方法
▪Android实现将已发送的短信写入短信数据库的...
▪Android发送短信功能代码
▪Android根据电话号码获得联系人头像实例代码
▪Android中GPS定位的用法实例
▪Android实现退出时关闭所有Activity的方法
▪Android实现文件的分割和组装
▪Android录音应用实例教程
▪Android双击返回键退出程序的实现方法
▪Android实现侦听电池状态显示、电量及充电动...
▪Android获取当前已连接的wifi信号强度的方法
▪Android实现动态显示或隐藏密码输入框的内容
▪根据USER-AGENT判断手机类型并跳转到相应的app...
▪Android Touch事件分发过程详解
▪Android中实现为TextView添加多个可点击的文本
▪Android程序设计之AIDL实例详解
▪Android显式启动与隐式启动Activity的区别介绍
▪Android按钮单击事件的四种常用写法总结
▪Android消息处理机制Looper和Handler详解
▪Android中GPS定位的用法实例 iis7站长之家
▪Android实用的代码片段 常用代码总结
▪Android实现弹出键盘的方法
▪Android中通过view方式获取当前Activity的屏幕截...
▪Android提高之自定义Menu(TabMenu)实现方法
▪Android提高之多方向抽屉实现方法
▪Android提高之MediaPlayer播放网络音频的实现方法...
▪Android提高之MediaPlayer播放网络视频的实现方法...
▪Android提高之手游转电视游戏的模拟操控
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3