Android实现简洁的APP登录界面

 更新时间:2021年01月27日 10:24:30   作者:安小松丶  
这篇文章主要为大家详细介绍了Android简洁登录界面的编写代码,实现简单的登录,用户名密码验证功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

今天需求要做一个所有app都有的登录界面,正好巩固一下我们之前学的基础布局知识。

先来看下效果图

1.布局的xml文件

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout     xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:background="#2197db"
 >
 <ImageView
  android:id="@+id/loginbutton"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_centerHorizontal="true"
  android:layout_marginTop="40dp"
  android:src="@drawable/login_pic"/>
 
<LinearLayout
  android:id="@+id/input"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_below="@+id/loginbutton"
  android:layout_marginLeft="28dp"
  android:layout_marginRight="28dp"
  android:background="#fff"
  android:orientation="vertical">
<LinearLayout
  android:layout_width="fill_parent"
  android:layout_height="44dp"
  android:background="#fff"
  android:gravity="center_vertical"
  android:orientation="horizontal" >

 <EditText
   android:id="@+id/userId"
   android:layout_width="wrap_content"
   android:layout_height="fill_parent"
   android:layout_weight="1"
   android:background="@null"
   android:imeOptions="actionDone"
   android:textSize="16sp"
   android:ems="10"
   android:hint="请输入用户名"
   >
 </EditText>
<Button
   android:id="@+id/button_bar"
   android:layout_width="20dp"
   android:layout_height="20dp"
   android:layout_marginRight="8dp"
   android:layout_marginLeft="1dp"
   android:background="@drawable/login_input_arrow"
   />

 </LinearLayout>
 <View
   android:layout_width="fill_parent"
   android:layout_height="1.0px"
   android:layout_marginLeft="1.0px"
   android:layout_marginRight="1.0px"
   android:background="#ffc0c3c4" />
<EditText
   android:id="@+id/pass"
   android:layout_width="fill_parent"
   android:layout_height="44.0dip"
   android:background="#00ffffff"
   android:gravity="center_vertical"
   android:inputType="textPassword"
   android:maxLength="16"
   android:maxLines="1"
   android:textColor="#ff1d1d1d"
   android:textColorHint="#ff666666"
   android:textSize="16.0sp"
   android:hint="请输入密码"
   />
 </LinearLayout>
 <Button
  android:id="@+id/loginBtn"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:layout_below="@+id/input"
  android:layout_marginTop="10dp"
  android:background="#3aadfd"
  android:text="登 录"
  android:textColor="#ffffff"
  android:textSize="18dp"
  android:layout_centerHorizontal="true"
  android:layout_marginLeft="28dp"
  android:layout_marginRight="28dp"/>
 <TextView
  android:text=""
  android:layout_width="wrap_content"
  android:layout_below="@+id/loginBtn"
  android:layout_height="wrap_content"
  android:layout_centerHorizontal="true"
  android:id="@+id/promptText"
  android:textColor="#ff0000"
  android:layout_marginTop="10dp"
  android:textSize="18sp"/>

</RelativeLayout>

2.java部分代码

