Spinner+sqlite 三级联动

品牌表: CREATE TABLE [pinpai] ( [ID] INT(4),[NAME] nvarchar,[ZM] nchar,[NamePY] BOOLEAN(1)); insert into [pinpai] values(1,'奥迪','A',0); insert into [pinpai] values(2,'宝马','B',0); insert into [pinpai] values(3,'北京',0); insert into [pinpai] values(4,'奔驰',0); 。。。。。 车系表: CREATE TABLE [chexi] ( [id] INT(4),[ppid] INT(4),[cxname] nvarchar(50),[ParentID] INT(4),[px] INT(4)); insert into [chexi] values(1,1,'==奥迪==',1); insert into [chexi] values(2,'奥迪A6L',2); insert into [chexi] values(3,'奥迪A4L',3); insert into [chexi] values(4,'奥迪Q5',4); insert into [chexi] values(5,2,'==华晨宝马==',5); insert into [chexi] values(6,'宝马3系',6); insert into [chexi] values(7,'宝马5系',7); insert into [chexi] values(8,3,'==北汽制造==',8); insert into [chexi] values(9,'角斗士',9); insert into [chexi] values(10,'京城海狮',10); insert into [chexi] values(11,'路霸',11); insert into [chexi] values(12,'骑士',12); insert into [chexi] values(13,'勇士',13); insert into [chexi] values(14,'战旗',14); 。。。。。 车型表: CREATE TABLE [chexing] ( [ID] INT(4),[chexiid] INT(4),[year] nchar,[jg] money); insert into [chexing] values(1,'新A6L 2.0 TFSI AT','2009',39.8); insert into [chexing] values(2,'新A6L 2.0 TFSI MT',34.82); insert into [chexing] values(3,'新A6L 2.4 AT/MT',42.45); insert into [chexing] values(4,'新A6L 2.8 FSI AT/MT',61.82); insert into [chexing] values(5,'新A6L 3.0 TFSI AT/MT',69.6); insert into [chexing] values(6,'2010',39.99); insert into [chexing] values(7,35.5); insert into [chexing] values(8,43.15); insert into [chexing] values(9,'新A6L 2.7 TDI AT/MT',48.88); insert into [chexing] values(10,53.77); insert into [chexing] values(11,'新A6L 3.0 TFSI quattro AT/MT',69.6); insert into [chexing] values(12,'A4L 2.0 TFSI',38.86); insert into [chexing] values(13,'A4L 3.2 FSI quattro',53.88); insert into [chexing] values(14,'A4L 1.8 TFSI',29.1); insert into [chexing] values(15,32.99); insert into [chexing] values(16,57.81); insert into [chexing] values(17,4,'Q5 2.0T FSI',0); insert into [chexing] values(18,'Q5 3.2 FSI',0); insert into [chexing] values(19,6,'318i 2.0 AT/MT',30.6); insert into [chexing] values(20,'320i 2.0 AT/MT',37.5); insert into [chexing] values(21,'325i 2.5 AT/MT',44.2); insert into [chexing] values(22,30.6); insert into [chexing] values(23,37.5); insert into [chexing] values(24,44.2); insert into [chexing] values(25,7,'520Li',42.36); insert into [chexing] values(26,'523Li',43.36); insert into [chexing] values(27,'530Li',68.86); 。。。。 定义查询语句 public static final String PINPAISQL="select id as _id,zm||'-'|| NAME as ppnamefrom pinpai where namepy=? order by zm"; public static final String CHEXISQL="select id as _id,cxnamefrom chexi where ppid=?order by px"; public static final String CHEXINGSQL="select id as _id,cxname||'['||[year]||']'||'$'||jg as mingcheng from chexing where chexiid=?order by [year],cxname"; 点击按钮 scarButton=(Button)findViewById(R.id.widget622); scarButton.setOnClickListener(new sCarButtonListener()); 单击事件 private class sCarButtonListener implements android.view.View.OnClickListener { public void onClick(View v) { showDialog_SCar(); } } 弹出对话框 private void showDialog_SCar() { LayoutInflater inflater = LayoutInflater.from(this); final View textEntryView = inflater.inflate( R.layout.scar,null); pinpaiSpinner=(Spinner)textEntryView.findViewById(R.id.widget36); chexiSpinner=(Spinner)textEntryView.findViewById(R.id.widget39); chexingSpinner=(Spinner)textEntryView.findViewById(R.id.widget42); pinpaiSpinner.setAdapter(Comm.GetDataBySQL(this,Comm.PINPAISQL,new String[] {"0"},new String[] {"ppname"})); pinpaiSpinner.setPrompt("请选择"); //品牌选择事件 pinpaiSpinner.setOnItemSelectedListener(newSpinner.OnItemSelectedListener(){ public voidonItemSelected(AdapterView<?> arg0,View arg1,intarg2,longarg3) { //根据品牌id--arg3 绑定车系 CheXiAdapter=Comm.GetDataBySQL(ActDingSun.this,Comm.CHEXISQL,new String[] {arg3+""},new String[] {"cxname"}); chexiSpinner.setAdapter(CheXiAdapter); chexiSpinner.setPrompt("请选择"); /* 将mySpinner 显示*/ arg0.setVisibility(View.VISIBLE); } public voidonNothingSelected(AdapterView<?> arg0) { } }); //选择车系事件 chexiSpinner.setOnItemSelectedListener(newSpinner.OnItemSelectedListener(){ public voidonItemSelected(AdapterView<?> arg0,longarg3) { //根据车系id 绑定车型 CheXingAdapter=Comm.GetDataBySQL(ActDingSun.this,Comm.CHEXINGSQL,new String[] {"mingcheng"}); chexingSpinner.setAdapter(CheXingAdapter); chexingSpinner.setPrompt("请选择"); //chexiSpinner.setSelection(0,true); /* 将mySpinner 显示*/ arg0.setVisibility(View.VISIBLE); } public voidonNothingSelected(AdapterView<?> arg0) { } }); final AlertDialog.Builder builder = new AlertDialog.Builder(this); builder.setCancelable(false); builder.setIcon(R.drawable.icon); builder.setTitle("选择车型"); builder.setView(textEntryView); builder.setPositiveButton("确认",new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog,int whichButton) { } }); builder.setNegativeButton("取消",int whichButton) { } }); builder.show(); } //返回SimpleCursorAdapter 填充spinner public static SimpleCursorAdapter GetDataBySQL(Context context,String sqlString,String [] args,String [] argsc){ SimpleCursorAdapter scaCategories=null; DatabaseHelper dHelper=new DatabaseHelper(context); SQLiteDatabase db= dHelper.getReadableDatabase(); Cursor msCur= db.rawQuery(sqlString,args); if (msCur.getCount() != 0) { scaCategories = new SimpleCursorAdapter(context,android.R.layout.simple_spinner_item,msCur,argsc,new int[]{android.R.id.text1}); scaCategories.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); } return scaCategories; }

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


SQLite架构简单,又有Json计算能力,有时会承担Json文件/RESTful的计算功能,但SQLite不能直接解析Json文件/RESTful,需要用Java代码硬写,或借助第三方类库,最后再拼成insert语句插入数据表,代码非常繁琐,这里就不展示了。参考前面的代码可知,入库的过程比较麻烦,不能只用SQL,还要借助Java或命令行。SPL是现代的数据计算语言,属于简化的面向对象的语言风格,有对象的概念,可以用点号访问属性并进行多步骤计算,但没有继承重载这些内容,不算彻底的面向对象语言。...
使用Python操作内置数据库SQLite以及MySQL数据库。
破解微信数据库密码,用python导出微信聊天记录
(Unity)SQLite 是一个软件库,实现了自给自足的、无服务器的、零配置的、事务性的 SQL 数据库引擎。SQLite 是在世界上最广泛部署的 SQL 数据库引擎。SQLite 源代码不受版权限制。本教程将告诉您如何使用 SQLite 编程,并让你迅速上手。.................................
安卓开发,利用SQLite实现登陆注册功能
相比大多数数据库而言,具有等优势,广泛应用于、等领域。
有时候,一个项目只有一个数据库,比如只有SQLite,或者MySQL数据库,那么我们只需要使用一个固定的数据库即可。但是一个项目如果写好了,有多个用户使用,但是多个用户使用不同的数据库,这个时候,我们就需要把软件设计成可以连接多个数据库的模式,用什么数据库,就配置什么数据库即可。4.Users实体类,这个实体类要和数据库一样的,形成一一对应的关系。11.Sqlite数据库,需要在代码里面创建数据库,建立表,再建立数据。8.我们开启MySQL数据库,然后进行调试,看程序的结果。2.安装SqlSugar。
基于Android的背单词软件,功能强大完整。
SQLite,是一款轻型的数据库,是遵守ACID的关系型数据库管理系统。说白了就是使用起来轻便简单,
Android的简单购物车案例
SQLite,是一款轻型的数据库,是遵守ACID的关系型数据库管理系统,它包含在一个相对小的C库中。它是D.RichardHipp建立的公有领域项目。它的设计目标是嵌入式的,而且已经在很多嵌入式产品中使用了它,它占用资源非常的低,在嵌入式设备中,可能只需要几百K的内存就够了。它能够支持Windows/Linux/Unix等等主流的操作系统,同时能够跟很多程序语言相结合,比如 Tcl、C#、PHP、Java等,还有ODBC接口,同样比起Mysql、PostgreSQL这两款开源的世界著名数据库...
Qt设计较为美观好看的登录注册界面(包含SQLite数据库以及TCP通信的应用)
SQLite是用C语言开发的跨平台小型数据库,可嵌入其他开发语言,也可在单机执行。SPL是用Java开发的跨平台的数据计算语言,可嵌入Java,可在单机执行,可以数据计算服务的形式被远程调用。两者的代码都是解释执行的。...
新建库.openDATA_BASE;新建表createtableLIST_NAME(DATA);语法:NAME关键字...<用逗号分割>删除表droptableNAME;查看表.schema查看表信息新建数据insertintoLIST_NAMEvalues();语法:CLASS,PARAMETER...,CLASS是类别,PARAMETER是参数<用逗号分割新建的
importsqlite3classDemo01:def__init__(self):self.conn=sqlite3.connect("sql_demo_001.db")self.cursor1=self.conn.cursor()self.cursor1.execute("select*fromtable_001wherename=?andid=?",('ssss&#0
 在客户端配置文件<configuration>节点下,添加:<connectionStrings>      <add name="localdb" connectionString="Data Source=config/local.db;Version=3;UseUTF16Encoding=True;" providerName="System.Data.SQLite.SQLiteFactory"/&g
提到锁就不得不说到死锁的问题,而SQLite也可能出现死锁。下面举个例子:连接1:BEGIN(UNLOCKED)连接1:SELECT...(SHARED)连接1:INSERT...(RESERVED)连接2:BEGIN(UNLOCKED)连接2:SELECT...(SHARED)连接1:COMMIT(PENDING,尝试获取EXCLUSIVE锁,但还有SHARED锁未释放,返回SQLITE_BUSY)连接2:INSERT...
SQLite是一种嵌入式数据库,它的数据库就是一个文件。由于SQLite本身是C写的,而且体积很小,所以,经常被集成到各种应用程序中,甚至在iOS和Android的App中都可以集成。Python就内置了SQLite3,所以,在Python中使用SQLite,不需要安装任何东西,直接使用。在使用SQLite前,我们先要搞清楚几个概念:表
设计思想————首先要确定有几个页面、和每个页面的大致布局由于是入门,我也是学习了不是很长的时间,所以项目比较low。。。。第一个页面,也就是打开APP的首页面:今天这个博客,先实现添加功能!:首先对主界面进行布局:其中activity_main.xml的代码为<?xmlversion="1.0"encoding="