结对项目——My note(三)

时间:2017-06-16 14:00:12   收藏:0   阅读:231

备忘录添加日志的界面代码

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android 

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

"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity" >
     
    <ListView
        android:id="@android:id/list"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1" >
    </ListView>
     
    <Button
        android:id="@+id/btnAddNote"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="添加日志" />
     
</LinearLayout>

技术分享

原文:http://www.cnblogs.com/lixue1206/p/7027109.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!