분류 전체보기288 about status bar transparency android – Status bar transparency doesn't workQuestions & AnswersApr 13, 20166I am trying to make status bar transparent in my application using this code:getWindow().addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS); getWindow().clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS); getWindow().setStatusBarColor(Color.TRANSPARENT); But it doesn’t work. Status bar j.. 2016. 9. 15. Android UI : Fixing skipped frames taken from : Android UI : Fixing skipped framesAnyone who begins developing android application sees this message on logcat“Choreographer(abc): Skipped xx frames! The application may be doing too much work on its main thread.” So what does it actually means, why should you be concerned and how to solve it.What this means is that your code is taking long to process and frames are being skipped be.. 2016. 9. 11. android upload example written by http://androidexample.com/Upload_File_To_Server_-_Android_Example/index.php?view=article_discription&aid=83&aaid=106 In this example uploading an image from sdcard to web server.Steps : 1. place an image on sdcard. 2. place sdcard image path and image name in UploadToServer.java. ( see below ) 3. create a php script (UploadToServer.php) at server. ( see below ) 4. place php script pat.. 2016. 9. 9. Button Event Case Button Event Case package com.example.administrator.eventhandlingapplication; import android.os.Bundle; import android.support.design.widget.FloatingActionButton; import android.support.design.widget.Snackbar; import android.support.v7.app.AppCompatActivity; import android.support.v7.widget.Toolbar; import android.view.View; import android.view.Menu; import android.view.MenuItem; import android... 2016. 9. 9. Layout Header View Modify 11down voteacceptedUpdate: With the release of Design Support Library 23.1.1, the following method has been added to address this issue:/** * Gets the header view at the specified position. * * @param index The position at which to get the view from. * @return The header view the specified position or null if the position does not exist in this * NavigationView. */ public View getHeaderView(int .. 2016. 9. 4. camera permission confirmation Request the permissions you needIf your app doesn't already have the permission it needs, the app must call one of the requestPermissions() methods to request the appropriate permissions. Your app passes the permissions it wants, and also an integer request code that you specify to identify this permission request. This method functions asynchronously: it returns right away, and after the user r.. 2016. 9. 3. how to change email textview in NavigationDrawer NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view); navigationView.setNavigationItemSelectedListener(this); View header=navigationView.getHeaderView(0); /*View view=navigationView.inflateHeaderView(R.layout.nav_header_main);*/ name = (TextView)header.findViewById(R.id.username); email = (TextView)header.findViewById(R.id.email); name.setText(personName); email.setText(p.. 2016. 8. 15. android studio project name all rename written by http://1004lucifer.blogspot.kr/2014/10/intellijandroid-package-name.html Android Studio 에서의 방법 확인버전: Android Studio 1.1.0 1. gradle 을 사용하는 경우 - Android Studio 에서 프로젝트를 만들거나 import 시 gradle 만들겠다고 체크한경우 1004lucifer 아래와 같이 gradle 파일에서 applicationId 를 변경해 주면 된다. (간단) PS. 주의 com.android.application 이 단말기에 설치되어 있는경우 위의 방법을 사용 시 AndroidManifest.xml 의 태그의 name 변경이 필요하다. Gradle 에서 applicationI.. 2016. 8. 14. Android Login All written by http://www.androidhive.info/2012/01/android-login-and-registration-with-php-mysql-and-sqlite/Android Login and Registration with PHP, MySQL and SQLiteby Ravi Tamada/ January 31, 2012/ 3397 CommentsIn my previous article Android Login and Registration Screen Design I explained designing the login and registration interfaces. But it has no real time functionality. In this tutorial I am.. 2016. 8. 14. 이전 1 ··· 4 5 6 7 8 9 10 ··· 32 다음