首先页面采用ViewPager,在第一个页面中有一个按钮,要求点击这个页面上的按钮弹出一个对话框。先贴出效果图:分析难点:1、在ViewPager中,共有四个选项卡页,找到第一个页面中Button按钮。先贴出代码: 1 package com.example.acountrecorder; 2 .....
分类:
移动开发 时间:
2014-09-23 11:36:14
阅读次数:
388
GUILayout布局可以自动排列相关控件,例如:1 void OnGUI()2 {3 GUILayout.Button("这一个GUILayout按钮");4 }效果:可以将控件的大小自动缩放成适应大小,从屏幕左上角开始排列,例如:1 void OnGUI()2 ...
分类:
其他好文 时间:
2014-09-23 01:24:34
阅读次数:
479
1.GUILayout控件1 void OnGUI()2 {3 GUILayout.Button("这是GUILayout按钮");4 }效果:会自动调整控件大小,自动定位在屏幕左上角;2.组视图1 void OnGUI()2 {3 GUI.B...
分类:
其他好文 时间:
2014-09-23 01:13:03
阅读次数:
347
1.创建窗口 1 //声明窗口位置大小 2 private Rect pos = new Rect(10,60,120,50); 3 4 //回调函数 5 void Wincallback(int id) 6 { 7 if(GUI.Button(ne...
分类:
其他好文 时间:
2014-09-23 01:08:13
阅读次数:
404
1.文本输入框 1 public string text; 2 3 void OnGUI(){ 4 text = GUI.TextField(new Rect(140, 140, 100, 40), text); 5 6 if (GUI.Button(ne...
分类:
其他好文 时间:
2014-09-23 00:56:33
阅读次数:
327
dd a system wide windows explorer button " Edit with Sublime" similar to how Notepad++ does it or some other editors?See attached screenshot. (I know ...
分类:
其他好文 时间:
2014-09-23 00:42:04
阅读次数:
272
MainActivity如下:
package cc.cv;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.app.Activity;
import android....
分类:
其他好文 时间:
2014-09-22 19:27:03
阅读次数:
179
form表单底下的button按钮标签 每次点击 都会将表单自动提交,根本就起不到一个按钮的作用了。方法:1 将button标签这只上 type="button"的属性2 或者用 标签也可以
分类:
其他好文 时间:
2014-09-22 19:12:52
阅读次数:
173
public class TestActivity extends Activity { private AutoCompleteTextView auto; private Button searchbtn...
分类:
移动开发 时间:
2014-09-22 17:20:52
阅读次数:
288
MT8121/8382平台:前几天又遇到一个源码的bug。在10寸平板上,进入设置界面,点击Location(位置)项,右上角Title处会显示一个开关button,用来开关定位服务。但点完Location项再点其他项的时候,button并不会消失。直到你点到Developer(开发者选项),再点击...
分类:
其他好文 时间:
2014-09-22 01:25:01
阅读次数:
419