Android 期末text的 浅浅复习

Android 编程题text

文章目录

  • 前言
  • 一.预测编程题1
    • 1.代码解析
    • 2.具体代码
  • 二.预测编程题2
    • 1.代码解析
    • 2.具体代码
  • 三.预测编程题3
    • 1.代码解析
    • 2.具体代码
  • 四.预测编程题4
    • 1.代码解析
    • 2.具体代码
  • 五.预测编程题5
    • 1.代码解析
    • 2.具体代码
  • 六.预测编程题6
    • 1.代码解析
    • 2.具体代码
  • 总结


前言

个人对Android期末的编程text的一个浅浅的练习

预测题目在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

一.预测编程题1

(考点:输入框、单选框、多选框)
在这里插入图片描述

1.代码解析

1.1 头部部件
页面导航条&&放入用户图片
1.2 输入框部件
用LinearLayout 包住的输入框部件
1.3 单选框部件

1.4 多选框部件

1.5 底部按钮部件

2.具体代码

activity_main.xml 代码如下:

<?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="match_parent"android:layout_height="match_parent"android:orientation="vertical"tools:context=".MainActivity"><TextViewandroid:layout_width="match_parent"android:layout_height="wrap_content"android:background="#1B7DE6"android:gravity="center"android:text="注册/登录"android:textStyle="bold"android:textSize="28dp"/><ImageViewandroid:layout_width="100dp"android:layout_height="100dp"android:layout_gravity="center"android:layout_margin="15dp"android:src="@drawable/a1"/><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:gravity="center"android:layout_margin="2dp"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="用户名:"android:gravity="center"android:textSize="24dp"android:textStyle="bold"/><EditTextandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:hint="请输入用户名"android:maxLines="1"android:textColor="#20A9E8"android:textSize="22dp"android:textStyle="bold" /></LinearLayout><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:gravity="center"android:layout_margin="2dp"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="密码:"android:gravity="center"android:textSize="24dp"android:textStyle="bold"/><EditTextandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:gravity="center"android:hint="请输入密码"android:maxLines="1"android:textColor="#20A9E8"android:textSize="22dp"android:textStyle="bold" /></LinearLayout><LinearLayoutandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:orientation="horizontal"android:layout_gravity="center"android:gravity="center"android:layout_margin="2dp"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="性别:"android:textSize="24dp"android:textStyle="bold"/><RadioGroupandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:orientation="vertical"><RadioButtonandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="male----男"android:textSize="22dp"android:textStyle="bold"/><RadioButtonandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="female--女"android:textSize="22dp"android:textStyle="bold"/></RadioGroup></LinearLayout><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:layout_margin="2dp"><TextViewandroid:layout_width="120dp"android:layout_height="60dp"android:text="爱好:"android:gravity="center"android:textSize="24dp"android:textStyle="bold"/><CheckBoxandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_gravity="center"android:text="烹饪"android:textSize="24dp"android:layout_margin="2dp"android:textStyle="bold"/><CheckBoxandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_gravity="center"android:text="排球"android:textSize="24dp"android:layout_margin="2dp"android:textStyle="bold"/><CheckBoxandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="音乐"android:textSize="24dp"android:layout_margin="2dp"android:textStyle="bold"/></LinearLayout><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:gravity="center"android:layout_margin="2dp"><Buttonandroid:layout_width="160dp"android:layout_height="wrap_content"android:layout_gravity="center"android:text="确定"android:textSize="28dp"android:textStyle="bold"android:layout_margin="15dp"android:background="#1FEDF4"/><Buttonandroid:layout_width="160dp"android:layout_height="wrap_content"android:text="取消"android:textSize="28dp"android:textStyle="bold"android:layout_margin="15dp"android:background="#AC91DA"/></LinearLayout>
</LinearLayout>

二.预测编程题2

(考点:多选框及呈现选中状态)
以提示框返回选中状态

1.代码解析

1.1 activity_main.xml
在这里插入图片描述
在这里插入图片描述
1.2 MainActivity.java
在这里插入图片描述
在这里插入图片描述

