摘要: ListView 新建一个ListView <ListView android:id="@+id/lv_1" android:layout_width="match_parent" android:layout_height="wrap_content"/> 在ListViewActivity声明并 阅读全文
posted @ 2021-08-20 19:27 憨憨的小熊饼干 阅读(75) 评论(0) 推荐(0)
摘要: 常用方法 setConteneView(View contentView):设置PopupWindow显示的View showAsDropDown(View anchor):相对于某个控件的位置(正左下方),无偏移 showAsDropDown(View anchor,int xoff, int y 阅读全文
posted @ 2021-08-20 19:26 憨憨的小熊饼干 阅读(137) 评论(0) 推荐(0)
摘要: 实现方式 AlertDialog.Builder builder = new AlertDialog.Builder(context);构建Dialog的各种参数 Builder.setlcon(int iconld);添加ICON Builder.setText(CharSrqrnce title 阅读全文
posted @ 2021-08-20 19:22 憨憨的小熊饼干 阅读(96) 评论(0) 推荐(0)
摘要: 常见属性详解 android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" android:background="#ffff00" app:navigationlcon="@drawable/ic_b 阅读全文
posted @ 2021-08-20 19:21 憨憨的小熊饼干 阅读(112) 评论(0) 推荐(0)
摘要: Notificaton与NotificationManager 创建一个NotificationMannager NotificationManager类是一个通知管理器,这个对象是由系统维护的服务,是以单例模式的方式获得,所以一般不直接实例化这个对象。在Activity中,可以使用Activity 阅读全文
posted @ 2021-08-20 19:19 憨憨的小熊饼干 阅读(197) 评论(0) 推荐(0)
摘要: 常用属性详解 android:max:进度条最大值 android:progress:进度条已完成进度值 android:indeterminate:如果设置成true,则进度条不精确显示进度 style="?android:attr/progressBarStyleHorizontal"水平进度条 阅读全文
posted @ 2021-08-18 09:22 憨憨的小熊饼干 阅读(104) 评论(0) 推荐(0)
摘要: Glide implementation 'com.github.bumptech.glide:glide:4.3.1' annotationProcessor 'com.github.bumptech.glide:compiler:4.3.1' 主要属性 android:src设置图片资源 and 阅读全文
posted @ 2021-08-18 09:21 憨憨的小熊饼干 阅读(53) 评论(0) 推荐(0)
摘要: 主要属性 android:hint输入提示 android:textColorHint输入提示文字颜色 android:inputType输入类型 android:drawableXxxx在输入框的指定方位添加图片 android:drawablePadding设置图片与输入内容的间距 androi 阅读全文
posted @ 2021-08-17 12:18 憨憨的小熊饼干 阅读(88) 评论(0) 推荐(0)
摘要: StateListDrawable StateListDrawable是Drawable资源的一种,可以根据不同的状态,设置不同的图片效果,关键节点<selector>,我们只需要将Button的background属性设置为该drawable资源即可轻松实现,按下按钮是不同的按钮颜色或背景 dra 阅读全文
posted @ 2021-08-13 09:50 憨憨的小熊饼干 阅读(433) 评论(0) 推荐(0)
摘要: TextView控件 layout_width:组件的宽度 layout_height:组件的高度 id:为TextView设置一个组件id text:设置显示的文本内容 textColor:设置字体颜色 textStyle:设置字体风格,三个可选值:normal(无效果),bold(加粗),ita 阅读全文
posted @ 2021-08-13 09:49 憨憨的小熊饼干 阅读(212) 评论(0) 推荐(0)