如何使用Android Studio开发用户登录界面

 我来答
书快人的1J
2016-03-08 · TA获得超过214个赞
知道答主
回答量:111
采纳率:0%
帮助的人:72.2万
展开全部

1.前提是已经将基本的运行环境及sdk都已经安装好了,本文不再赘述。右键点击new-->Module,Module相当于新建了一个项目。如图所示

2.选择Android Application,点击next

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

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

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

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

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

8.将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">

    <TableRow>

        <TextView />

        <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 />

    </TableRow>

    <TableRow android:layout_marginTop="20px">

        <TextView />

        <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"/>

        <TextView />

    </TableRow>

    <TableRow android:layout_marginTop="20px">

        <TextView />

        <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"/>

        <TextView />

    </TableRow>

</TableLayout>


9.使用Android 手机进行测试,大功告成

AsunaerK
2016-02-26 · TA获得超过1.1万个赞
知道大有可为答主
回答量:4274
采纳率:84%
帮助的人:593万
展开全部

1、新建项目

2、设置sdk版本支持

3、选择登录界面项目

5、Next

6、ok收工。

本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
漆皖清Fk
2016-02-29 · TA获得超过2526个赞
知道小有建树答主
回答量:6020
采纳率:0%
帮助的人:1241万
展开全部
安装完之后,打开GUI界面,可以review代码,调试
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式