android studio 使用

时间:2024-10-28 02:02:12编辑:阿星

Android Studio怎么用

  目前如火如荼的android应用开发遍地开花,为了更好的适应移动互联网的发展,掌握移动开发成为程序员必须掌握的一门技能。本文通过一个简单案例讲述如果通过Android Studio开发一个用户登录界面。
  工具/原料
  Android Studio
  Android SDK
  java jdk
  一台可以用于调试的安卓手机
  方法/步骤
  我们项目的前提是你已经将基本的运行环境及sdk都已经安装好了,读者可自行百度环境配置相关内容,本文不再赘述。右键点击new-->Module,Module相当于新建了一个项目。如图所示

  选择Android Application,点击next

  将My Module 和app改成自己项目相应的名字,同时选择支持的Android版本

  这一步我们选择Blank Activity,自己手动编写登录界面,而不依赖系统内置的Login Activity,一直点击next,最后点击finish就完成了项目的创建

  在project下我们可以看到出现了我们刚才创建的login项目

  展开res/layout,点击打开activity_main.xml文件,在这个文件里我们将完成登录界面的编写

  这是初始的主界面,还没有经过我们编写的界面,Android Studio有一个很强大的预览功能,相当给力

  我们将activity_main.xml的代码替换成如下代码:
  <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:gravity="center_vertical"
  android:stretchColumns="0,3">
  
  
  <TextView
  android:text="账 号:"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:textSize="24px"
  />
  <EditText
  android:id="@+id/account"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:textSize="24px"
  android:minWidth="220px"/>
  
  
  
  
  <TextView
  android:text="密 码:"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"

  />
  <EditText
  android:id="@+id/pwd"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:minWidth="220px"
  android:textSize="24px"
  android:inputType="textPassword"/>
  
  
  
  
  <Button
  android:id="@+id/login"
  android:text="登录"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  />
  <Button
  android:id="@+id/quit"
  android:text="退出"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"/>
  
  
  
  预览效果如图

  步骤阅读
  使用Android 手机进行测试,大功告成

  END
  注意事项
  一定要先配置好java运行环境及android运行环境
  跟着步骤操作


Android Studio怎么用

在windows平台下使用android studio创建项目步骤如下。1、双击打开Android studio之后选择start a new Android Studio project,如下图:2、然后填上项目名和包名,然后点击Next如下图:3、然后选择创建项目最小的sdk版本,然后点击Next如下图:4、然后选择创建的页面,这里选择空白页面,然后点击next如下图:5、最后是项目的入口类名和布局文件名,这里选择默认,点击finish,如下图:

上一篇:公众号开发

下一篇:没有了