原文: http://www.jizhuomi.com/android/example/134.html

本文要演示的Android开发实例是如何完成一个Android中的miniTwitter登录界面,下面将分步骤讲解怎样实现图中的界面效果,让大家都能轻松的做出美观的登录界面。

miniTwitter登录界面效果图

先贴上最终要完成的效果图:

miniTwitter登录界面的布局分析

首先由界面图分析布局,基本可以分为三个部分,下面分别讲解每个部分。

第一部分是一个带渐变色背景的LinearLayout布局,关于背景渐变色就不再贴代码了,效果如下图所示:

第二部分,红色线区域内,包括1,2,3,4  如图所示:

红色的1表示的是一个带圆角且背景色为#55FFFFFF(淡蓝色)的RelativeLayout布局,代码如下:

XML/HTML代码
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <shape xmlns:android="http://schemas.android.com/apk/res/android">
  3. <solid android:color="#55FFFFFF" />
  4. <!-- 设置圆角
  5. 注意:        bottomRightRadius是左下角而不是右下角  bottomLeftRadius右下角-->
  6. <corners android:topLeftRadius="10dp" android:topRightRadius="10dp"
  7. android:bottomRightRadius="10dp" android:bottomLeftRadius="10dp"/>
  8. </shape>

solid表示填充色,这里填充的是淡蓝色。corners是设置圆角。

dp (即dip,device independent pixels)设备独立像素:这个和设备硬件有关,一般我们为了支持WVGA、HVGA和QVGA ,不依赖像素。在android上开发的程序将会在不同分辨率的手机上运行。为了让程序外观不至于相差太大,所以引入了dip的概念。比如定义一个矩形10 x 10dip. 在分辨率为160dpi 的屏上,比如G1,正好是10 x 10像素。 而在240 dpi 的屏,则是15 x 15 像素。换算公式为 pixs = dips * (density/160)。density 就是屏的分辨率。

然后RelativeLayou的background引用此drawable,具体RelativeLayout设置如下:

XML/HTML代码
  1. <RelativeLayout
  2. android:id="@+id/login_div"
  3. android:layout_width="fill_parent"
  4. android:layout_height="wrap_content"
  5. android:padding="15dip"
  6. android:layout_margin="15dip"
  7. android:background="@drawable/background_login_div_bg"
  8. >
  9. </RelativeLayout>

padding 是指内边距(也就是指内容与边框的距离),layout_margin为外边距(它的上一层与边框的距离)。

接下来是区域2,为账号的文本和输入框,首先是账号的文本,代码如下:

XML/HTML代码
  1. <TextView
  2. android:id="@+id/login_user_input"
  3. android:layout_width="wrap_content"
  4. android:layout_height="wrap_content"
  5. android:layout_alignParentTop="true"
  6. android:layout_marginTop="5dp"
  7. android:text="@string/login_label_username"
  8. style="@style/normalText"/>

android:layout_alignParentTop 这里表示此TextView的位置处于顶部

android:layout_marginTop="5dp" 这里表示此TextView的边框与RelativeLayout的顶部边框距离有5dp

这里需要对这个TextView设置下字体颜色和字体大小,定义在res/style.xml里面:

XML/HTML代码
  1. <style name="normalText" parent="@android:style/TextAppearance">
  2. <item name="android:textColor">#444</item>
  3. <item name="android:textSize">14sp</item>
  4. </style>

定义账号的输入框,如下:

XML/HTML代码
  1. <EditText
  2. android:id="@+id/username_edit"
  3. android:layout_width="fill_parent"
  4. android:layout_height="wrap_content"
  5. android:hint="@string/login_username_hint"
  6. android:layout_below="@id/login_user_input"
  7. android:singleLine="true"
  8. android:inputType="text"/>

android:hint 输入框里面的提示文字,android:layout_below这里是设置为在账号的文本框的下面,android:singleLine 为单行输入(即你输入回车的时候不会在换行了),android:inputType这里text表示输入的类型为文本。

