这一节的内容跟上一节的内容很像,甚至比上一节的内容更简单,因为只有一个checkbox。跟上一节相同的地方是,如果你不选择,那么$_POST里面就不会有这个checkbox的任何信息,连key都没有,所以我们要手动创建。即:(terms是checkbox的name值) if(!isset($_...
分类:
其他好文 时间:
2014-11-04 16:30:45
阅读次数:
207
这一节的主要内容:1、创建一个radio input(这是HTML的内容,但是之前掌握的不熟练);2、把它加入到原来的值的体系当中,即:判断有没有选择gender,如果没有选择就设定:$_POST['gender'] = '';这个时候mail_process.php中的以下代码将中把'gender...
分类:
其他好文 时间:
2014-11-04 15:00:05
阅读次数:
152
ListView自身带了单选、多选模式,可通过listview.setChoiceMode来设置:
listview.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);//开启多选模式
listview.setChoiceMode(ListView.CHOICE_MODE_SINGLE);//开启单选模式
listview.setChoiceMod...
分类:
其他好文 时间:
2014-11-01 21:50:49
阅读次数:
407
-!1. Greedy vs. DP:http://blog.csdn.net/yelbosh/article/details/7649717. Multiple choices or not:Greedy has only 1 optimal last choice; DP picks the ....
分类:
其他好文 时间:
2014-11-01 06:11:19
阅读次数:
217
??
The choice of whether to design your functionality as an interface or an abstract class can sometimes be a difficult one. An
abstract class is a class that cannot be instantiated, but must be inh...
今天收到公司的一封邮件 随便看了看 好像是因为偶在一个马上要结束的项目里被客户好评了 BOSS给了偶一个所谓的Manager’s Choice Award for the practice Put the Client First.好吧 就当自己给自己一个乐子吧, 虽然在外面的实际价值连个包子都买不...
分类:
其他好文 时间:
2014-10-28 17:29:40
阅读次数:
199
Problem Description
After coding so many days,Mr Acmer wants to have a good rest.So travelling is the best choice!He has decided to visit n cities(he insists on seeing all the cities!And he does no...
分类:
其他好文 时间:
2014-10-24 13:01:58
阅读次数:
279
一。先实现添加头像的功能点击头像后,可以有两种选择: 相册、相机。要用到new AlertDialog.Builder(activity).setItems(choice, new DialogInterface.OnClickListener(){}).show();里面choice为两个...
分类:
其他好文 时间:
2014-10-24 00:15:26
阅读次数:
795
The 4 Java Garbage Collectors - How the Wrong Choice Dramatically Impacts PerformanceThe year is 2014 and there are two things that still remain a mys...
分类:
编程语言 时间:
2014-10-11 13:30:25
阅读次数:
390
项目开发中需要使用GridView批处理操作,多项选择。
但是GridView.setChoiceMode(GridView.CHOICE_MODE_MULTIPLE_MODAL)不兼容低版本。
找解决方案,查看android sdk提供的demo里介绍的GridView多项选择的方法
public class Grid3 extends Activity {
GridVi...
分类:
其他好文 时间:
2014-10-10 19:39:54
阅读次数:
628