首页 > 其他分享 >12.29

12.29

时间:2025-01-07 23:44:03浏览次数:5  
标签:12.29 Intent import android btn intent id

package com.example.ourhomework1.activities;

import android.annotation.SuppressLint;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import android.view.View;
import android.widget.Button;

import androidx.activity.EdgeToEdge;
import androidx.appcompat.app.AppCompatActivity;
import androidx.core.graphics.Insets;
import androidx.core.view.ViewCompat;
import androidx.core.view.WindowInsetsCompat;

import com.example.ourhomework1.MainActivity;
import com.example.ourhomework1.R;
import com.example.ourhomework1.dao.UserDao;

public class teacherActivity extends AppCompatActivity implements View.OnClickListener {

private Button btn_allRecords, btn_dailyRecord, btn_allInformation;

@SuppressLint("MissingInflatedId")
@Override
protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);
setContentView(R.layout.activity_teacher);

btn_allRecords = findViewById(R.id.btn_allRecords);
btn_dailyRecord = findViewById(R.id.btn_dailyRecord);
btn_allInformation = findViewById(R.id.btn_allInformation);

btn_allRecords.setOnClickListener(this);
btn_dailyRecord.setOnClickListener(this);
btn_allInformation.setOnClickListener(this);
}

@Override
public void onClick(View v) {
if (v.getId() == R.id.btn_allRecords) {
Intent intent = new Intent(teacherActivity.this, tAllRecordsActivity.class);
startActivity(intent);
} else if (v.getId() == R.id.btn_dailyRecord) {
Intent intent = new Intent(teacherActivity.this, tDailyRecordActivity.class);
startActivity(intent);
} else if (v.getId() == R.id.btn_allInformation) {
Intent intent = new Intent(teacherActivity.this, tAllInformationActivity.class);
startActivity(intent);
}
}
}

标签:12.29,Intent,import,android,btn,intent,id
From: https://www.cnblogs.com/yang-----/p/18658673

相关文章

  • 2024.12.29
    《代码大全2》是一本极具价值的编程书籍,它为软件开发人员提供了丰富的知识和经验。阅读完这本书,我深受启发。书中对代码的各种方面进行了深入的探讨,从代码的设计到具体的实现,都给出了详细的指导。它强调了代码的可读性和可维护性,这让我明白写代码不仅仅是实现功能,更要注重代码的......
  • C#/.NET/.NET Core技术前沿周刊 | 第 19 期(2024年12.23-12.29)
    前言C#/.NET/.NETCore技术前沿周刊,你的每周技术指南针!记录、追踪C#/.NET/.NETCore领域、生态的每周最新、最实用、最有价值的技术文章、社区动态、优质项目和学习资源等。让你时刻站在技术前沿,助力技术成长与视野拓宽。欢迎投稿、推荐或自荐优质文章、项目、学习资源等。......
  • 2024.12.29 洛谷月赛总结
    T125min推完+做完基本思路:看到这种有代价产生方式的,去思考代价如何产生,发现要么相等不用操作,要么可以直接改为2^n-1再改为t代码:#include<bits/stdc++.h>usingnamespacestd;longlongn,s,t,ans,T;intmain(){ scanf("%d",&T); while(T--){ scanf("%d%d%d",&n,&s,&t);......
  • 上周热点回顾(12.23-12.29)
    热点随笔:· 跟着8.6kStar的开源数据库,搞RAG! (削微寒)· 3款.NET开源、功能强大的通讯调试工具,效率提升利器! (追逐时光者)· 在.NETCore中使用Channel实现生产者消费者模式 (贾光辉)· 为什么推荐在.NET中使用YAML配置文件 (chester·chen)· 干掉EasyExcel......
  • 2024.12.29 周日
    2024.12.29周日Q1.1100Youaregivenanumberinbinaryrepresentationconsistingofexactlynnnbits,possibly,withleadingzeroes.Forexample,for......
  • 2024.12.29
    2.Windows平台框架.NET(WPF和WinForms)MicrosoftOffice(部分组件):如Outlook的一些UI使用WPF技术。Paint.NET:一个流行的Windows平台图像编辑器,基于.NET框架。WindowsLiveWriter:博客写作工具,使用WPF构建。WindowsAPI(Win32)Notepad:Windows自带的文本编辑器,......
  • Diary - 2024.12.29
    我感觉我终于是明白了莫队二离的思想阿!!!但是是不是因为当时学数据结构的时候太摆了导致的呢?乐。到现在还是不会lct,乐乐。我突然发现我都不一定会splay???我好像只会fhq和wblt了,流泪。唉呀今天又没写题解,怎么会是呢???不行,明天必须写题解,再不写我就要报废了!!!明天必须写题解,明......
  • 2024.12.29-4 选票系统
    #include<stdio.h>#include<string.h>structXuanmin{      charname[32];   intpiao;   };intmain(){   structXuanminxm[3];   inti;   intj;   intlen;   inttotal;   chartmpname[32];   len=si......
  • 2024.12.29-3 结构体与数组
    一个案例,讲明定义用法:#include<stdio.h>#include<string.h>structStudent{      intnum;   charname[32];   intage;   charsex;   charaddr[32];   doublescore;   };intmain(){   intarr[3]={1,2,3};  ......
  • 2024.12.29-2 结构体的小应用
    例题,有两个学生,输入两个学生的信息,输入成绩高的学生信息。方法一:#include<stdio.h>#include<string.h>//定义结构体。放在mian()外,为全局变量的感觉structStudent//开头必须大写。{   intnum;   charname[32];   charsex;   intage;   ......