笔者正在自学Android开发,随着学习的进程的加深,我会写一些小白级别的案例,一是为了保存代码和笔记,二也是为了供同样热爱Android的小伙伴参考。这里写了一个小案例,叫电话拨号器。下面详细介绍如何做:对于我们初学者来说,做案例不同于做
笔者正在自学Android开发,随着学习的进程的加深,我会写一些小白级别的案例,一是为了保存代码和笔记,二也是为了供同样热爱Android的小伙伴参考。这里写了一个小案例,叫电话拨号器。下面详细介绍如何做:
对于我们初学者来说,做案例不同于做项目,我们是为了学习所以做案例基本上就是以下三步:
1、做界面UI
2、做业务逻辑,就是具体的编程实现
3、做测试,可以用模拟器,也可用真机。(这里说一下,如果你的电脑配置不是很高,但有Android的真机的话,用真机吧,模拟器真的是太慢了)
首先,做UI,大概是酱紫的:
这个很简单了,需要添加三个控件“Text View”“Edit Text”“Button”,再加一个布局,布局可以自己选我用的LinearLayout。
<LinearLayout android:layout_width="368dp" android:layout_height="495dp" android:layout_marginTop="8dp" android:orientation="vertical" android:visibility="visible" app:layout_constraintTop_toTopOf="parent" tools:layout_editor_absoluteX="8dp"> <TextView android:id="@+id/textView" android:layout_width="match_parent" android:textSize="@dimen/textsize" android:layout_height="wrap_content" android:text="@string/text_1" /> <EditText android:id="@+id/editText" android:layout_width="match_parent" android:layout_height="wrap_content" android:ems="10" android:inputType="number" /> <Button android:id="@+id/button" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="@string/text_2" /> </LinearLayout>
--结束END--
本文标题: Android电话拨号器实例详解
本文链接: https://lsjlt.com/news/221999.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0