通过登陆页面对Android的基本组件介绍

简介: 上篇文章我讲了怎么新建安卓的Activity,算是我们学习安卓的第一步,这一次我来详细介绍安卓的基本组件,包括TextView,EditText,Button,ImageButton。

上篇文章我讲了怎么新建安卓的Activity,算是我们学习安卓的第一步,这一次我来详细介绍安卓的基本组件,包括TextViewEditTextButtonImageButton

1、首先是TextView。上一篇在我们新建Activity的时候,eclipse会自动给我们生成一个内容“Hello world”TextView,下面我主要介绍关于TextViewEditText的扩展学习,一些我们可能要用到的属性:

1)超链接样式的TextView-----------------对应的xml属性autoLink,例如我们可以把TextView的文字设置为”www.baidu.com",也就是它的text属性,我们可以设置为“android:text="*****",****可以是直接的文字表述,但最好是放在string文件中,这样修改起来比较方便,并且可在多个地方调用。把文字设置完后运行,当我们点击该TextView就会直接跳转到百度首页。

2)默认文本的EditText-----------------对应的xml属性为hint,比如在登录界面,我们常常在密码框里面写一个请输入密码。但密码通常使是用点来代替字符,所以我们可以使用到属性password,将它设为true就可以了,和他相类似的,比如我们要求只能输入号码,对应的属性就说phoneNumber,将它也设为true就可以了。

(3)有的时候我们在规定的行数内不能把内容显示完全,比如很多时候我们必须限制在1行展示,也就比如说属性singleLinetrue时,可以使用属性ellipse,在开头,中间,结尾,以及以跑马灯的形式省略。

(4)Button,顾名思义,他就是按钮,我们在一个App中通常会看到各种按钮,或实现页面的跳转,或可以弹出一个提示框等等。关于Button,我觉得首先最吸引大家的就是它的变色,因为我们会希望他正常的时候是一种颜色,而点击的时候是另外一种颜色,这时候其实就是对他的背景设置的问题,同时我们要求把他的背景设置为一张可变化的图片。比如说我们可以做两张不同颜色的Button图片,然后把它们写成一个“.xml”格式的图片。还有一个属性是我在实习的时候发现的,觉得他很好用,那就是drawableTop(Top也可以根据用户所想要显示的方位定为Bottom/Left/Right),这其实就是让我们在某些布局(比如QQ中的返回按钮“<返回”)表达时,非要先写个Button又写个TextView。

下面是我写的登录界面的demo的部分代码:

public class LoginActivity extends Activity implements OnClickListener {

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		
		EditText etName = (EditText) findViewById(R.id.et_name);
		EditText etPwd = (EditText) findViewById(R.id.et_pwd);
		EditText etPhone = (EditText) findViewById(R.id.et_phonenum);
		TextView tvWeb = (TextView) findViewById(R.id.tv_baidu);
		ImageButton ibtnBack = (ImageButton) findViewById(R.id.ibtn_back);
		Button btnRestiger = (Button) findViewById(R.id.btn_restiger);
		Button btnLogin = (Button) findViewById(R.id.btn_login);
		Button btnCancel = (Button) findViewById(R.id.btn_cancel);
		ibtnBack.setOnClickListener(this);
		btnRestiger.setOnClickListener(this);
		btnLogin.setOnClickListener(this);
		btnCancel.setOnClickListener(this);
	}

	@Override
	public void onClick(View v) {
		switch (v.getId()) {
		case R.id.ibtn_back:
			finish();
			break;
			
		case R.id.btn_restiger:
		    Intent intent = new Intent(LoginActivity.this, RestigerActivity.class);
		    startActivity(intent);
		    break;
        
		case R.id.btn_login:
			Toast.makeText(getApplicationContext(), "点击登录", 0).show();
			break;
			
		case R.id.btn_cancel:
			Toast.makeText(getApplicationContext(), "点击取消", 0).show();
		    break;
		}
	}

