android学习笔记
huskyui
如果不想被动,那就主动一点
展开
-
android:TextView
XML:可拓展标记语言 px :是屏幕的像素点 dp :一个基于density的抽象单位,如果一个160dpi的屏幕,1dp=1px dip :等同于dp sp :同dp相似,但还会根据用户的字体大小偏好来缩放(建议使用sp作为文本的单位,其它用dip)<TextView </>or<TextView ></TextView>sp android:textSi原创 2017-09-06 15:46:04 · 223 阅读 · 0 评论 -
ScrollView
activity_main.xml<?xml version="1.0" encoding="utf-8"?><ScrollView xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/ac原创 2017-09-11 20:40:54 · 179 阅读 · 0 评论 -
Log:向 Android 日志中写消息
activity_main.xml<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_wi原创 2017-09-11 17:39:02 · 291 阅读 · 0 评论 -
计分器
activity_main.xml<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+i原创 2017-09-10 11:20:59 · 903 阅读 · 0 评论 -
justJava小型app
activity_main.xml<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/原创 2017-09-09 21:21:39 · 351 阅读 · 0 评论 -
贺卡应用
<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/activity_main"原创 2017-09-08 09:39:19 · 401 阅读 · 0 评论 -
内边距和外边距
具体用法 padding android:paddingLeft="16dp" android:paddingRight="16dp" 还有 android:padding="16dp"marginandroid:layout_margin="16dp"或者android:layout_marginBottom="16dp"原创 2017-09-07 16:11:41 · 805 阅读 · 0 评论 -
RelativeLayout
基于父视图android:layout_alignParentTopIf "true", makes the top edge of this view match the top edge of the parent.这是居于顶部,如果是左上的话,android:layout_alignParentTop="true"android:layout_alignParentLeft="true"原创 2017-09-07 16:03:15 · 202 阅读 · 0 评论 -
LinearLayout
LinearLayout:水平布局 1.android:orientationShould the layout be a column or a row? Use “horizontal” for a row, “vertical” for a column. The default is horizontal. 垂直布局还是水平布局2.等间距布局 水平等间距 分别从左往右 1.la原创 2017-09-06 19:58:23 · 300 阅读 · 0 评论 -
ImageView
<ImageView android:src="@drawable/gakki" android:layout_width="wrap_content" android:layout_height="wrap_content" android:scaleType="centerCrop" />首先在drawable里面导入图片,gakk原创 2017-09-06 16:57:10 · 258 阅读 · 0 评论 -
Toast弹出信息
做了一个判断数量的框,范围是0-100,但是一旦小于0,或者大于100,就要提示用户,不能越界。 这个时候,根据视频中提示,知道了Toast,google了一会,看不懂,然后看了中文的 一般有5种(别的人博客介绍的) 就讲第一种吧,Toast.makeText(MainActivity.this, "Hello", Toast.LENGTH_SHORT).show();会在底部弹出,hello原创 2017-09-12 21:01:26 · 328 阅读 · 0 评论