2月11日学习日志
Posted sicilya
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2月11日学习日志相关的知识,希望对你有一定的参考价值。
今天学习了安卓Studio的基本知识点:控件,排列,简单的逻辑关系
一.
常用控件:
1. TextView(文本框)
2. ImageView(图片框)
3. Button(按钮)
二,
layout->长宽
按照内容安排控件长宽:
android:layout_width="wrap_content"
android:layout_height="wrap_content"
剩余空间的长宽:
android:layout_width="match_parent"
android:layout_height="match_parent"
(也可以给固定的值如:50dp)
三,
如何放入图片?
将图片放在 res/drawable 下
如何调用图片?
图片空间中写 android:src="@drawable/map" (map为图片名)
四,
为控件添加id:
android:id="@+id/tv" (tv为id名)
五,
Button
按钮上的字:
android:text="点击打开"
文本框上的字也是text.
六,
1.
线性布局: LinearLayout
2.
垂直排序: android:orientation="vertical"
水平排序: android:orientation="horizontal"
1.
背景:
background
@android:color/background_dark -->纯黑色
2.
对齐方式:
相对于自己:
gravity
相对于父控件:
layout_gravity
值:center
3.行边距:
padding 单位:dp
4.
剩余空间权重占比
layout_weight:1
以上是关于2月11日学习日志的主要内容,如果未能解决你的问题,请参考以下文章