亮亮小二吧 关注:4贴子:155

亮亮我是来水帖的,你揍开。。。

只看楼主收藏回复

亮亮我是来水帖的,你揍开。。。



来自Android客户端1楼2016-01-29 12:09回复
    亮亮你敢拆我楼我跟你拼命



    来自Android客户端4楼2016-01-29 12:25
    回复
      @亮亮小二


      来自iPhone客户端35楼2016-05-07 10:41
      收起回复
        Ajax,在它最基本的层面,是一种与服务器通讯而不重载当前页面的方法,数据可从服务器获得或发送给服务器。有多种不同的方法构造这种通讯通道,每种方法都有自己的优势和限制。
        有五种常用技术用于向服务器请求数据:
        (1)XMLHttpRequest (XHR)
        (2)动态脚本标签插入
        (3)框架
        (4)Comet
        (5)多部分的XHR


        来自Android客户端36楼2016-06-18 09:54
        回复
          组件是一个可重用的模块,它是由一组处理过程、数据封装和用户接口组成的业务对象(Rules Object)。组件看起来像对象,但不符合对象的学术定义。它们的主要区别是: 1)组件可以在另一个称为容器(有时也称为承载者或宿主)的应用程序中使用,也可以作为独立过程使用; 2)组件可以由一个类构成,也可以由多个类组成,或者是一个完整的应用程序; 3)组件为模块重用,而对象为代码重用。


          来自Android客户端39楼2016-06-20 13:50
          回复
            DECLARE @iStart INT
            DECLARE @iEnd INT
            DECLARE @i INT
            DECLARE @iCount INT
            SET @iStart = 1
            SET @iEnd = 1000
            SET @i=@iStart
            WHILE (@i <= @iEnd) BEGIN
            SELECT @iCount = COUNT(1) FROM TableName WHERE A = @i
            IF @iCount = 0 BEGIN
            INSERT INTO TableName (A)
            SELECT @i
            END
            SET @i=@i+1
            END
            需要procedure封装才能在数据库以函数形式执行


            来自Android客户端41楼2016-06-23 13:29
            回复
              标签:
              activity
              --android:name
              android:label
              intent_filter
              action
              category
              resources


              46楼2016-10-10 12:38
              回复
                类包:
                Activity
                --protected void onCreate(Bundle bundle){}
                --private void setContentView(int id){}
                --private void requestWindowFeature(int level){}
                --public View findViewById(int id){}
                --public boolean onCreateOptionsMenu(Menu menu){}
                --public boolean onOptionsItemSelected(MenuItem item){}
                --private void finish(){}
                MenuInflater
                --public MenuInflater getMenuInflater(){}
                --private void inflate(int id, Menu menu){}
                Toast
                --private static Toast makeText(Context context, String string, int time){}


                47楼2016-10-10 13:07
                回复
                  Activity
                  --private void startActivity(Intent intent){}
                  --private void startActivityForResult(Intent intent, int requestcode);
                  --private setResult(int Result_OK, Intent intent);
                  --protected void onActivityResult(int requestCode, int resultCode, Intent intent){}
                  --public void onBackPressd(){}
                  Intent
                  --public Intent Intent(Context activity_1, Class activity_2){}
                  --public Intent Intent(String action){}
                  --private void addCategory(String category){}
                  --private void setData(Uri uri){}
                  --private void putExtra(String key, String value){}
                  --private String getStringExtra(String key){}


                  48楼2016-10-10 13:30
                  回复
                    标签:
                    mainfest
                    package
                    android:versionCode
                    android:versionName
                    uses-sdk
                    android:minSdkVersion
                    android:targetSdkVersion
                    application
                    android:allowBackup
                    android:icon
                    android:theme


                    49楼2016-10-10 19:40
                    回复
                      Activity
                      --protected void onStart(){}
                      --protected void onResume(){}
                      --protected void onPause(){}
                      --protected void onStop(){}
                      --protected void onDestroy(){}
                      --protected void onRestart(){}
                      --protected void onSaveInstanceState(Bundle bundle){}
                      Bundle
                      --private void putString(){}
                      --private void getString(){}
                      标签:
                      --android:launchMode="standard/singleTop/singleTask/singleInstance(单栈)"
                      List<?>
                      --private void add(<?> tag){}
                      --private void remove(<?> tag){}


                      50楼2016-10-10 20:04
                      回复
                        标签
                        TextView
                        android:text
                        android:gravity
                        android:textSize
                        android:textColor
                        Button
                        EditText
                        android:hint
                        android:maxLines
                        ImageView
                        android:src
                        ProgressBar
                        android:visibility
                        style
                        android:max


                        51楼2016-10-10 20:33
                        回复
                          Button
                          --private void setOnclickListener(Button button){}
                          EditText
                          --private Object getText(){}
                          ImageView
                          --private void setImageResource(int id){}
                          ProgressBar
                          --private int getVisibility(){}
                          --private void setVisibility(int visibility){}
                          --private int getProgress(){}
                          --private void setProgress(int progress){}
                          AlertDialog.Builder
                          --public AlertDialog.Builder AlertDialog(Activity activity){}
                          --private void setTitle(String title){}
                          --private void setMessage(String message){}
                          --private void setCancelable(Boolean boolean){}
                          --private void setPositiveButton("OK",DialogInterface.OnClickListener listener){}
                          --private void setNegativeButton("Cancel",DialogInterface.OnClickListener listener){}
                          --private void show();
                          ProgressDialog
                          --...


                          52楼2016-10-10 20:59
                          回复
                            标签
                            LinearLayout
                            android:orientation
                            android:layout_width
                            android:layout_height
                            android:layout_gravity
                            android:layout_weight
                            RelativeLayout
                            android:layout_alignParentLeft/Right/Bottom/Top
                            android:layout_centerInParent
                            android:layout_above/below/toLeftOf/toRightOf
                            android:layout_alignLeft/Right/Top/Bottom


                            53楼2016-10-10 22:44
                            回复
                              FrameLayout
                              TableLayout
                              TableRow
                              android:inputType
                              android:layout_span
                              android:stretchColumns


                              54楼2016-10-10 23:01
                              回复