当前位置:   article > 正文

android备忘录教学_Android Studio-备忘录功能实现

android studio 备忘录

终于,Android作业弄完了,最后一个,备忘录教学。

相关安卓教学内容:

首先第一步,还是老样子,创建一个NoteActivity。

image.png

第二步,打开activity_note.xml,开始布局,话不多说了,关于这一块的内容我在登录,注册当中已经教学的很详细了,直接上代码吧,反正我码再多字估计你们也不看....

xmlns:app="http://schemas.android.com/apk/res-auto"

xmlns:tools="http://schemas.android.com/tools"

android:layout_width="match_parent"

android:layout_height="match_parent"

tools:context=".NoteActivity"

android:background="@drawable/notebg">

android:id="@+id/textView3"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_alignParentTop="true"

android:layout_centerHorizontal="true"

android:layout_marginTop="10dp"

android:text="备忘录"

android:textSize="30dp"/>

android:id="@+id/editText3"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:ems="10"

android:minLines="17"

android:inputType="textMultiLine"

android:hint="点击此处输入文字"

android:background="@null"

android:layout_marginLeft="20dp"

android:layout_marginRight="20dp"

android:layout_alignParentStart="true"

android:layout_above="@+id/button4"

android:layout_alignParentEnd="true

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/657012
推荐阅读
相关标签
  

闽ICP备14008679号