2.具体代码

2.1 activity_main.xml

<?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="match_parent"android:layout_height="match_parent"android:orientation="vertical"tools:context=".MainActivity"><TextViewandroid:id="@+id/tv1"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="请选择你的兴趣爱好:"android:textSize="28dp"android:textStyle="bold"/><LinearLayoutandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_gravity="center"android:layout_marginTop="15dp"><CheckBoxandroid:id="@+id/ck1"android:layout_width="wrap_content"android:layout_height="match_parent"android:text="煮饭"android:textSize="28dp"android:textStyle="bold"android:layout_margin="2dp"/><CheckBoxandroid:id="@+id/ck2"android:layout_width="wrap_content"android:layout_height="match_parent"android:text="运动"android:textSize="28dp"android:textStyle="bold"android:layout_margin="2dp"/><CheckBoxandroid:id="@+id/ck3"android:layout_width="wrap_content"android:layout_height="match_parent"android:text="睡觉"android:textSize="28dp"android:textStyle="bold"android:layout_margin="2dp"/></LinearLayout><Buttonandroid:id="@+id/btn1"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="显示选择结果"android:layout_marginTop="15dp"android:layout_gravity="center"android:textSize="28dp"android:textStyle="bold"android:background="#5BE2E4"/><TextViewandroid:id="@+id/tv2"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="你选择的兴趣爱好是:"android:textSize="28dp"android:textStyle="bold"android:layout_marginTop="15dp"/><!--    <TextView-->
<!--        android:id="@+id/tv3"-->
<!--        android:layout_width="wrap_content"-->
<!--        android:layout_height="wrap_content"-->
<!--        android:textSize="28dp"-->
<!--        android:textStyle="bold"-->
<!--        android:layout_marginTop="15dp"/>--></LinearLayout>

2.2 MainActivity.java
三种返回多选状态的方式


import androidx.appcompat.app.AlertDialog;
import androidx.appcompat.app.AppCompatActivity;import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.TextView;
import android.widget.Toast;public class MainActivity extends AppCompatActivity implements View.OnClickListener {
Button button;
TextView textView1,textView2,textView3;
CheckBox checkBox1,checkBox2,checkBox3;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);//获取checkBoxcheckBox1 = findViewById(R.id.ck1);checkBox2 = findViewById(R.id.ck2);checkBox3 = findViewById(R.id.ck3);//获取TextViewtextView1 = findViewById(R.id.tv1);textView2 = findViewById(R.id.tv2);
//        textView3 = findViewById(R.id.tv3);//获取确认按钮button = findViewById(R.id.btn1);//设置监听事件button.setOnClickListener(this);}@Overridepublic void onClick(View v) {String checked1 = "";String checked2 = "";String checked3 = "";if(checkBox1.isChecked()){checked1 = checkBox1.getText().toString();//方法一//吐司打印//Toast.makeText(MainActivity.this,"你选择的兴趣爱好是:" + checked1,Toast.LENGTH_SHORT).show();}if(checkBox2.isChecked()){checked2 = checkBox2.getText().toString();//吐司打印//Toast.makeText(MainActivity.this,"你选择的兴趣爱好是:" + checked2,Toast.LENGTH_SHORT).show();}if(checkBox3.isChecked()){checked3 = checkBox3.getText().toString();//吐司打印//Toast.makeText(MainActivity.this,"你选择的兴趣爱好是:" + checked3,Toast.LENGTH_SHORT).show();}//方法二//textView显示
//        textView3.setText( checked1 + " " + checked2 + " " + checked3);
//        textView3.showContextMenu();//方法三//提示框打印AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);builder.setTitle("兴趣爱好");builder.setMessage("你选择的兴趣爱好是:" + checked1 + " " + checked2 + " " + checked3);builder.show();}
}

三.预测编程题3

(考点:按钮的相对布局)
在这里插入图片描述

1.代码解析

在这里插入图片描述

2.具体代码

activity_main.xml代码

