안드 db

안드로이드 2015. 10. 21. 17:49

http://www.androidhive.info/2012/01/android-login-and-registration-with-php-mysql-and-sqlite/


http://rightg.tistory.com/114


http://www.coderzheaven.com/2012/04/22/create-simple-login-form-php-android-connect-php-android/


http://blog.daum.net/_blog/BlogTypeView.do?blogid=0MpVh&articleno=7693727

http://withcoding.com/32

'안드로이드' 카테고리의 다른 글

다른 화면 데이터 전달하기  (0) 2015.10.25
안드로이드 do it 동영상  (0) 2014.06.23
do it 4일차  (0) 2014.04.08
안드로이드/Android SharedPreferences 사용 예제  (0) 2013.11.27

안드로이드 타이틀바 제거

안드로이드/소스 2015. 10. 21. 14:42

안드로이드 상단 타이틀바 없애기

출처 : http://kwonsaw.tistory.com/127

 

프로젝트를 생성하면 기본적으로 상단타이틀에 프로젝트명이 붙어서 노출이 됩니다. 타이틀 없애는 방법입니다.

먼저 AndroidManifest.xml 을 열고 다음 볼드체로 되어있는 부분을 추가해 줍니다.

 

<application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@android:style/Theme.Light.NoTitleBar" >

 

 

상단에 상태바까지 없애고 싶다면 Fullscreen을 붙여주면 됩니다.

 

android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen"