码迷,mamicode.com
首页 > 其他好文 > 详细

2月11日学习日志

时间:2020-02-11 23:05:43      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:点击   cal   线性   layout   布局   简单的   oid   基本   学习日志   

今天学习了安卓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日学习日志

标签:点击   cal   线性   layout   布局   简单的   oid   基本   学习日志   

原文地址:https://www.cnblogs.com/sicilya/p/12297294.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!