<?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="match_parent"android:layout_height="match_parent"tools:context=".MainActivity"><Buttonandroid:id="@+id/btn1"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_alignParentBottom="true"android:layout_marginBottom="20dp"android:text="BUTTON 1"android:textSize="20dp"android:textStyle="bold"/><Buttonandroid:id="@+id/btn2"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_centerHorizontal="true"android:layout_marginTop="260dp"android:text="BUTTON 2"android:textSize="20dp"android:textStyle="bold" /><Buttonandroid:id="@+id/btn3"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_alignBottom="@id/btn2"android:layout_marginBottom="100dp"android:layout_toRightOf="@id/btn2"android:text="BUTTON 3"android:textSize="20dp"android:textStyle="bold" /></RelativeLayout>

四.预测编程题4

(考点:按钮的表格布局)
在这里插入图片描述

1.代码解析

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

2.具体代码

activity_main.xml 代码

<?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="match_parent"android:layout_height="match_parent"android:stretchColumns="2"tools:context=".MainActivity">
<TableRow><Buttonandroid:id="@+id/btn1"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="BUTTON 1"/><Buttonandroid:id="@+id/btn2"android:layout_width="match_parent"android:layout_height="wrap_content"android:text="BUTTON 2"/>
</TableRow><TableRow><Buttonandroid:id="@+id/btn3"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="BUTTON 3"android:layout_column="1"/><Buttonandroid:id="@+id/btn4"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="BUTTON 4"android:layout_column="2"/>
</TableRow><TableRow><Buttonandroid:id="@+id/btn5"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="BUTTON 5"android:layout_column="2"/>
</TableRow></TableLayout>

五.预测编程题5

(考点:隐式意图)

隐式意图--文字

1.代码解析

2个Java文件
MainActivity.java
在这里插入图片描述
在这里插入图片描述
M2.java
在这里插入图片描述
请求码与返回码
在这里插入图片描述
在AndroidManifest.xml 中装配意图
在这里插入图片描述
activity_main.xml
在这里插入图片描述
a2.xml
在这里插入图片描述

2.具体代码

MainActivity.java


import androidx.annotation.Nullable;
import androidx.appcompat.app.AppCompatActivity;import android.annotation.SuppressLint;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;public class MainActivity extends AppCompatActivity implements View.OnClickListener {public static int aa = 1000;Button button1;TextView textView1;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);//获取id并设置监听button1 = findViewById(R.id.button_1);button1.setOnClickListener(this);textView1 = this.findViewById(R.id.textview_1);}@Overridepublic void onClick(View v) {//创建意图 打开M2Intent intent = new Intent(this,M2.class);//传递请求码 aathis.startActivityForResult(intent,MainActivity.aa);}@SuppressLint("SetTextI18n")@Overrideprotected void onActivityResult(int requestCode, int resultCode,Intent data) {super.onActivityResult(requestCode, resultCode, data);//调用onActivityResult()方法//获取M2返回值 并显示于textView1if((requestCode == MainActivity.aa) && (resultCode == M2.RESULT_OK)) {//返回文字类型String rt = data.getStringExtra("result");textView1.setText(rt + "");//返回数字类型
//          int rt = data.getIntExtra("result",-1);
//          textView1.setText(rt + "");}}
}

M2.java