而上面的activity_main这个布局的主要代码如下:

    android:orientation="vertical" >


    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="45dp"
        android:background="@color/holo_blue_bright" >


        <Button
            android:id="@+id/ibtn_back"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_centerVertical="true"
            android:background="@null"
            android:drawableLeft="@drawable/back"
            android:minWidth="35dp"
            android:layout_marginLeft="10dp"
            android:text="@string/btn_back"
            android:textColor="@color/white" />


        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:gravity="center_horizontal"
            android:text="@string/tv_login"
            android:textColor="@color/holo_red_light" 
            android:textSize="30sp"/>


        <Button android:id="@+id/btn_restiger"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_marginRight="10dp"
            android:layout_centerVertical="true"
            android:background="@null"
            android:text="@string/btn_restiger"
            android:textColor="@color/white"
            android:minWidth="35dp" />
        
    </RelativeLayout>


    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingTop="20dp"
        android:paddingLeft="10dp"
        android:paddingRight="10dp"
        android:orientation="horizontal" >


        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="0"
            android:paddingLeft="10dp"
            android:text="@string/tv_name" />


        <EditText
            android:id="@+id/et_name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:maxLength="20"
            android:layout_marginLeft="20dp"
            android:singleLine="true" />
    </LinearLayout>


    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingTop="20dp"
        android:paddingLeft="10dp"
        android:paddingRight="10dp"
        android:orientation="horizontal" >


        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="0"
            android:paddingLeft="10dp"
            android:text="@string/tv_pwd" />


        <EditText
            android:id="@+id/et_pwd"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="20dp"
            android:layout_weight="1"
            android:singleLine="true"
            android:password="true"
            android:maxLength="20"
            android:hint="@string/put_your_pwd"
             />
    </LinearLayout>
    
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingTop="20dp"
        android:paddingLeft="10dp"
        android:paddingRight="10dp"
        android:orientation="horizontal" >


        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="0"
            android:paddingLeft="10dp"
            android:text="@string/tv_phonenum" />


        <EditText
            android:id="@+id/et_phonenum"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:layout_marginLeft="10dp"
            android:maxLength="11"
            android:hint="@string/put_your_phonenum"
            android:singleLine="true"
            android:phoneNumber="true" />
    </LinearLayout>


    <TextView
        android:id="@+id/tv_baidu"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:autoLink="web"
        android:paddingLeft="10dp"
        android:text="@string/tv_baidu" />
        
    <LinearLayout 
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingTop="40dp"
        android:gravity="center_horizontal">
        
        <Button android:id="@+id/btn_login"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/btn_change_color"
            android:text="@string/btn_login"
            android:textColor="@color/holo_blue_bright"/>
        
        <Button android:id="@+id/btn_cancel"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/btn_change_color"
            android:text="@string/btn_cancel"
            android:layout_marginLeft="40dp"
            android:textColor="@color/holo_blue_bright"/>
    </LinearLayout>
Button的点击变色效果(点击时背景为红色,正常背景为灰色),这里我让登录和注册按钮都实现了这种变色,用以和其他按钮进行区别,下面是图片名称为“btn_change_color"d的主要代码:
<pre name="code" class="html"><selector xmlns:android="http://schemas.android.com/apk/res/android">
    
    <item android:state_pressed="true" android:drawable="@color/holo_red_light" />
    <item android:state_pressed="false" android:drawable="@android:color/darker_gray" />
    
</selector>
 
由于图片的显示不全,所以就不贴图了,大家可以自己在手机上调试查看当我们点击标题左侧,也就是一个“<返回”时,会退回到首页。这是因为我们对这个Button做了点击事件处理,也就是通过它的setOnClickListener()方法来进行监听,同样地,点击标题右侧的文字按钮“注册”后,会跳转到注册页面,也就是另外一个Activity,这个我会在后面的blog中详细讲解。对于登录和取消两个按钮,就在变色的时候做了简单的弹出框提示。