区域3是密码文本和输入框,同区域2,代码如下:

XML/HTML代码
  1. <TextView
  2. android:id="@+id/login_password_input"
  3. android:layout_width="wrap_content"
  4. android:layout_height="wrap_content"
  5. android:layout_below="@id/username_edit"
  6. android:layout_marginTop="3dp"
  7. android:text="@string/login_label_password"
  8. style="@style/normalText"/>
  9. <EditText
  10. android:id="@+id/password_edit"
  11. android:layout_width="fill_parent"
  12. android:layout_height="wrap_content"
  13. android:layout_below="@id/login_password_input"
  14. android:password="true"
  15. android:singleLine="true"
  16. android:inputType="textPassword"
  17. />

区域4,登录按钮:

XML/HTML代码
  1. <Button
  2. android:id="@+id/signin_button"
  3. android:layout_width="wrap_content"
  4. android:layout_height="wrap_content"
  5. android:layout_below="@id/password_edit"
  6. android:layout_alignRight="@id/password_edit"
  7. android:text="@string/login_label_signin"
  8. android:background="@drawable/blue_button"
  9. />

第三部分:底下的文字和两张图片,分别标记了1,2,3,4:

区域1:还是一个RelativeLayout,但这里设置的很简单,代码如下:

XML/HTML代码
  1. <RelativeLayout
  2. android:layout_width="fill_parent"
  3. android:layout_height="wrap_content">
  4. </RelativeLayout>

区域2:"没有账号?注册"这几个文字定义在string里面,包含了一个<a>标签:

XML/HTML代码
  1. <string name="login_register_link">没有帐号? <a href="#" mce_href="#">注册</a></string>

定义如下:

XML/HTML代码
  1. <TextView  android:id="@+id/register_link"
  2. android:text="@string/login_register_link"
  3. android:layout_width="wrap_content"
  4. android:layout_height="wrap_content"
  5. android:layout_marginLeft="15dp"
  6. android:textColor="#888"
  7. android:textColorLink="#FF0066CC"
  8. />

TextView是支持简单的html标签的,如<a>标签,但并不是支持所有标签,支持更复杂的html标签得用webView组件。

android:textColorLink是设置文字链接的颜色. 虽然TextView支持<a>标签,但是这里是不能点此链接的,不要被假象迷惑。

区域3是一直猫的卡通图片,貌似有点丑,将就下吧:

XML/HTML代码
  1. <ImageView android:id="@+id/miniTwitter_logo"
  2. android:src="@drawable/cat"
  3. android:layout_width="wrap_content"
  4. android:layout_height="wrap_content"
  5. android:layout_alignParentRight="true"
  6. android:layout_alignParentBottom="true"
  7. android:layout_marginRight="25dp"
  8. android:layout_marginLeft="10dp"
  9. android:layout_marginBottom="25dp"
  10. />

android:layout_alignParentRight="true" 位于layout的最右边

android:layout_alignParentBottom="true"  位于layout的最底部

android:layout_marginRight="25dp"  该imageView的边框距离layout边框有25dp,其他的margin类似。

区域4 是一个带文字的图片的ImageView

XML/HTML代码
  1. <ImageView android:src="@drawable/logo"
  2. android:layout_width="wrap_content"
  3. android:layout_height="wrap_content"
  4. android:layout_toLeftOf="@id/miniTwitter_logo"
  5. android:layout_alignBottom="@id/miniTwitter_logo"
  6. android:paddingBottom="8dp"
  7. />

android:layout_toLeftOf="@id/miniTwitter_logo"  在那个小猫ImageView的左边(水平位置)

android:layout_alignBottom="@id/miniTwitter_logo"  这里意思是这两个ImageView(区域3和区域4)下边缘对齐

android:paddingBottom="8dp"  图片距离ImageView底部边框8dp,也就是将图片上抬个8dp