import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageView;import androidx.annotation.Nullable;public class M2 extends MainActivity implements View.OnClickListener {ImageView imageView1,imageView2;@Overrideprotected void onCreate(@Nullable Bundle savedInstanceState) {super.onCreate(savedInstanceState);//设置显示view a2.xmlsetContentView(R.layout.a2);//获取id 并设置监听imageView1 = findViewById(R.id.image_view1);imageView1.setOnClickListener(this);imageView2 = findViewById(R.id.image_view2);imageView2.setOnClickListener(this);}@Overridepublic void onClick(View v) {//通过id判断--显示内容int id = v.getId();if(id == R.id.image_view1){Intent intent = new Intent();
//           intent.putExtra("result",1);intent.putExtra("result","耍个小酷🆒");this.setResult(M2.RESULT_OK,intent);}else{Intent intent = new Intent();
//           intent.putExtra("result",2);intent.putExtra("result","一起合照吧");this.setResult(M2.RESULT_OK,intent);}this.finish();//用来关闭 M2}
}

在AndroidManifest.xml 中装配意图

 		<!--配置M2文件--><!--匹配意图--><activity android:name=".M2"/>

activity_main.xml

<?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:orientation="vertical"android:layout_width="match_parent"android:layout_height="match_parent"tools:context=".MainActivity"><Buttonandroid:id="@+id/button_1"android:layout_width="match_parent"android:layout_height="0dp"android:layout_weight="1"android:text="点击"android:textSize="36dp"android:textStyle="bold"android:gravity="center"/><Viewandroid:layout_width="match_parent"android:layout_height="20dp"android:background="#535255"/><TextViewandroid:id="@+id/textview_1"android:layout_width="match_parent"android:layout_height="0dp"android:layout_weight="1"android:textSize="36dp"android:textStyle="bold"android:gravity="center"/></LinearLayout>

a2.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:orientation="vertical"android:layout_width="match_parent"android:layout_height="match_parent"><ImageViewandroid:id="@+id/image_view1"android:layout_width="match_parent"android:layout_height="0dp"android:layout_weight="1"android:scaleType="centerCrop"android:src="@drawable/hhh1"/><TextViewandroid:layout_width="match_parent"android:layout_height="20dp"android:background="#235AC8"/><ImageViewandroid:id="@+id/image_view2"android:layout_width="match_parent"android:layout_height="0dp"android:layout_weight="1"android:scaleType="centerCrop"android:src="@drawable/hhh2"/></LinearLayout>

六.预测编程题6

(考点:视频播放)

播放视频

1.代码解析

视频文件目录
在这里插入图片描述
MainActivity.java
在这里插入图片描述
activity_main.xml
在这里插入图片描述

2.具体代码

MainActivity.java


import androidx.appcompat.app.AppCompatActivity;import android.os.Bundle;
import android.view.View;
import android.widget.ImageView;
import android.widget.MediaController;
import android.widget.VideoView;public class MainActivity extends AppCompatActivity {
VideoView videoView;
ImageView imageView;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);videoView = findViewById(R.id.video_view_1);//获取视频来源videoView.setVideoPath("android.resource://" + getPackageName() + "/" + R.raw.a1);//手动进度条--可拖动可播放MediaController mediaController = new MediaController(MainActivity.this);videoView.setMediaController(mediaController);imageView =findViewById(R.id.image_view_1);//设置图标的监听事件imageView.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {play();}private void play() {if (videoView.isPlaying() && videoView != null){//视频暂停videoView.pause();//切换为--待播放⏸图标imageView.setImageResource(android.R.drawable.ic_media_play);return;}else{//视频播放videoView.start();//切换为--待暂停▶图标imageView.setImageResource(android.R.drawable.ic_media_pause);return;}}});}
}

activity_main.xml

<?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="match_parent"android:layout_height="match_parent"><VideoViewandroid:id="@+id/video_view_1"android:layout_width="match_parent"android:layout_height="match_parent"android:layout_centerInParent="true"/><ImageViewandroid:id="@+id/image_view_1"android:layout_width="80dp"android:layout_height="80dp"android:layout_centerHorizontal="true"android:layout_alignParentBottom="true"android:layout_marginBottom="60dp"android:src="@android:drawable/ic_media_play"/></RelativeLayout>

总结

以上是个人浅浅的一个text复习内容,本文仅仅简单介绍了几道android编程,有需要的友友也可以拿去使用哈,可以的话,希望能帮到我们。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.rhkb.cn/news/28428.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

浅浅地讲一下引用吧

文章目录 &#x1f384; 前言&#x1f496; 何为引用&#x1f37a;深入理解引用✈️取别名规则&#xff1a;权限只能缩小不能放大 &#x1f601; 引用的简单应用&#x1f699; 引用和指针的区别&#x1f389;结语 &#x1f384; 前言 开启C之路&#xff0c;希望看了这篇文章之…

浅浅理解.net core的路由