目录
相关文章
|
15天前
|
搜索推荐 Android开发 开发者
探索安卓开发中的自定义视图:打造个性化UI组件
【10月更文挑战第39天】在安卓开发的世界中,自定义视图是实现独特界面设计的关键。本文将引导你理解自定义视图的概念、创建流程,以及如何通过它们增强应用的用户体验。我们将从基础出发,逐步深入,最终让你能够自信地设计和实现专属的UI组件。
|
2月前
|
存储 Android开发 开发者
深入理解安卓应用开发的核心组件
【10月更文挑战第8天】探索Android应用开发的精髓,本文带你了解安卓核心组件的奥秘,包括Activity、Service、BroadcastReceiver和ContentProvider。我们将通过代码示例,揭示这些组件如何协同工作,构建出功能强大且响应迅速的应用程序。无论你是初学者还是资深开发者,这篇文章都将为你提供新的视角和深度知识。
|
2月前
|
数据可视化 Android开发 开发者
安卓应用开发中的自定义View组件
【10月更文挑战第5天】在安卓应用开发中,自定义View组件是提升用户交互体验的利器。本篇将深入探讨如何从零开始创建自定义View,包括设计理念、实现步骤以及性能优化技巧,帮助开发者打造流畅且富有创意的用户界面。
89 0
|
2月前
|
XML 前端开发 Java
安卓应用开发中的自定义View组件
【10月更文挑战第5天】自定义View是安卓应用开发的一块基石,它为开发者提供了无限的可能。通过掌握其原理和实现方法,可以创造出既美观又实用的用户界面。本文将引导你了解自定义View的创建过程,包括绘制技巧、事件处理以及性能优化等关键步骤。
|
2月前
|
测试技术 数据库 Android开发
深入解析Android架构组件——Jetpack的使用与实践
本文旨在探讨谷歌推出的Android架构组件——Jetpack,在现代Android开发中的应用。Jetpack作为一系列库和工具的集合,旨在帮助开发者更轻松地编写出健壮、可维护且性能优异的应用。通过详细解析各个组件如Lifecycle、ViewModel、LiveData等,我们将了解其原理和使用场景,并结合实例展示如何在实际项目中应用这些组件,提升开发效率和应用质量。
48 6
|
3月前
|
存储 开发框架 数据可视化
深入解析Android应用开发中的四大核心组件
本文将探讨Android开发中的四大核心组件——Activity、Service、BroadcastReceiver和ContentProvider。我们将深入了解每个组件的定义、作用、使用方法及它们之间的交互方式,以帮助开发者更好地理解和应用这些组件,提升Android应用开发的能力和效率。
210 5
|
3月前
|
缓存 搜索推荐 Android开发
安卓应用开发中的自定义View组件实践
【9月更文挑战第10天】在安卓开发领域,自定义View是提升用户体验和实现界面个性化的重要手段。本文将通过一个实际案例,展示如何在安卓项目中创建和使用自定义View组件,包括设计思路、实现步骤以及可能遇到的问题和解决方案。文章不仅提供了代码示例,还深入探讨了自定义View的性能优化技巧,旨在帮助开发者更好地掌握这一技能。
|
4月前
|
存储 搜索推荐 Java
探索安卓开发中的自定义视图:打造个性化UI组件Java中的异常处理:从基础到高级
【8月更文挑战第29天】在安卓应用的海洋中,一个独特的用户界面(UI)能让应用脱颖而出。自定义视图是实现这一目标的强大工具。本文将通过一个简单的自定义计数器视图示例,展示如何从零开始创建一个具有独特风格和功能的安卓UI组件,并讨论在此过程中涉及的设计原则、性能优化和兼容性问题。准备好让你的应用与众不同了吗?让我们开始吧!
|
4月前
|
XML 搜索推荐 Android开发
安卓开发中的自定义View组件实践
【8月更文挑战第30天】探索Android世界,自定义View是提升应用界面的关键。本文以简洁的语言带你了解如何创建自定义View,从基础到高级技巧,一步步打造个性化的UI组件。
|
4月前
|
存储 安全 物联网
Android经典实战之跳转到系统设置页面或其他系统应用页面大全
本文首发于公众号“AntDream”,关注获取更多技巧。文章总结了Android开发中跳转至系统设置页面的方法,包括设备信息、Wi-Fi、显示与声音设置等,并涉及应用详情与电池优化页面。通过简单的Intent动作即可实现,需注意权限与版本兼容性。每日进步,尽在“AntDream”。
427 2