[안드로이드] 슬라이드 에니메이션, 밑 고정 메뉴 위의 사진과 같이 손가락으로 클릭후 끌어 메뉴를 갖고 올수 가 있습니다. 아래 있는 고정 메뉴는 쉽게 HTML로 말하자면 include 같이 main 에 UI을 고정해놓는거예요. 손으로 집어 끌어 올리는 SlidingDrawer 와 Drawer 클래스에 관해 알아 보도록 하죠.. 간단히 소스를 공개합니다. main.xml main.class draw = (Drawer)findViewById(R.id.customDrawer); Drawer.class public class Drawer extends FrameLayout{ private ImageButton ImageButton1; private ImageButton ImageButton2; private ImageButton ImageButton3; pr.. 더보기 [안드로이드] AlertDialog , 스트림 실행하기 AlertDialog.Builder builder = new AlertDialog.Builder(this); //AlertDialog.Builder builder = new AlertDialog.Builder(v.getContext()); builder.setMessage("3G 상태에선 가입하신 요금제에 따라 데이터 통화료가 발생할 수 있습니다.\r\n이점 유의해 주세요.") .setCancelable(false) .setPositiveButton("Yes", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { //Toast.makeText(getApplicationContext(), ".. 더보기 [안드로이드] WebView 로딩, 백, 앞 private ProgressBar pb3; pb3 = (ProgressBar)findViewById(R.id.progresssmall3); pb3.setVisibility(View.VISIBLE); browser = (WebView) findViewById(R.id.webview); browser.getSettings().setJavaScriptEnabled(true); browser.setWebViewClient(new WebViewClient(){ @Override public boolean shouldOverrideUrlLoading(WebView view, String url) { view.loadUrl(url); return true; } @Override public void onPageFi.. 더보기 이전 1 ··· 209 210 211 212 213 214 215 ··· 253 다음