登录
首页 » Unix_Linux » ProviderInfo

ProviderInfo

于 2014-05-17 发布 文件大小:2KB
0 201
下载积分: 1 下载次数: 9

代码说明:

  Holds information about a specific android.content.ContentProvider content provider.

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 快速傅里叶变换FFT的C程序代码实现
    快速傅里叶变换(Fast Fourier Transform)是离散傅里叶变换的一种快速算法,简称FFT,通过FFT可以将一个信号从时域变换到频域。  模拟信号经过A/D转换变为数字信号的过程称为采样。为保证采样后信号的频谱形状不失真,采样频率必须大于信号中最高频率成分的2倍,这称之为采样定理。  假设采样频率为fs,采样点数为N,那么FFT结果就是一个N点的复数,每一个点就对应着一个频率点,某一点n(n从1开始)表示的频率为:fn=(n-1)*fs/N。  举例说明:用1kHz的采样频率采样128点,则FFT结果的128个数据即对应的频率点分别是0,1k/128,2k/128,3k/128,…,127k/128 Hz。  这个频率点的幅值为:该点复数的模值除以N/2(n=1时是直流分量,其幅值是该点的模值除以N)。
    2019-08-08下载
    积分:1
  • 华大USB HID例程
    【实例简介】HC32F460的USB例程
    2021-06-24 00:31:20下载
    积分:1
  • Android_Communication_design
    andriod通信设计的硕士论文。清华大学论文。非常详细。嵌入式设计必备资料。(andriod communication design master' s thesis. Tsinghua University thesis. Very detailed. Essential information embedded design.)
    2011-09-30 23:45:37下载
    积分:1
  • aidl 体现跨进程通信实例源码下载(aidlserver/aidlclient)
    aidl(Android Interface Definition Language)进程通信
    2014-12-22下载
    积分:1
  • carbook
    一套完整的android应用app源代码,能够正常编译运行并在android实机上运行。(A complete Android application app source code, can be compiled to run and run on the Android machine.)
    2015-11-22 01:16:48下载
    积分:1
  • music_player02
    基于Android的音乐播放APP,使用eclipse编程的Java程序,直接在eclipse(配置好Android开发环境)上运行,适合新手学习(Android-based music player APP, use eclipse Java programming procedures directly in the eclipse (configured Android development environment) running for novice learning)
    2020-11-20 23:39:37下载
    积分:1
  • android wifi设置静态ip 实例源码下载
    android wifi设置静态ip 实例源码下载
    2014-08-29下载
    积分:1
  • xyxxgm
    内含一个留言系统。一个在线订单系统,一个在线新闻发布系统,一个系统信息管理系统,一个职介信息在线发布系统(Includes a messaging system. An online ordering system, an online news publishing system, a system information management system, a staffing information online publishing system)
    2016-03-07 21:21:23下载
    积分:1
  • AsyImageDemo
    实现android 异步图片加载,联网获取图片,缓存处理图片(android load pic)
    2014-03-04 17:25:35下载
    积分:1
  • Android Intent实例
    Android Intent开发实例 核心代码:package com.amaker.ch06.app;import com.amaker.ch06.app.R;import android.app.Activity;import android.content.Intent;import android.os.Bundle;import android.view.View;import android.view.View.OnClickListener;import android.widget.Button;import android.widget.EditText;/** * @author 郭宏志 * 发送Email */public class MainActivity extends Activity { // 声明视图组件 private EditText toEditText,subjectEditText,contentEditText; private Button sendBtn; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); // 实例化视图组件 toEditText = (EditText)findViewById(R.id.toEditText01); subjectEditText = (EditText)findViewById(R.id.subjectEditText01); contentEditText = (EditText)findViewById(R.id.contentEditText01); sendBtn = (Button)findViewById(R.id.sendButton01); // 为按钮添加单击监听器 sendBtn.setOnClickListener(listener); } // 发送按钮单击监听器 private OnClickListener listener = new OnClickListener() { @Override public void onClick(View v) { // 获得输入信息 String to = toEditText.getText().toString(); String subject = subjectEditText.getText().toString(); String content = contentEditText.getText().toString(); // 创建Intent Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); // 设置内容类型 emailIntent.setType("plain/text"); // 设置额外信息 emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[]{to}); emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, subject); emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, content); startActivity(Intent.createChooser(emailIntent, "发送邮件...")); } };}
    2014-11-24下载
    积分:1
  • 696518资源总数
  • 106161会员总数
  • 5今日下载