`
dyy_gusi
  • 浏览: 209428 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
社区版块
存档分类
最新评论

Android初步了解入门

阅读更多

 Android入门学习

1、准备阶段

JDK+Eclipse+ADT+SDK+AVD

JDK+Eclipse:开发Java的基础

ADT:Eclipse的一个插件,可以在线下载安装,也可以先先下载到本地再离线安装。

SDK:Android开发的工具包,Eclipse中安装了ADT以后,将Android的SDK指向自己解压以后的SDK路径。

AVD:Android虚拟设备,模拟安卓虚拟设备,写好的程序可以在这个模拟的设备上跑。

当然,现在Google主推的不是Eclipse+插件的方法,而是Android Studio.

 

2、项目结构

src:源代码,Java代码

gen:系统自动生成的配置文件,包括所有资源在R.java内等。

assets:资源文件,不包含在编译文件内,所以不会占用空间。不会在R.java中自动生成id

bin:app被编译后生成的可执行文件(.apk)以及app用到被打包到apk中的资源文件

libs:依赖的其他的jar包

res:存放应用用的所有资源,比如图片,布局等等

res:drawable:资源文件,最终会包含在app内,对应于不同的屏幕分辨率,有不同的文件夹存放

res:layou:布局结构文件,默认的是activity_main.xml文件,可以自己再新建xml布局文件。

res:menu:菜单

res:values:数据字典的值,存放字符串,主题,颜色,样式等资源文件

AndroidManifest.xml:Android应用程序清单文件,配置一些与应用相关的重要信息,包含包名,权限,程序组件等等

 

3、几个基础控件:

TextView+EditText:

TextView:显示文本,类似于label标签,EditText:输入框,类似于input标签

 

ImageView:

展示图片控件,类似于img标签,注意src和background的区别,src不会拉伸图片,而background可以拉伸图片,还可以设置背景颜色

 

Button,ImageButton:

都可以作为一个按钮产生点击事件,都有一个明显的点击效果

Button有text属性,ImageButton没有

ImageButton有src属性,Button没有

 

4、Button和ImageButton的监听事件

通过button.setOnClickListener(OnClickListener)方法添加事件

注意:所有控件都有onclick的事件,不仅仅Button有

通过点击事件的监听可以实现点击按钮之后要发生什么动作

监听事件的写法:匿名内部内+独立类实现+实现接口的方式

Demo代码如下:

<Button

    android:id="@+id/button1"

    android:layout_width="match_parent"

    android:layout_height="wrap_content"

    android:text="@string/button_name" />

 

<ImageButton

    android:id="@+id/button2"

    android:layout_width="match_parent"

    android:layout_height="wrap_content"

    android:layout_below="@+id/button1"

    android:src="@drawable/ic_launcher" />

public class MainActivity extends Activity implements OnClickListener {

 

    private Button button1;

    private ImageButton button2;

 

    @Override

    protected void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        setContentView(R.layout.activity_main);

 

        // 初始化所需要的控件

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

        button2 = (ImageButton) findViewById(R.id.button2);

 

        // 设置Button的监听器,通过匿名内部内实现

        button1.setOnClickListener(new OnClickListener() {

 

            @Override

            public void onClick(View arg0) {

                Log.i("tag", "button通过匿名内部内的方式被点击了!");

            }

        });

 

        // 通过实现接口方式实现点击事件

        button2.setOnClickListener(this);

 

        // 通过独立的类实现点击事件

        // button1.setOnClickListener(new MyOnClickListener());

 

        // 通过独立类实现点击事件的另一种方式

        // OnClickListener listener = new OnClickListener() {

        //

        // @Override

        // public void onClick(View arg0) {

        // Log.i("tag", "button通过独立类的方式被点击了");

        // }

        // };

        // button1.setOnClickListener(listener);

    }

 

    @Override

    public void onClick(View arg0) {

        Log.i("tag", "button通过实现接口的方式被点击了");

    }

 

    public class MyOnClickListener implements OnClickListener {

 

        @Override

        public void onClick(View arg0) {

            Log.i("tag", "button通过独立类的方式被点击了");

        }

 

    }

 

}

 

5、AutoCompleteTextView和MultiAutoCompleteTextView的简单使用:

自动提示需要先设定好一个适配器,将适配器设置给控件,然后控件在设置一些其他的属性信息等等,代码如下:

<AutoCompleteTextView

    android:id="@+id/autoCompleteTextView1"

    android:layout_width="match_parent"

    android:layout_height="wrap_content"

    android:hint="@string/select_addr" />

 

<MultiAutoCompleteTextView

    android:id="@+id/multiAutoCompleteTextView1"

    android:layout_width="match_parent"

    android:layout_height="wrap_content"

    android:layout_below="@+id/autoCompleteTextView1"

    android:hint="@string/select_addr" />

//分别得到两个控件

actv = (AutoCompleteTextView) findViewById(R.id.autoCompleteTextView1);

mactv = (MultiAutoCompleteTextView) findViewById(R.id.multiAutoCompleteTextView1);

 

//定义一个适配器

String[] objects = { "chongqing1", "chongqing2", "beijing1", "beijing2", "shanghai1", "shanghai2", "tianjing1", "tianjing2" };

ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, objects);

 

//给控件设置适配器等信息

actv.setAdapter(adapter);

actv.setThreshold(2);

mactv.setAdapter(adapter);

mactv.setThreshold(2);

mactv.setTokenizer(new MultiAutoCompleteTextView.CommaTokenizer());

 

6、ToggleButton控件简单使用

toggleButton有两种状态:选中和未选中,并且需要为两种不同的状态设置不同的显示文本

使用ToggleButton控件的Demo如下:

<ToggleButton

    android:id="@+id/toggleButton1"

    android:layout_width="match_parent"

    android:layout_height="wrap_content"

    android:checked="false"

    android:textOff="close"

    android:textOn="open" />

//设置toggleButton的状态改变监听器

toggleButton = (ToggleButton) findViewById(R.id.toggleButton1);

toggleButton.setOnCheckedChangeListener(new OnCheckedChangeListener() {

 

    @Override

    public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {

        toggleButton.setChecked(isChecked);

        Log.i("tag", "toggleButton:" + isChecked);

    }

});

 

7、CheckBox控件简单使用

复选框控件,有两种状态:选中trur和未选中false。示例Demo如下:

<CheckBox

    android:id="@+id/checkBox1"

    android:layout_width="wrap_content"

    android:layout_height="wrap_content"

    android:layout_below="@+id/toggleButton1"

    android:text="androidOS" />

 

<CheckBox

    android:id="@+id/checkBox2"

    android:layout_width="wrap_content"

    android:layout_height="wrap_content"

    android:layout_below="@+id/toggleButton1"

    android:layout_toRightOf="@+id/checkBox1"

    android:text="IOS" />

//得到checkBox控件

checkBox1 = (CheckBox) findViewById(R.id.checkBox1);

checkBox2 = (CheckBox) findViewById(R.id.checkBox2);

//创建一个监听器对象

OnCheckedChangeListener onCheckedChangeListener = new OnCheckedChangeListener() {

 

    @Override

    public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {

        switch (buttonView.getId()) {

        case R.id.checkBox1:

            if (isChecked)

                Toast.makeText(getApplicationContext(), "您选择了安卓" + buttonView.getText(), Toast.LENGTH_LONG).show();

            break;

        case R.id.checkBox2:

            if (isChecked)

                Toast.makeText(getApplicationContext(), "您选择了苹果" + buttonView.getText(), Toast.LENGTH_LONG).show();

            break;

        default:

            break;

        }

    }

};

//分别给checkBox设置监听器

checkBox1.setOnCheckedChangeListener(onCheckedChangeListener);

checkBox2.setOnCheckedChangeListener(onCheckedChangeListener);

 

8、RadioGroup和RadioButton控件简单使用

RadioButton是各个备选的单选按钮,RadioGroup是存放RadioButton的集合,在集合中只能选中一个RadioButton。

RadioButton和CheckBox的区别是CheckBox选中了以后还可以再取消选中,而RadioButton选中了以后不能取消选中

RadioGroup和RadioButton的Demo如下:

<RadioGroup

    android:id="@+id/radioGroup1"

    android:layout_width="wrap_content"

    android:layout_height="wrap_content" 

    android:orientation="horizontal"

    android:contentDescription="sex:">

    

    <RadioButton

        android:id="@+id/radioButton1" 

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:text="男"

        />

 

    <RadioButton 

        android:id="@+id/radioButton2"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:text="女"

        />

</RadioGroup>

radioGroup = (RadioGroup) findViewById(R.id.radioGroup1);

radioButton1 = (RadioButton) findViewById(R.id.radioButton1);

radioButton2 = (RadioButton) findViewById(R.id.radioButton2);

radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {

    @Override

    public void onCheckedChanged(RadioGroup groupView, int checkedId) {

        switch (checkedId) {

        case R.id.radioButton1:

            Toast.makeText(getApplicationContext(), "男", Toast.LENGTH_LONG).show();

            break;

        case R.id.radioButton2:

            Toast.makeText(getApplicationContext(), "女", Toast.LENGTH_LONG).show();

            break;

        default:

            break;

        }

 

    }

});

 

9、Android的五中布局

每种布局都可以嵌套使用,最常用的是相对布局和先行布局。

布局中最重要的常用的几个属性:
android:gravity 当前控件内容的位置,决定了他包含的元素的xy位置,如果是控件设置gravity,就是设置控件中的text的显示位置。android:gravit的取值有:center,center_vertical,center_horizontal,right,left,bottom,含义都很明了。
android:layout_gravity 决定该元素本身相对与包含他的容器的位置。取值和上面一样。
andriod:layout_weight 设置元素的比重比例,如果两个控件分别设置为1,表示两个空间平分拥有的空间,默认是0
android:layout_widht/height 控件的宽度或者高度,wrap_content代表包裹,match_parent/fill_parent代表天充满父容器,或者直接设置数字大小的固定值。
android:layout_marginLeft/Right/Top/Bottom 设置控件相对于其他控件的之间的各个方向的距离,值都为具体的数字值,和css的margin类似。
android:paddingLeft/Right/Top/Buttom 设置元素的内边距,和css的padding类似

9.1、线性布局(LinearLayout)

包含的控件要么以水平线性排列,要么以垂直线性排列,通过android:orientation属性设置

<?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:gravity="center"

    android:orientation="vertical" >

    <Button

        android:id="@+id/button1"

        android:layout_width="match_parent"

        android:layout_height="wrap_content"

        android:gravity="right"

        android:text="button" />

    <Button

        android:id="@+id/button2"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:text="button" />

</LinearLayout>

9.2、相对布局(RealtvieLayout)

他包含的子控件将以控件之间的相对位置或子类控件相对父容器的的位置放方式排列。每一个属性都的值都是另一个控件的Id。

有下面这些属性可供使用:

android:layout_below 

在某元素的下方 
android:layout_above 在某元素的的上方 
android:layout_toLeftOf 在某元素的左边
android:layout_toRightOf 在某元素的右边
android:layout_alignTop 本元素的上边缘和某元素的的上边缘对齐 
android:layout_alignLeft      本元素的左边缘和某元素的的左边缘对齐 
android:layout_alignBottom 本元素的下边缘和某元素的的下边缘对齐 
android:layout_alignRight 本元素的右边缘和某元素的的右边缘对齐 
android:layout_alignParentLeft/Right/Top/Buttom 本元素和父元素对齐方式,取值是true或false
android:layout_centerInParent 本元素相对父元素水平,垂直都居中,取值true或false
android:layout_conterHorizontal 本元素相对父元素水平居中,取值true或false
android:layout_conterVertical 本元素相对父元素垂直居中,取值true或false

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

    android:layout_width="match_parent"

    android:layout_height="match_parent" >

    <Button

        android:id="@+id/button0"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:text="0" />

    <Button

        android:id="@+id/button01"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:layout_toRightOf="@+id/button0"

        android:text="1" />

    <Button

        android:id="@+id/button02"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:layout_below="@+id/button0"

        android:text="2" />

</RelativeLayout>

9.3、帧布局(FrameLayout)

在这种布局中,所有的子元素都不能被指定放置的位置,他们都放在这块区域的左上角,并且后面的子元素直接覆盖在前面的子元素上,将前面的子元素部分或全部遮挡。

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"

    android:layout_width="match_parent"

    android:layout_height="match_parent" >

    <TextView

        android:id="@+id/textView1"

        android:layout_width="200dp"

        android:layout_height="200dp"

        android:layout_gravity="center"

        android:background="#999999"

        android:text="one" />

    <TextView

        android:id="@+id/textView2"

        android:layout_width="150dp"

        android:layout_height="150dp"

        android:layout_gravity="center"

        android:background="#AAAAAA"

        android:text="two" />

</FrameLayout>

9.4、绝对定位布局(AbsoluteLayout)

绝对布局又称为坐标布局,可以直接指定元素在屏幕上的坐标(X,Y),但是由于手机屏幕尺寸大小不一,所以这种布局适应性是相当差。一般都不使用这种布局。这种布局就简单的两个重要属性:layout_x和layout_y。x和y都是相对屏幕的左上角。

<Button

    android:id="@+id/absoluteButton1"

    android:layout_width="wrap_content"

    android:layout_height="wrap_content"

    android:layout_x="100dp"

    android:layout_y="30dp"

    android:text="absoluteLayoutButton" />

9.5、表格布局(TableLayout)

TableLayout表格布局模型以行列的形式管理子控件,每一行为一个TableRow的对象,当让也可以是一个View的对象

TableLayout的全局属性:
android:collapseColumns="1,2" 隐藏列,从0开始的索引。列之间必须用逗号隔开:1,2,3
android:shrinkColumns="1,2" 收缩列,从0开始的索引。当可收缩的列太宽(内容太多)不会被挤出屏幕。
android:stretchColumns="1,2" 拉伸列,从0开始的索引。以填满剩下的多余空白空间,可以通过*代替收缩所有列。
TableLayout的局部属性:
android:layout_column="1" 控件显示在第几列,从0开始。表示显示在第二列。
android:layout_span="2" 控件占用的列宽度。表示占用两列。

 

10、Activity的生命周期

Android有四大组件:Activity+Service+BroadcastReceiver+ContentProvider.Activity是一个应用程序组件,提供用户与程序交互的界面。

我们使用Activeiy的步骤是:MyActivity继承Android的Activity,重写一些方法,设置MyActivity显示布局,在AndroidManifes文件中注册MyActivity。

而Activity的生命周期有:创建(onCreate),启动(onStart),获取焦点(onResume),失去焦点(onPause),暂停(onStop),销毁(onDestroy),重新启动(onRestart)这些状态。

整个Activity的扭转过程如下图:(图片来源与网络)

 

public class LifeActivity extends Activity {

    public static final String TAG = "tag";

 

    @Override

    // Activity被创建时调运

    protected void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        // 设置显示布局

        setContentView(R.layout.activity_main);

        Log.i(TAG, "onCreate");

    }

 

    @Override

    // Activity被创建后,或者重新从后台回到前台时被调运

    protected void onStart() {

        super.onStart();

        Log.i(TAG, "onStart");

    }

 

    @Override

    // Activity在前台获得焦点时被调运

    protected void onResume() {

        super.onResume();

        Log.i(TAG, "onResume");

    }

 

    @Override

    // Activity失去焦点时别调运

    protected void onPause() {

        super.onPause();

        Log.i(TAG, "onPause");

    }

 

    @Override

    // 退出当前Activity或者跳转到新Activity时被调用

    protected void onStop() {

        super.onStop();

        Log.i(TAG, "onStop");

    }

 

    @Override

    // 退出当前Activity时被调用,调用之后Activity就结束了

    protected void onDestroy() {

        super.onDestroy();

        Log.i(TAG, "onDestory");

    }

 

    @Override

    // Activity从后台重新回到前台时被调用

    protected void onRestart() {

        super.onRestart();

        Log.i(TAG, "onRestart");

    }

}

几种简单的情况说明:

1)、启动然后退出:onCreate->onStart->onResume->Running->onPause->onStop->onDestory

2)、启动然后按home然后再展示:onCreate->onStart->onResume->Running->onPause->onStop->onRestart->onResume->Running

3)、启动然后跳转到其他页面在跳回来:onCreate->onStart->onResume->Running->onPause->onResume-Running

 

11、使用Intent跳转Activity

Intent可以理解为信使,Android的四大组件的联系通信都是通过Intent完成的。

Intent实现页面跳转有两种方式:startActivity(intent)或startActivityForResult(intent,requestCode),下面分别简单使用这两种方式:

1)、使用startActivity(Intent intent)

这种方式就是直接跳转的另一个Activity,互用接受返回参数。

Button button1 = (Button) findViewById(R.id.firstButton1);

button1.setOnClickListener(new OnClickListener() {

 

    @Override

    public void onClick(View arg0) {

        // param1:上下文对象,注意是Activity的对象,不是内部内的对象

        // param2:目标文件class

        Intent intent = new Intent(FirstActivity.this, SecondActivity.class);

        startActivity(intent);

    }

});

2)、使用startActivityForResult(Intent intent, Integer requestCode)

这种方式是跳转到另一个Activity后,有一个返回结果给之前的Activity,这种方式需要借助其他的两个方法:onActivityResult(int requestCode,int resultCode, Intent intent)和setResult(int resultCode,Intent data).

//FirstActivity

Button button2 = (Button) findViewById(R.id.firstButton2);

button2.setOnClickListener(new OnClickListener() {

 

    @Override

    public void onClick(View arg0) {

        Intent intent = new Intent(FirstActivity.this, SecondActivity.class);

 

        // param1:Intent对象

        // param2:请求code

        startActivityForResult(intent, 1);

        // 这种情况需要在该页面使用一个接受返回数据的方法onActivityResult,只需要重写就可以

 

    }

});

//FirstActivity

@Override

protected void onActivityResult(int requestCode, int resultCode, Intent data) {

    // 该方法能处理所有的请求返回结果,所以使用requestCode和resultCode两个参数唯一确定是哪个页面发送,哪个页面回传。

    // 第二个页面回传的数据放在data中,注意,Intent不仅仅是跳转,还能封装数据然后返回哦。

    super.onActivityResult(requestCode, resultCode, data);

    if (requestCode == 1 && resultCode == 2) {

        String result = data.getStringExtra("data");

        et.setText(result);

    }

}

//SecondActivity

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

button.setOnClickListener(new OnClickListener() {

 

    @Override

    public void onClick(View arg0) {

        // 这里使用Intent中放如回传数据

        Intent data = new Intent();

        data.putExtra("data", "这些文字是回传的文字");

        // 设置返回的code和数据

        setResult(2, data);

        // 结束当前页面

        finish();

    }

});

 

最后,对Android有个简单的了解,可以利用现有的知识,完成一个计算器小程序,主要是练习巩固代码结构,布局方式等基础知识。

  • 大小: 64.6 KB
5
0
分享到:
评论

相关推荐

    Android初步了解

    这PPT差不多把Android里大部分常用的东西都涉及到了,让入门者对Android有个初步的认识.

    Android程序开发入门教程

    通过上述内容,我们可以了解到Android平台的强大之处以及如何搭建基本的开发环境,并初步尝试创建一个简单的HelloAndroid项目。这为后续深入学习Android开发奠定了坚实的基础。对于初学者来说,掌握这些基础知识是...

    Android开发(入门)

    - **Lesson 1 Trail**:初步了解View的基本概念及用途。 - **Select views**:学习如何选择合适的View组件来实现特定的功能需求。 - **Style views**:掌握如何对View进行样式定制,包括颜色、字体等视觉效果的调整...

    Android应用开发入门教程(经典版)

    这部分将帮助你了解Android是如何运行在各种设备上的。 2. **开发环境搭建**:Android Studio是Android官方推荐的开发工具,教程会详细指导如何下载、安装和配置Android Studio,以及如何创建第一个"Hello, World!...

    Android Sensor 入门源码

    通过以上介绍,你应该对Android Sensor有了初步了解。实际开发中,结合"Android Sensor入门源码"的实践,将进一步巩固理论知识,提升实战技能。记得动手实践,理论与实践相结合是学习的最佳方式。

    Android应用开发入门教程(经典版).rar

    教程内容涵盖了一系列基础知识,旨在帮助读者快速建立起对Android开发的理解,并具备初步的开发能力。 一、Android开发环境搭建 首先,你需要安装Android Studio,它是Google官方提供的集成开发环境(IDE),包含了...

    Android 入门实例

    通过这个简单的实例,你将初步了解Android应用的基本构成和开发流程。随着经验的积累,可以尝试添加更复杂的控件、交互逻辑以及网络请求等功能,进一步探索Android的世界。同时,学习Android的官方文档、在线教程和...

    android开发初步配置

    首先,我们要了解的是Android开发的基础配置,包括安装和配置开发工具、JDK、SDK环境变量以及ADT插件。 **1. 安装配置** - **JDK (Java Development Kit)**:JDK是开发Java应用程序的基础,Android应用也是基于...

    Android新手入门练习 生活记事 源代码

    【Android新手入门练习 生活记事 源代码】是一个非常适合初学者的项目,它旨在帮助新接触Android开发的人员快速上手。这个项目的核心功能是创建一个实用的应用,用于记录日常生活、工作和学习中的重要事项,从而提高...

    androidstudio 环境搭建 初学 入门

    通过上述知识点的学习,初学者应该已经对Android Studio及其环境搭建有了初步的理解。接下来,通过实际操作和练习,可以进一步熟悉这个强大的开发环境,并逐渐掌握Android应用开发的各个知识点。随着实践经验的积累...

    android入门知识分享

    ### Android入门知识分享 #### 一、Android简介 Android是一个专为移动设备设计的软件集合,包括操作系统、中间件以及一些关键的应用程序。它最初由Andy Rubin等人在2003年创立,2005年被谷歌收购,并在2008年发布...

    Google+Android开发入门与实战

    《Google+Android开发入门与实战》是一本专为Android应用开发初学者编写的指南,旨在帮助读者快速掌握Android开发的基本技能并付诸实践。这本书详细介绍了Android开发的全过程,从环境搭建到应用发布,每一步都讲解...

    android 初步,基本控件,布局,事件Demo

    总之,“android初步,基本控件,布局,事件Demo”这一主题是Android入门学习的重要内容。通过深入理解和实践这些基础知识,开发者可以逐步建立起开发Android应用的能力,为后续的高级功能开发打下坚实基础。而...

    Android从入门到精通(明日科技)

    "应用,从而对Android开发有一个初步的认识。 接下来,书中会详细介绍Android应用程序的基本结构,如Manifest文件、Activity、Intent、Layout和View等。Activity是Android应用的核心,用于处理用户交互;Intent则...

    android入门

    这个过程不仅加深了对Android项目目录结构的理解,还让开发者初步接触到了Android架构,包括应用程序的基本组件:活动(Activity)、服务(Service)、广播接收器(BroadcastReceiver)和内容提供者...

    Android入门程序_简单计算器的实现

    总之,"Android入门程序_简单计算器的实现"这个项目是一个很好的起点,它让你熟悉Android应用的基本结构,掌握UI设计和事件处理,以及初步的计算逻辑实现。随着你不断深入学习,你将能够创建更复杂、功能更丰富的...

Global site tag (gtag.js) - Google Analytics