路由&#xff1a; web的请求到达后端服务时&#xff0c;controller(控制器)会处理传入的http请求并响应用户操作&#xff0c;请求的url会被映射到控制器的操作方法上。 此映射过程由应用程序中定义的路由规则完成。 ASP.NET.Core MVC中的路由 路由使用一对由UseRouting和UseEnd…

FPGA图像处理 浅浅浅浅浅记

FPGA因其并行处理数据、高速和可编程等特性在图像处理方面得到广泛应用&#xff0c;特别是在简单算法的时候&#xff0c;即图像处理的预处理时&#xff0c;可以通过一些FPGA开发公司所配置的软件进行对算法的实现。 Vivado的一个工具&#xff1a;System Generator 可以直接把…

UCOS(浅浅忆)

UCOS 简介UCOSIIUCOSII 移植 F1UCOSII 任务UCOSII 消息邮箱、信号量 简介 1、实时操作系统分为硬实时和软实时两类 2、UCOSII、UCOSIII的区别 1、UCOSIII新增功能 1.1 同时支持优先级与时间片调度算法 1.2 将中断任务调节交给系统任务处理&#xff0c;大大缩短中断执行时间 1…

浅浅的聊一下 WebSocket

浅浅的聊一下 WebSocket 第一次看到 ws:// 和 wss:// 时候&#xff0c;感觉好高级啊&#xff0c;还有这种协议。 Websocket 历史 WebSocket是在2008年6月诞生的1。经由IEFT标准化后&#xff0c;2009年chrome 4第一个提供了该标准支持&#xff0c;并默认启用。于2011年由IEFT标…

中关村科金张杰:ChatGPT火爆背后,对话式AI在企业服务场景面临三大挑战|MEET2023...

梦晨 发自 凹非寺量子位 | 公众号 QbitAI ChatGPT火爆&#xff0c;也让更多人看到对话式AI的商业价值。 根据艾瑞咨询发布的《2022年中国对话式AI行业发展白皮书》&#xff0c;2021年对话式AI的市场规模为45亿元&#xff0c;带动规模126亿元。 在MEET2023智能未来大会上&#x…

可怕的人工智能ChatGPT

闲来无事想看看ChatGPT作诗的水平如何&#xff0c;于是让ChatGPT模仿苏轼写一首古诗&#xff0c;第一首如下&#xff1a; 读完这首诗&#xff0c;我差点把剩下的几根头发薅下来 接下来抱着试试看的态度给ChatGPT说一下稍微具体点的要求&#xff1a; 唉&#xff0c;古诗的规则…

python统计三国演义中人物出现的频次

方式一. 简化版 安装jieba库/numpy库编程读取《三国演义》电子书&#xff0c;输出出场次数最高的10个人物名字 代码注释&#xff1a; import numpy import jieba# numpy输出有省略号的问题&#xff0c;无法显示全部数据 numpy.set_printoptions(thresholdnumpy.inf)def readF…

对行业大模型的思考

深度学习自然语言处理 分享知乎&#xff1a;黄文灏职位&#xff1a;北京智源AI研究院技术负责人 看到了 Naiyan Wang[1] 和 刘聪NLP[2] 的两篇文章&#xff0c;都提到了对行业大模型的一些看法&#xff0c;有很多相同的想法。正好身边有很多人在讨论行业大模型&#xff0c;想要…

浅谈爆火的AIGC会不会是下一个元宇宙?

OpenAI终于发布了ChatGPT安全方法&#xff0c;这距离意大利政府公开宣布全面禁止ChatGPT还不到一周。 ChatGPT对隐私规则的侵犯和版权问题的触及&#xff0c;伴随一季度迅速在全球范围内的爆火而出现。 紧随意大利的是&#xff0c;德国、日本、法国、加拿大和美国&#xff0c…

斯坦福大学AI课程;创始人剽窃丑闻后 Stability AI 两名高管离职,公司前景存疑

&#x1f989; AI新闻 &#x1f680; Windows Copilot&#xff1a;微软的智能AI助手助力Windows操作系统革命 摘要&#xff1a;微软发布了Windows Copilot的开发者预览版更新。Windows Copilot是微软最新推出的智能助手&#xff0c;通过它用户可以无门槛地使用Windows的各种功…