实现miniTwitter登陆界面的具体步骤

具体步骤如下:

第一步:一些字符串定义

/miniTwitterLoginDemo/res/values/strings.xml

XML/HTML代码
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  3. <string name="hello">Hello World, LoginActivity!</string>
  4. <string name="login_label_username">帐号</string>
  5. <string name="login_label_password">密码</string>
  6. <string name="login_label_signin">登 录</string>
  7. <string name="login_status_logging_in">登录中...</string>
  8. <string name="login_username_hint">Email或手机号</string>
  9. <string name="login_register_link">没有帐号? <a href="#" mce_href="#">注册</a></string>
  10. <string name="app_name">miniTwitter</string>
  11. </resources>

第二步:

/miniTwitterLoginDemo/res/values/style.xml

XML/HTML代码
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  3. <style name="normalText" parent="@android:style/TextAppearance">
  4. <item name="android:textColor">#444</item>
  5. <item name="android:textSize">14sp</item>
  6. </style>
  7. </resources>

第三步:背景色为渐变色

/miniTwitterLoginDemo/res/drawable-mdpi/background_login.xml

XML/HTML代码
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <shape xmlns:android="http://schemas.android.com/apk/res/android">
  3. <gradient
  4. android:startColor="#FFACDAE5"
  5. android:endColor="#FF72CAE1"
  6. android:angle="45"
  7. />
  8. </shape>

第四步:背景色味淡蓝色且为圆角

/miniTwitterLoginDemo/res/drawable-mdpi/background_login_div_bg.xml

XML/HTML代码
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <shape xmlns:android="http://schemas.android.com/apk/res/android">
  3. <solid android:color="#55FFFFFF" />
  4. <!-- 设置圆角
  5. 注意:        bottomRightRadius是左下角而不是右下角  bottomLeftRadius右下角-->
  6. <corners android:topLeftRadius="10dp" android:topRightRadius="10dp"
  7. android:bottomRightRadius="10dp" android:bottomLeftRadius="10dp"/>
  8. </shape>

第五步:

/miniTwitterLoginDemo/res/layout/login.xml

