
Android移动应用开发
爱喝水的李师傅
空有人间自由身
却非人间自由人
展开
-
对话框控件
//单选对话框new AlertDialog.Builder(this) .setTitle("请做出你的选择") .setIcon(R.mipmap.ic_launcher) .setPositiveButton("确认",null) .setNegativeButton("取消",null) .setSingleChoiceItems(new String[]{"上海", "广东", "北京", "浙江"}, 0, new DialogInterface.OnClickListene原创 2020-11-18 20:06:13 · 350 阅读 · 0 评论 -
隐式Intent-打开浏览器
<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="原创 2020-11-18 17:09:14 · 386 阅读 · 0 评论 -
RadioButton
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="fi原创 2020-11-01 16:55:53 · 1865 阅读 · 6 评论 -
你的主机中的软件中止了一个已建立的连接
这个是Android Studio中出现的问题,一般来说这个是突发性的问题,重启就好了。原创 2020-11-01 12:04:05 · 871 阅读 · 0 评论 -
CheckBox
CheckBox:复选框RadioButton:单选按钮<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tool原创 2020-10-29 20:56:37 · 1046 阅读 · 1 评论 -
Button
<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="原创 2020-10-29 20:14:41 · 135 阅读 · 0 评论 -
框架布局
<?xml version="1.0" encoding="utf-8"?><FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="mat原创 2020-10-29 19:24:31 · 199 阅读 · 0 评论 -
表格布局
<?xml version="1.0" encoding="utf-8"?><TableLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="fil原创 2020-10-29 19:13:43 · 99 阅读 · 0 评论 -
相对布局
<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="原创 2020-10-29 18:53:49 · 107 阅读 · 0 评论 -
线性布局
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="ma原创 2020-10-29 18:28:44 · 135 阅读 · 0 评论