public class LoginActivity extends Activity implements View.OnClickListener{
  private static final String TAG = "login";
   Button loginBtn = null;
   EditText useridEt = null;
   EditText passEt = null;
   TextView promptText = null;
   @Override
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_login);
  loginBtn = (Button) findViewById(R.id.loginBtn);
  loginBtn.setOnClickListener(this);
  useridEt = (EditText) findViewById(R.id.userId); 
  passEt = (EditText) findViewById(R.id.pass);
  promptText = (TextView) findViewById(R.id.promptText);
  OkHttpClient okHttpClient = new OkHttpClient.Builder()
    .connectTimeout(10000L, TimeUnit.MILLISECONDS)
    .readTimeout(10000L, TimeUnit.MILLISECONDS)
    .build();
  OkHttpUtils.initClient(okHttpClient);

 @Override
 public void onClick(View v) {
  String userid = useridEt.getText().toString().trim();
  String pass = passEt.getText().toString().trim();
  if(userid.equals("")){
   promptText.setText(R.string.userIdError);
   return ;
  }
  if(pass.equals("")){
   promptText.setText(R.string.passError);
   return ;
  }
 WebConstant.digest = ("Basic " + new String(Base64.encode((userid + ':' + pass).getBytes(), Base64.DEFAULT))).replace("\n", "");

   String url = WebConstant.REQUESTPATH+"/users/" + userid+"?getAll=true";
   OkHttpUtils.get()
     .url(url).addHeader("Authorization", WebConstant.digest).addHeader("Accept-Language","zh-CN")
     .build().execute(new Callback()
     {
      @Override
      public String parseNetworkResponse(Response response, int id) throws Exception {
       String string = response.body().string();
       JSONObject jsonObj = new JSONObject(string);
       if(jsonObj.get("userName")!=null){
        WebConstant.userId = (String)jsonObj.get("userId");
        WebConstant.userName = (String)jsonObj.get("userName");
        return (String) jsonObj.get("userName");
       }
       return null;
      }

      @Override
      public void onError(Call call, Exception e, int id) {
       WebConstant.digest = null;
       promptText.setText(R.string.loginError);
       Log.i(TAG,e.getMessage());
       e.printStackTrace();
      }

      @Override
      public void onResponse(Object response, int id) {
       promptText.setText(R.string.loginSuccess+" "+response);
       Intent intent = new Intent();
       LoginActivity.this.setResult(WebConstant.RESULT_OK, intent);
       LoginActivity.this.finish();
      }
     });

 }
}  

简单的登录,用户名密码验证。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

相关文章

  • Android中使用Service实现后台发送邮件功能实例

    Android中使用Service实现后台发送邮件功能实例

    这篇文章主要介绍了Android中使用Service实现后台发送邮件功能的方法,结合实例形式分析了Service实现邮件的发送、接收及权限控制相关技巧,需要的朋友可以参考下
    2016-01-01
  • Android实现顶部悬浮效果

    Android实现顶部悬浮效果

    这篇文章主要为大家详细介绍了Android实现顶部悬浮效果,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-10-10
  • Android实现自定义的卫星式菜单(弧形菜单)详解

    Android实现自定义的卫星式菜单(弧形菜单)详解

    相信大家经常在应用中会看到卫星菜单,那么这篇文章就来介绍在Android中如何实现自定义的卫星式菜单(弧形菜单),有需要的可以参考学习。
    2016-08-08
  • kotlin $ 字符串模版的使用详解

    kotlin $ 字符串模版的使用详解

    $ 在kotlin 中当做字符串模版使用,作用就是在字符串里面识别自己定义的字符,这篇文章主要介绍了kotlin $ 字符串模版的使用,需要的朋友可以参考下
    2024-01-01
  • Android中Socket大文件断点上传示例

    Android中Socket大文件断点上传示例

    本篇文章主要介绍了Android中Socket大文件断点上传示例,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-02-02
  • Android仿微信雷达辐射搜索好友(逻辑清晰实现简单)

    Android仿微信雷达辐射搜索好友(逻辑清晰实现简单)

    仿微信雷达扫描,仿安卓微信、云播雷达扫描动画效果点击中间的黑色圆圈开始扫描动画,再次点击复位,需要这种效果的朋友可以自己下载看一下
    2016-02-02
  • Android用文件存储数据的方法

    Android用文件存储数据的方法

    这篇文章主要为大家详细介绍了Android用文件存储数据的方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-10-10
  • Android Support Palette使用详解

    Android Support Palette使用详解

    这篇文章主要介绍了Android Support Palette使用详解,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2018-07-07
  • 总结Android中MD风格相关控件

    总结Android中MD风格相关控件

    自Android5.0发布以来,谷歌推出全新的Material Desigen设计风格,时过一年多了,在国内也看到很多应用在慢慢适应MD设计风格。今天小编给大家总结下Android中MD风格相关控件的知识,有需要的可以参考学习。
    2016-08-08
  • android实现多点触摸应用

    android实现多点触摸应用

    这篇文章主要为大家详细介绍了android实现多点触摸应用,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-05-05

最新评论