随笔分类 -  Android

摘要:static成员变量public class Person { String name; static int age; Person() { System.out.println("Person 无参构造"); } void eat() { System.out.println("Person 吃饭"); }}也可以通过类名方式调用... 阅读全文
posted @ 2020-08-31 22:50 thomas_blog 阅读(114) 评论(0) 推荐(0) 编辑
摘要:super调用父类构造,必须要写在第一行//Person.javapublic class Person { String name; int age; Person() { System.out.println("Person 无参构造"); } Person(String name, int age) { System.out.prin... 阅读全文
posted @ 2020-08-31 22:28 thomas_blog 阅读(191) 评论(0) 推荐(0) 编辑
摘要:public class DbOpenHelper extends SQLiteOpenHelper { private static String name = "test.db"; /* 数据库名称 */ private static int version = 1; /* 数据库版本号 */ public DbOpenHelper(Context context) { ... 阅读全文
posted @ 2019-11-15 19:54 thomas_blog 阅读(396) 评论(0) 推荐(0) 编辑
摘要:完成共享参数的读写public class SharedPreference { private Context context; public SharedPreference(Context context) { // TODO Auto-generated constructor stub this.context = context; } ... 阅读全文
posted @ 2019-11-06 16:43 thomas_blog 阅读(575) 评论(0) 推荐(0) 编辑
摘要:出现如下错误:DDMS files not found: xxx\hprof-conv.exeThe connection to adb is down, and a severe error has occuredPlease ensure that adb is correctly located at 'D:\tools\android-sdk\platform-tools\adb.exe'... 阅读全文
posted @ 2019-11-05 22:53 thomas_blog 阅读(316) 评论(0) 推荐(0) 编辑
摘要:private NotificationManager manager; private Notification.Builder builder; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ... 阅读全文
posted @ 2019-11-05 20:14 thomas_blog 阅读(607) 评论(0) 推荐(0) 编辑
摘要:protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); button = (Button) findViewById(R.id.button); ... 阅读全文
posted @ 2019-11-05 18:35 thomas_blog 阅读(604) 评论(0) 推荐(0) 编辑
摘要:private int hourOfDay, minute; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); ... 阅读全文
posted @ 2019-11-05 15:43 thomas_blog 阅读(2991) 评论(0) 推荐(1) 编辑
摘要:private int year; private int monthOfYear; private int dayOfMonth; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setC... 阅读全文
posted @ 2019-11-05 15:27 thomas_blog 阅读(365) 评论(0) 推荐(0) 编辑
摘要:public class CustomDilaog { private Context context; private Dialog dialog; public CustomDilaog(Context context) { this.context = context; dialog = new Dialog(context); } ... 阅读全文
posted @ 2019-11-05 14:17 thomas_blog 阅读(1717) 评论(0) 推荐(0) 编辑
摘要:protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); button = (Button) findViewById(R.id.button); ... 阅读全文
posted @ 2019-11-05 13:10 thomas_blog 阅读(1175) 评论(0) 推荐(0) 编辑
摘要:protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); button = (Button) findViewById(R.id.button); ... 阅读全文
posted @ 2019-11-05 13:09 thomas_blog 阅读(3238) 评论(0) 推荐(0) 编辑
摘要:添加一个数组 @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); button = (Button) findViewB... 阅读全文
posted @ 2019-11-04 19:23 thomas_blog 阅读(392) 评论(0) 推荐(0) 编辑
摘要:private Button button; private final CharSequence items[] = { "北京", "上海", "广州" }; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);... 阅读全文
posted @ 2019-11-04 19:09 thomas_blog 阅读(2223) 评论(0) 推荐(0) 编辑
摘要:private Button button; private final CharSequence[] items = { "北京", "上海", "广州" }; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);... 阅读全文
posted @ 2019-11-04 18:47 thomas_blog 阅读(3459) 评论(0) 推荐(0) 编辑
摘要:private Button button; private final CharSequence[] items = { "北京", "上海", "广州" }; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);... 阅读全文
posted @ 2019-11-04 18:40 thomas_blog 阅读(1080) 评论(0) 推荐(0) 编辑
摘要:@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); button = (B 阅读全文
posted @ 2019-11-04 17:05 thomas_blog 阅读(828) 评论(0) 推荐(0) 编辑
摘要:@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); button = (Button) this.findViewBy... 阅读全文
posted @ 2019-11-04 16:39 thomas_blog 阅读(208) 评论(0) 推荐(0) 编辑
摘要:public class MainActivity extends Activity { private Button button; private ActionMode actionMode; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(save... 阅读全文
posted @ 2019-11-04 15:49 thomas_blog 阅读(888) 评论(0) 推荐(0) 编辑
摘要:public class MainActivity extends Activity { private ListView listView; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setCon... 阅读全文
posted @ 2019-11-04 13:58 thomas_blog 阅读(547) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示