XML/HTML代码
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:orientation="vertical"
  5. android:layout_width="fill_parent"
  6. android:layout_height="fill_parent"
  7. android:background="@drawable/background_login">
  8. <!-- padding 内边距   layout_margin 外边距
  9. android:layout_alignParentTop 布局的位置是否处于顶部 -->
  10. <RelativeLayout
  11. android:id="@+id/login_div"
  12. android:layout_width="fill_parent"
  13. android:layout_height="wrap_content"
  14. android:padding="15dip"
  15. android:layout_margin="15dip"
  16. android:background="@drawable/background_login_div_bg"
  17. >
  18. <!-- 账号 -->
  19. <TextView
  20. android:id="@+id/login_user_input"
  21. android:layout_width="wrap_content"
  22. android:layout_height="wrap_content"
  23. android:layout_alignParentTop="true"
  24. android:layout_marginTop="5dp"
  25. android:text="@string/login_label_username"
  26. style="@style/normalText"/>
  27. <EditText
  28. android:id="@+id/username_edit"
  29. android:layout_width="fill_parent"
  30. android:layout_height="wrap_content"
  31. android:hint="@string/login_username_hint"
  32. android:layout_below="@id/login_user_input"
  33. android:singleLine="true"
  34. android:inputType="text"/>
  35. <!-- 密码 text -->
  36. <TextView
  37. android:id="@+id/login_password_input"
  38. android:layout_width="wrap_content"
  39. android:layout_height="wrap_content"
  40. android:layout_below="@id/username_edit"
  41. android:layout_marginTop="3dp"
  42. android:text="@string/login_label_password"
  43. style="@style/normalText"/>
  44. <EditText
  45. android:id="@+id/password_edit"
  46. android:layout_width="fill_parent"
  47. android:layout_height="wrap_content"
  48. android:layout_below="@id/login_password_input"
  49. android:password="true"
  50. android:singleLine="true"
  51. android:inputType="textPassword"
  52. />
  53. <!-- 登录button -->
  54. <Button
  55. android:id="@+id/signin_button"
  56. android:layout_width="wrap_content"
  57. android:layout_height="wrap_content"
  58. android:layout_below="@id/password_edit"
  59. android:layout_alignRight="@id/password_edit"
  60. android:text="@string/login_label_signin"
  61. android:background="@drawable/blue_button"
  62. />
  63. </RelativeLayout>
  64. <RelativeLayout
  65. android:layout_width="fill_parent"
  66. android:layout_height="wrap_content"
  67. >
  68. <TextView  android:id="@+id/register_link"
  69. android:text="@string/login_register_link"
  70. android:layout_width="wrap_content"
  71. android:layout_height="wrap_content"
  72. android:layout_marginLeft="15dp"
  73. android:textColor="#888"
  74. android:textColorLink="#FF0066CC"
  75. />
  76. <ImageView android:id="@+id/miniTwitter_logo"
  77. android:src="@drawable/cat"
  78. android:layout_width="wrap_content"
  79. android:layout_height="wrap_content"
  80. android:layout_alignParentRight="true"
  81. android:layout_alignParentBottom="true"
  82. android:layout_marginRight="25dp"
  83. android:layout_marginLeft="10dp"
  84. android:layout_marginBottom="25dp"
  85. />
  86. <ImageView android:src="@drawable/logo"
  87. android:layout_width="wrap_content"
  88. android:layout_height="wrap_content"
  89. android:layout_toLeftOf="@id/miniTwitter_logo"
  90. android:layout_alignBottom="@id/miniTwitter_logo"
  91. android:paddingBottom="8dp"
  92. />
  93. </RelativeLayout>
  94. </LinearLayout>

第七步:

/miniTwitterLoginDemo/src/com/mytwitter/acitivity/LoginActivity.java

这里要注意的是,该Activity是无标题的,设置无标题需要在setContentView之前设置,否则会报错。

Java代码
  1. package com.mytwitter.acitivity;
  2. import android.app.Activity;
  3. import android.os.Bundle;
  4. import android.view.Window;
  5. public class LoginActivity extends Activity {
  6. @Override
  7. public void onCreate(Bundle savedInstanceState) {
  8. super.onCreate(savedInstanceState);
  9. requestWindowFeature(Window.FEATURE_NO_TITLE);
  10. setContentView(R.layout.login);
  11. }
  12. }

到此,Android中的miniTwitter登录界面的制作就介绍完毕了,是不是做出不错的登录界面并不算难呢?

