- 浏览: 8487 次
- 性别:
文章分类
最新评论
package com.gcntc.news_editing_offline.ui;
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;
import android.widget.EditText;
import android.widget.Toast;
import com.gcntc.news_editing_offline.R;
public class Login extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.login);
Button button=(Button)findViewById(R.id.button1);
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
String user=((EditText)findViewById(R.id.editText1)).getText().toString();
String pwd=((EditText)findViewById(R.id.editText2)).getText().toString();
user=pwd="admin";
boolean flag=false;
for(int i=0;i<Data.USER.length;i++){
if(user.equals(Data.USER[i][0])){
if(pwd.equals(Data.USER[i][1])){
flag=true;
break;
}
}
}
if(flag){
Intent intent = new Intent(Login.this, MainActivity.class);
startActivity(intent);
}else{
Toast.makeText(Login.this, "用户名或密码错误!", Toast.LENGTH_SHORT).show();
}
}
});
}
}
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:orientation="vertical"
android:background="@drawable/welcome_bg" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_above="@+id/editText1"
android:layout_marginBottom="20dp"
android:src="@drawable/welcome_app_icon" />
<EditText
android:id="@+id/editText1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_centerHorizontal="true"
android:layout_above="@+id/editText2"
android:layout_marginTop="5dp"
android:ems="10"
android:textColorHint="@color/gray"
android:hint="用户名"
android:text="admin">
<requestFocus />
</EditText>
<EditText
android:id="@+id/editText2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_centerInParent="true"
android:ems="10"
android:hint="密码"
android:textColorHint="@color/gray"
android:inputType="textPassword"
android:text="admin"/>
<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_below="@+id/editText2"
android:layout_alignLeft="@id/editText2"
android:layout_alignRight="@id/editText2"
android:layout_marginTop="5dp"
android:background="@drawable/btn_login"
android:text="登录"
android:textColor="@color/white"
/>
</RelativeLayout>
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;
import android.widget.EditText;
import android.widget.Toast;
import com.gcntc.news_editing_offline.R;
public class Login extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.login);
Button button=(Button)findViewById(R.id.button1);
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
String user=((EditText)findViewById(R.id.editText1)).getText().toString();
String pwd=((EditText)findViewById(R.id.editText2)).getText().toString();
user=pwd="admin";
boolean flag=false;
for(int i=0;i<Data.USER.length;i++){
if(user.equals(Data.USER[i][0])){
if(pwd.equals(Data.USER[i][1])){
flag=true;
break;
}
}
}
if(flag){
Intent intent = new Intent(Login.this, MainActivity.class);
startActivity(intent);
}else{
Toast.makeText(Login.this, "用户名或密码错误!", Toast.LENGTH_SHORT).show();
}
}
});
}
}
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:orientation="vertical"
android:background="@drawable/welcome_bg" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_above="@+id/editText1"
android:layout_marginBottom="20dp"
android:src="@drawable/welcome_app_icon" />
<EditText
android:id="@+id/editText1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_centerHorizontal="true"
android:layout_above="@+id/editText2"
android:layout_marginTop="5dp"
android:ems="10"
android:textColorHint="@color/gray"
android:hint="用户名"
android:text="admin">
<requestFocus />
</EditText>
<EditText
android:id="@+id/editText2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_centerInParent="true"
android:ems="10"
android:hint="密码"
android:textColorHint="@color/gray"
android:inputType="textPassword"
android:text="admin"/>
<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_below="@+id/editText2"
android:layout_alignLeft="@id/editText2"
android:layout_alignRight="@id/editText2"
android:layout_marginTop="5dp"
android:background="@drawable/btn_login"
android:text="登录"
android:textColor="@color/white"
/>
</RelativeLayout>
发表评论
-
GestureDetector类及其用法
2014-09-02 14:41 0当用户触摸屏幕的 ... -
信鸽demo
2014-07-07 10:12 0DBOpenHelper package com.exam ... -
几种listitem griditem
2014-06-25 14:18 0<ListView and ... -
title上左右按钮
2014-06-25 13:33 324<RelativeLayout andr ... -
理财dome
2014-06-13 17:07 0带SQlite的项目 数据模型公共类 包名.model 收入信 ... -
选项卡片段
2014-06-10 14:34 441主界面的XML <TabHost xmlns:and ... -
Galley
2014-06-10 13:45 0Java源代码 public class Chapter7 ... -
GridView
2014-06-10 13:10 0例子一:继承ArrayAdapter作为自定义adapter ... -
Spinner
2014-06-10 10:33 0设置Spinner之中的元素内容,采用了ArrayAdapte ... -
ListView继承ListActivity来实现
2014-06-10 10:10 0ListActivity是一个全屏的list,如果我们需要定制 ... -
文件管理器(草稿篇)
2014-06-06 10:23 1019package com.example.wenjiangu ... -
手机通讯录
2014-06-06 10:05 405仅导出手机联系人 package com.example. ... -
发送手机号获取验证码
2014-06-06 09:03 0输入手机号 package com.example.boh ... -
照片缩放和缩略图
2014-06-06 08:41 830java private Bitmap comp(Bit ... -
获取自定义提示转轮
2014-06-03 10:21 430java LayoutInflater inflater = ... -
修改密码
2014-06-03 10:14 342bc_Button=(Button)findViewById( ... -
EditText边框
2014-06-03 10:07 520drawable my_edittext.xml <?x ... -
欢迎界面
2014-06-03 09:58 414package com.gcntc.news_editing_ ...
相关推荐
【仿QQ登陆界面设计详解】 在IT行业中,用户界面(UI)的设计至关重要,因为它直接影响到用户的体验和产品的吸引力。QQ作为中国最受欢迎的即时通讯软件之一,其登录界面早已深入人心。仿QQ登录界面的设计,旨在模仿...
在微信小程序开发中,登陆界面是用户接触应用的第一步,对于用户体验和安全性至关重要。本教程将深入探讨如何创建一个功能完善的微信小程序登陆界面,并确保其能够顺利跳转至其他页面。 首先,我们要理解微信小程序...
此外,考虑到标签“前端登陆界面”,这表明这个源码可能不涉及后端逻辑,即用户提交的信息不会直接与数据库交互,而是通过接口发送到服务器端。后端服务接收到这些信息后,会进行验证,如果验证成功,返回成功的响应...
"漂亮的太空登陆界面,登陆不再枯燥"这个标题暗示我们正在讨论一个独特的、具有太空主题的登录界面设计,这种设计旨在提升用户在登录过程中的视觉享受,从而打破传统单调的登录体验。 太空主题的登陆界面通常会运用...
标题中的“XP系统登陆界面诛仙”指的是将微软Windows XP操作系统的登录界面主题更换为以中国仙侠小说《诛仙》为主题的定制界面。这通常涉及到系统界面的个性化修改,允许用户根据自己的喜好来定制系统外观,提升使用...
Excelvba 登陆界面 包含代码
在这个“asp.net实现登陆界面”的项目中,我们将深入探讨如何在MVC框架下实现一个登录界面,包括数据库连接、动态样式和验证码功能。 首先,让我们关注ASP.NET MVC的核心组件。模型(Model)负责处理业务逻辑和数据...
### EAS 登陆界面的修改知识点详解 #### 一、EAS 登录界面修改背景与意义 在EAS项目的实施过程中,为了更好地融入客户的组织文化并体现企业的个性化需求,经常需要对EAS系统的用户界面进行定制化修改。这种修改...
在老师讲过之后,自己编写的一个简单的登陆界面 利用C++设置的简单登陆界面
自制简易qq登陆界面,第一次制作页面,写的有很多不足的地方,适合初学者看
在LabVIEW编程环境中,设计一个用户管理及登陆界面是一项关键任务,这涉及到用户验证、权限控制以及友好的交互体验。以下将详细介绍这个主题中的几个重要知识点: 1. **LabVIEW基础**:首先,理解LabVIEW的基本概念...
很好的登陆界面编制的程序,完全是用Visual C++ 编制的哦!
【鸿蒙Arkts简易登陆界面】是华为在开发其自主操作系统——鸿蒙(HarmonyOS)过程中,为开发者提供的一款示例应用。这个压缩包文件包含了一个基础的登录界面实现,帮助开发者快速理解和构建鸿蒙系统的用户界面。下面...
C# web编程,登陆界面代码,判断用户是否已登录。
描述中的"ext4.1简单的登陆界面 包含login.jsp 验证码.jsp"进一步说明了这个登录系统的基本构成。`login.jsp`是JavaServer Pages(JSP)文件,这是一种动态网页技术,用于处理用户登录请求,将用户的输入与服务器端...
在本资源包中,"18种后台登陆界面HTML源码" 提供了多种设计精美的后台登录页面模板,这些模板对于开发者来说是非常宝贵的参考资料,无论是初学者还是经验丰富的专业人员,都能从中受益。 后台登录界面是用户进入...
在压缩包的文件名称列表中提到的"登陆界面",很可能是这些模板的示例文件,它们可能包含了上述HTML、CSS和JavaScript代码的实现。学习和分析这些模板,可以了解到实际项目中的最佳实践,如如何编写可复用的CSS类,...
标题和描述所指的知识点为“Android手机通用登陆界面代码设计”,其中涉及到Android应用开发中的登录界面实现、SQLite数据库的应用以及Activity的使用。以下知识点详细说明: 1. Android登录界面设计: - 登录界面...
标题"好看的登陆界面LOGIN"表明我们关注的是登录界面的设计美学,追求视觉吸引力和操作便捷性。描述中提到的"可以做一些网站用到的登陆界面,后台。也可以作为后台的界面",暗示了这个界面设计不仅适用于前端用户...
"登陆界面"意味着游戏开始前,玩家需要通过输入用户名和密码或进行其他验证方式登录,这涉及到Java的认证和授权机制,可能使用了Java的安全框架如JASPI或Spring Security。"java课程设计"表示此项目可能是教学环境中...