上篇文章介绍了界面Activity的启动方式和生命周期,本篇将继续介绍在界面Activity中的内容是如何绘制展示给用户的。 在Android系统上运行新创建的界面Activtiy,给用户展示的是空白的。而得益于AndroidStudio的强大模板支持,新创建的界面Activity会自动重写onCr ...
分类:
移动开发 时间:
2021-07-12 17:42:33
阅读次数:
0
#pragma mark - TextViewDelegate - (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text { if ( ...
分类:
移动开发 时间:
2021-07-01 17:00:12
阅读次数:
0
实现效果图: 代码实现: Step 1:编写矩形边框的Drawable: <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" > <!-- 设 ...
分类:
移动开发 时间:
2021-06-21 20:14:59
阅读次数:
0
程序的最主要的功能在于对数据进行操作,通过对数据进行操作来实现某个功能。而数据库就是很重要的一个方面的,Android中内置了小巧轻便,功能却很强的一个数据库–SQLite数据库。那么就来看一下在Android程序中怎么去操作SQLite数据库来实现一些需求的吧,仍然以一个小例子开始: 在创建And ...
分类:
移动开发 时间:
2021-06-15 18:45:33
阅读次数:
0
View 看得见 EidtText TextView checkBox Button 看不见的 ViewGroup LinearLayout RelativeLayout FrameLayout 通用的属性 layout_width layout_height layout_margin 上下左右 ...
分类:
其他好文 时间:
2021-06-02 19:42:17
阅读次数:
0
<?xml version="1.0" encoding="utf-8"?> <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:a ...
分类:
其他好文 时间:
2021-05-24 09:58:36
阅读次数:
0
textview基本属性: text setText 设置文本的内容 textColor setTextColor 设置文本的颜色 textSize setTextSize 设置文本大小 textAppearance setTextAppearance 设置文本的分格,风格定义在res/styles ...
分类:
其他好文 时间:
2021-05-20 17:48:35
阅读次数:
0
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/ ...
分类:
移动开发 时间:
2020-12-25 11:54:21
阅读次数:
0
package com.example.aaa; import com.example.test.R; import android.os.Bundle; import android.app.Activity; import android.view.Menu; public class Main ...
分类:
移动开发 时间:
2020-12-11 12:36:00
阅读次数:
22
IQKeyboardManager不支持YYTextView的响应是因为没有监听YYTextView的自定义通知 所以我们手动监听YYTextViewTextDidBeginEditingNotification和YYTextViewTextDidEndEditingNotification就可以了 ...
分类:
其他好文 时间:
2020-11-17 12:25:09
阅读次数:
5