Android开发实例之miniTwitter登录界面的实现的更多相关文章

  1. WPF开发实例——仿QQ登录界面

    原文:WPF开发实例--仿QQ登录界面 版权声明:本文为博主原创文章,如需转载请标明转载地址 http://blog.csdn.net/u013981858 https://blog.csdn.net ...

  2. Android开发1:基本UI界面设计——布局和组件

    前言 啦啦啦~本学期要开始学习Android开发啦~ 博主在开始学习前是完完全全的小白,只有在平时完成老师要求的实验的过程中一步一步学习~从此篇博文起,博主将开始发布Android开发有关的博文,希望 ...

  3. Android开发实例详解之IMF(Android SDK Sample—SoftKeyboard)

    本博前面的文章介绍了Android开发环境的搭建和模拟器的常用操作.本次,将以Android Sample中经典的SoftKeyboard项目为例,详细解析Android上一个小型项目的开发过程和注意 ...

  4. 国产化即时通信系统开发 -- 实现GGTalk的登录界面(Linux、Ubuntu、UOS、中标麒麟)

    距离2013年开源GGTalk以来,7年已经过去了,GGTalk现在有了完整的PC版.安卓版.iOS版(即将发布),以及Xamarin版本. 然而,时代一直在变化,在今天,有个趋势越来越明显,那就是政 ...

  5. Android开发实例-健康食谱应用(一)

    转载请注明出处:http://blog.csdn.net/einarzhang/article/details/44774635 本系列文章的重点是如何使用Android开发一个简单的健康食谱软件.使 ...

  6. Android 仿 窗帘效果 和 登录界面拖动效果 (Scroller类的应用) 附 2个DEMO及源码

    在android学习中,动作交互是软件中重要的一部分,其中的Scroller就是提供了拖动效果的类,在网上,比如说一些Launcher实现滑屏都可以通过这个类去实现.下面要说的就是上次Scroller ...

  7. Android开发之自己主动登录功能的实现

    在我们平时使用的手机应用都能够实现仅仅须要登陆一次账号后,第二次进入应用直接跳转到效果界面的效果,还有QQ的登陆框是怎样记忆我们的隐身登陆,保存账号选项的呢,这些都是通过使用SharedPrefere ...

  8. Android开发精彩博文收藏——UI界面类

    本文收集整理Android开发中关于UI界面的相关精华博文,共大家参考!本文不定期更新! 1. Android使用Fragment来实现TabHost的功能(解决切换Fragment状态不保存)以及各 ...

  9. Android开发实例总结

    写一个修改密码的界面 1画界面总结: 需要弄清楚什么地方用相对布局,什么地方使用线性布局 希望这过后自己花时间去弄清楚他们内嵌的的所有组件以及组件的属性包括用法. 2逻辑总结: 逻辑描述总是那么几步的 ...

随机推荐

  1. windows10重置后,鼠标键盘失灵

    用大白菜u盘选择工具修复一下驱动

  2. 不起眼,但是足以让你收获的JVM内存案例

    今天的这个案例我觉得应该会让你涨姿势吧,不管你对JVM有多熟悉,看到这篇文章,应该还是会有点小惊讶的,不过我觉得这个案例我分享出来,是想表达不管多么奇怪的现象请一定要追究下去,会让你慢慢变得强大起来, ...

  3. Collection体系、遍历、泛型

    Collection体系(集合类,它是一个接口):     两个子类:         List.Set(这两个子类也是接口)             List有两个常用子类:(值,不唯一,允许有重复 ...

  4. Cosmetic Airless Bottles To Meet Practical Requirements

    Today, people use cosmetic bottles, many of which are in cosmetic airless bottles. We can use them, ...

  5. php相关问题学习(以备面试)

    1.原味地址:[ http://www.yiichina.com/tutorial/57 ] 注:本文转自 http://www.icultivator.com/p/5535.html 整理了一份PH ...

  6. redis 字符串操作

    redis 字符串创建SET操作 127.0.0.1:6379> set number "10086" OK 127.0.0.1:6379> set book &quo ...

  7. 数据表设计:多对多关系E-R图转换——中间表

    链接:https://blog.csdn.net/vainfanfan/article/details/80568784 链接2:https://www.cnblogs.com/hiwangzi/p/ ...

  8. 关于 appium get_attribute 方法的坑

    (得要学着看源码) 问题: self.driver.find_element_by_id("id").get_attribute("content-desc") ...

  9. 关于anaconda-navigator打不开的问题

    19-10版本的anaconda-navigator打不开,没有图形化界面就是很糟糕 在命令行执行各种命令都没有问题,说明anaconda并没有出现大的问题,可能只是图形化界面出了问题. 执行 ana ...

  10. 【PAT甲级】1087 All Roads Lead to Rome (30 分)(dijkstra+dfs或dijkstra+记录路径)

    题意: 输入两个正整数N和K(2<=N<=200),代表城市的数量和道路的数量.接着输入起点城市的名称(所有城市的名字均用三个大写字母表示),接着输入N-1行每行包括一个城市的名字和到达该 ...