-
wk2124芯片spi转串口实例,可适配linux,stm32
【实例简介】
本实例是在stm32的平台上开发和调试的,上传的源代码是完整的工程代码,可以直接编译使用,wk2124可以在淘宝上购买,适合初学者,或者对此有兴趣爱好者
- 2021-07-30 00:31:13下载
- 积分:1
-
ios 完美布局实例源码,很方便,超强大
ios布局
- 2013-09-11下载
- 积分:1
-
lnx_dm9620(V2.59.3)
dm9621 usb 网卡 的Linux驱动源码,量产版本,可用。(Dm9621 USB network card Linux driver source code, mass production version, available.)
- 2021-04-01 17:49:08下载
- 积分:1
-
android图片上传的demo 源码(含服务器端和客户端源码)
android图片上传的demo 源码(含服务器端和客户端源码)
- 2014-09-18下载
- 积分:1
-
Android_Gadget_CDC_driver
说明: android gadget driver
- 2019-05-23 14:07:34下载
- 积分:1
-
android 即录即播
android 录音,即录即播,对试验麦克风很有效果
- 2022-01-22 08:20:44下载
- 积分:1
-
pubu
Android项目源码带瀑布流的旅游指南应用是一款旅游型的APP,是旅游目的地攻略指南,可以自动定位到城市,景点,餐馆,酒店,还可以分享旅游经验,与参与者互动。该项目的架构合理,有详细的注解,其中引入了第三方的瀑布流项目,以源代码的形式直接加入,很好的学习材料。默认使用UTF-8编码,编译版本为4.3(The Android project source code with a waterfall flow guide application is app a type of tourism, tourism destination strategy guide, can automatically locate the city, attractions, restaurants, hotels, can also share travel experiences, to interact with the participants. The framework of the project is reasonable, there are detailed notes, which introduces the third side of the waterfall flow project, in the form of source code to join, a good learning materials. The default use of UTF-8 code, the compiler version is 4.3)
- 2020-12-27 16:59:03下载
- 积分:1
-
android平台的linphone客户端
已经编译好的android平台的linphone客户端,包含了所有运行需要到得动态库文件。
- 2022-12-12 17:50:03下载
- 积分:1
-
BinderSample-master
binder原理的实践代码,包括Framework, AIDL, C++多方面的实战案例代码(The sample code of binder)
- 2018-04-15 14:14:43下载
- 积分:1
-
Android OnClickListener监听接口用法范例
Android OnClickListener监听接口用法范例,基础级的例子,
Button button = (Button) findViewById(R.id.Button01);//获取屏幕中的按钮控件对象
button.setOnClickListener(//为按钮对象添加OnClickListener接口实现
//OnClickListener为View的内部接口,其实现者负责监听鼠标点击事件
new View.OnClickListener(){
public void onClick(View v){
LinearLayout ll=(LinearLayout)findViewById(R.id.lla);//获取线性布局对象
String msg=LinearActivity.this.getResources().getString(R.string.button);
Button tempbutton=new Button(LinearActivity.this);//创建一个Button对象
tempbutton.setText(msg+(++count));//设置Button控件显示的内容
tempbutton.setWidth(80);//设置Button的宽度
ll.addView(tempbutton);//向线性布局中添加View
System.out.println("========= count"+count);
- 2023-05-27 15:00:04下载
- 积分:1