当前位置:   article > 正文

Android开发之简单备忘录_android备忘录完整代码_安卓开发备忘录怎么实现添加

安卓开发备忘录怎么实现添加

准备实现的功能:

  • 一个提示输入文字的控件,输入准备添加的文字。
  • 点击添加按钮向ListView中添加输入的文字。
  • 使用ListView展示添加的数据。

按照要求,先实现整体布局。使用LinearLayout线性布局,分别使用TextView、EditView、Button、ListView控件实现大致框架。 布局文件代码如下:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_height="match_parent"
    android:layout_width="match_parent">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="请输入备忘录内容"
        android:gravity="center"
        android:textAlignment="center"
        android:textSize="24sp" />

    <EditText
        android:id="@+id/edit"
        android:layout_width="match_parent"
        android:layout_height="
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/寸_铁/article/detail/797910
推荐阅读
相关标签
  

闽ICP备14008679号