上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 29 下一页
摘要: 主要用了一些sql语句和学习了基本的增删改查的语句,完成了数据库的链接。 代码如下: mainactivity代码: package com.example.sqlite; import androidx.annotation.Nullable; import androidx.appcompat. 阅读全文
posted @ 2023-03-07 19:19 小彭先森 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 一.主要学习了一些进行页面跳转的方法 (1)法一:显示意图(也是我主要掌握的方法) 第个页面实现跳转代码: 第一个页面实现跳转代码: Intent intent=new Intent(MainActivity.this,MainActivity2.class);//跳转页面 启动意图 //通过意图传 阅读全文
posted @ 2023-03-06 18:54 小彭先森 阅读(68) 评论(0) 推荐(0) 编辑
摘要: package zy03; import java.io.*; import java.util.*; public class ceshi { private static String str=""; private static Scanner sc=new Scanner(System.in 阅读全文
posted @ 2023-03-05 15:18 小彭先森 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 二。编辑框 <EditText android:layout_width="wrap_content" android:layout_height="wrap_content" android:hint="输入用户名" ></EditText> 阅读全文
posted @ 2023-03-03 21:48 小彭先森 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 一。单选框 <RadioGroup android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="horizontal"> <RadioButton android:layo 阅读全文
posted @ 2023-03-02 20:01 小彭先森 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 一.文本框 代码部分 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="h 阅读全文
posted @ 2023-02-28 17:45 小彭先森 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 一.线性布局 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/mylinear" andr 阅读全文
posted @ 2023-02-27 20:16 小彭先森 阅读(51) 评论(1) 推荐(0) 编辑
摘要: 当我们在java文件中自己写入了一些log调试信息,如下图: 那此时我们如何在大量的后台日志中寻找出自己的log调试信息呢?如下图,我们在package:mine后面输入tag:mylog查找自己的log调试信息。 阅读全文
posted @ 2023-02-26 20:17 小彭先森 阅读(20) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title> 图片音频视频学习</title> </head> <body> <!-- img:定义图片 src:规定显示图片的位置 height:定义图像的高度 widt 阅读全文
posted @ 2023-02-26 18:42 小彭先森 阅读(61) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html><!--html5的标签--> <html> <head> <meta charset="utf-8"><!--定义页面的字符集--> <title>html 基础标签</title> </head> <body> <h1>标题1</h1> <h2>标题2</h2> < 阅读全文
posted @ 2023-02-25 18:27 小彭先森 阅读(5) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 29 下一页