摘要:
学习margin和padding的区别,参考菜鸟教程的资料: 首先margin代表的是偏移,比如marginleft = "5dp"表示组件离容器左边缘偏移5dp; 而padding代表的则是填充,而填充的对象针对的是组件中的元素,比如TextView中的文字 比如为TextView设置paddin 阅读全文
摘要:
学习RelativeLayout布局。 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android: 阅读全文
摘要:
学习sqlite数据库的应用,完成了向数据库中存数据。 阅读全文
摘要:
完善家庭记账本的页面,为按钮添加了新颜色。使界面看起来更加的商业化。 阅读全文
摘要:
完成家庭记账本作业,实现了前端布局,后台的功能还没有实现。 明日任务:开始完善后台功能,包括存入数据库以及从数据库中调取数据。 阅读全文
摘要:
wrap_content布局 wrap_content表示让当前的控件大小能够刚好包含里面的内容,也就是由控件内容决定当前控件的大小 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tool 阅读全文
摘要:
学习了match_parent(fill_parent) 对其方式 match_parent表示让当前控件的大小和父布局的大小一样,也就是由父布局来决定当前控件的大小 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/an 阅读全文
摘要:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/LinearLayout1 阅读全文
摘要:
初步了解线性布局,Linearlayout 实现代码: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" an 阅读全文