入职仅1年,谷歌高管不满开发方向后离职!网友:“雪上加霜,谷歌AR业务要凉凉?”...

整理 | 朱珂欣 出品 | CSDN程序人生&#xff08;ID&#xff1a;coder_life&#xff09; 过去数月&#xff0c;谷歌的 AR 业务可谓是「动荡不安」—— 裁员、改组、 AR/VR 主管 Clay Bavor 离职。 昨天&#xff0c;谷歌人事变动再起&#xff0c; AR 操作系统团队负责人 Mark …

2023 年 4 月很火的网站

最近chatgpt持续火热&#xff0c;基于chatgpt的网站/工具越来越多&#xff0c;今天分享几个很火的网站&#xff0c;之前分享过的上百个实用网站同步到我的博客了 https://sushengbuhuo.github.io/blog chatdoc 一个基于 ChatGPT 的文档阅读助手http://www.chatdoc.com &#x…

现场拔网线!第四范式版GPT能力首秀,有点不一样

金磊 发自 第四范式大厦量子位 | 公众号 QbitAI 国产大模型能大战&#xff0c;又有一员猛将入局。 就在刚刚&#xff0c;第四范式自研大模型“式说”&#xff08;4Paradigm SageGPT&#xff09;在上线2个月后&#xff0c;终于来了一波能力首秀。 而且纵观整场活动的发布&#x…

2023 AI大语言模型TOP10

注&#xff1a;本次评测时间截至2023.5.10&#xff0c;评价指标主要包括语义理解、逻辑推理、情感分析、百科知识、文本质量五个维度&#xff09; 今年春节档&#xff0c;一部《流浪地球2》点燃了沉寂许久的中国科幻电影市场&#xff0c;也让MOSS这一电影里冷酷无情的强人工智能…

百度搜索迎来奇点 大模型掀起代际变革

每一轮技术革命掀起的浪潮&#xff0c;大部多数人还没来得及思考或者布局&#xff0c;已经消失于海浪中。机会是给有准备的人的&#xff0c;要发现新兴技术的亮点&#xff0c;并立足自身去积极拥抱它&#xff0c;最后转化为自身前进的动力&#xff0c;跨越周期&#xff0c;迎来…

劲爆!154页微软GPT研究报告:人工通用智能的火花,GPT-4的早期实验

省时查报告-专业、及时、全面的行研报告库 省时查方案-专业、及时、全面的营销策划方案库 【免费下载】2023年2月份热门报告合集 ChatGPT调研报告&#xff08;仅供内部参考&#xff09; 文心一言、GPT3.5及GPT4应用测评对比报告 ChatGPT团队背景研究报告 ChatGPT的发展历程、原…

这 7个 AI 写作助手,太实用了

想象一下&#xff1a;你正在办公桌前为你的广告输入标题&#xff0c;但你突然思维阻塞并卡住了&#xff0c;可惜这时还没有神奇的软件可以帮助你想出点子。或许是有的&#xff1f; 2023 年&#xff0c;AI 写作工具似乎不可避免地会很快融入我们的工作流程中。现代知识工作者已…

怎样让chatGPT给你打工然后月入过百?(二)

上一篇&#xff1a;怎样让chatGPT给你打工然后月入过千&#xff1f; 前言 过千不现实&#xff0c;实测了一个月&#xff08;2月份测的&#xff09;&#xff0c;收入 当时文库任务的行情好&#xff0c;每天都有任务&#xff0c;现在不行了经常刷不出任务&#xff0c;而且脚本…

2022软件质量与管理-考题复习

最下面有2022的软件工程与管理考题~ 简答题 【2021】估算的要点(10分) 尽可能划分详细一些&#xff1b; 建立对估算结果的信心&#xff1b; 依赖数据&#xff1b; 估算是利益相关者达成共识的过程&#xff0c;而不是结果。 【2021】基于Yield构建预测模型(10分) 基于Yield指标构…