검색결과 리스트
분류 전체보기에 해당되는 글 75건
- 2013.03.08 C# 기본 문법
- 2013.03.08 안드로이드 엑티비티 불투명 , android activity Dim
- 2013.03.08 안드로이드 쓰레드 , android Thread
- 2013.03.08 안드로이드 mp3재생 , android mp3 play
- 2013.03.07 안드로이드 Logger
글
C# 기본 문법
* 프로그램 종료하기
Application.Exit();
* MessageBox 띄우기
MessageBox.Show("hhh");
* 글자를 숫자로 바꾸기
int aaa = int.Parse("123");
double ddd = Double.Parse("123.456");
* Sleep 주기
using System.Threading;
Thread.Sleep(1);
* 0과 1사이 난수 발생 하기
using System.Threading;
Thread.Sleep(1);
Random rand = new Random();
double d = rand.NextDouble();
* TextBox에 글자 넣기
textBox1.Text = "aaa";
* Timer 사용하기
1. form에 timer를 추가한다.
2. timer를 선택 후 property에서 interval을 설정한다.
3. timer를 double click하여 tick event에 code를 추가한다.
4. timer를 구동하기 위해 button click에
timer.Enabled = true;
를 설정한다. 정지는 false
* system 시간 받아 오기
System.DateTime.ToString();
* Dialog 띄우기
1. 새로운 폼을 만든다.
2. 필요한 부분에서 새폼을 dialog 로 연다.
Form2 dlg = new Form2();
DialogResult res = dlg.ShowDialog();
if (res == DialogResult.OK)
{
// OK를 눌렀을 때 작업
}
* Dialog 닫기
sub form에서
this.Close();
* ListBox
- 내용 추가하기
listBox1.Items.Add("aaa");
'프로그램 > C#' 카테고리의 다른 글
C# 데이터 타입 (0) | 2013.03.08 |
---|---|
C# TextBox에 엔터 이벤트 넣기 (0) | 2013.03.08 |
C# Object sender, EventArgs e 란? (0) | 2013.03.08 |
C# 주소창 제목 표시줄 (0) | 2013.03.08 |
C# 마우스로 선그리기 (0) | 2013.03.08 |
설정
트랙백
댓글
글
안드로이드 엑티비티 불투명 , android activity Dim
public void onCreate(Bundle savedInstanceState) { WindowManager.LayoutParams lpWindow = new WindowManager.LayoutParams(); lpWindow.flags = WindowManager.LayoutParams.FLAG_DIM_BEHIND; //아래에 원하는 투명도를 넣으면 된다. lpWindow.dimAmount = 0.6f; getWindow().setAttributes(lpWindow); }
'프로그램 > Android' 카테고리의 다른 글
안드로이드 엑티비티 투명 , android activity Dim (0) | 2013.03.12 |
---|---|
안드로이드 Intent 사용법 (0) | 2013.03.11 |
안드로이드 쓰레드 , android Thread (0) | 2013.03.08 |
안드로이드 mp3재생 , android mp3 play (0) | 2013.03.08 |
안드로이드 Logger (0) | 2013.03.07 |
설정
트랙백
댓글
글
안드로이드 쓰레드 , android Thread
3초후에 시작하는 쓰레드핸들러
r = new Runnable() { public void run() { ap.dismiss(); mpAway.start(); ap_ScheduleAlertDialog.setOnKeyListener(okl); } }; mHandler = new Handler(); mHandler.postDelayed(r, 3 * 1000); //핸들러 종료 mHandler.removeCallbacks(r);
'프로그램 > Android' 카테고리의 다른 글
안드로이드 엑티비티 투명 , android activity Dim (0) | 2013.03.12 |
---|---|
안드로이드 Intent 사용법 (0) | 2013.03.11 |
안드로이드 엑티비티 불투명 , android activity Dim (0) | 2013.03.08 |
안드로이드 mp3재생 , android mp3 play (0) | 2013.03.08 |
안드로이드 Logger (0) | 2013.03.07 |
설정
트랙백
댓글
글
안드로이드 mp3재생 , android mp3 play
MediaPlayer mp; mp = MediaPlayer.create(contt, R.raw.sound); mp.start; mp.stop;wav 만 재생이 될지도 모름 ^^
'프로그램 > Android' 카테고리의 다른 글
안드로이드 엑티비티 투명 , android activity Dim (0) | 2013.03.12 |
---|---|
안드로이드 Intent 사용법 (0) | 2013.03.11 |
안드로이드 엑티비티 불투명 , android activity Dim (0) | 2013.03.08 |
안드로이드 쓰레드 , android Thread (0) | 2013.03.08 |
안드로이드 Logger (0) | 2013.03.07 |
설정
트랙백
댓글
글
안드로이드 Logger
log 클래스를 만들어 사용 하면 약간 좋더구만 ㅋㅋ public class A { Logger.e(getclass(), "log 메세지") Logger.e(getclass(), "log", " 메세지") } public class Logger { public static final String TAG = "Logger"; public static final boolean IS_DEBUG = true; // 디버깅 용 public static void d(Class extends Object> classtype, String method, String msg) { if (IS_DEBUG) { Log.d(TAG, makeString(classtype.getSimpleName() + " ", method, msg)); } } public static void d(Class extends Object> classtype, String msg) { if (IS_DEBUG) { Log.d(classtype.getSimpleName() + " ", " >> " + msg); } } protected static String makeString(String tagtosub, String a, String b) { return "[" + tagtosub + "] " + a + " >> " + b; } public static void toast(Context mContext, String string, int length) { if (IS_TOAST) { Toast toast = Toast.makeText(mContext, string, length); int offsetX = 10; int offsetY = 10; toast.setGravity(Gravity.CENTER, offsetX, offsetY); toast.show(); } } }
'프로그램 > Android' 카테고리의 다른 글
안드로이드 엑티비티 투명 , android activity Dim (0) | 2013.03.12 |
---|---|
안드로이드 Intent 사용법 (0) | 2013.03.11 |
안드로이드 엑티비티 불투명 , android activity Dim (0) | 2013.03.08 |
안드로이드 쓰레드 , android Thread (0) | 2013.03.08 |
안드로이드 mp3재생 , android mp3 play (0) | 2013.03.08 |
RECENT COMMENT