Using this example will change the title of android application to don’t show us the title.
You need to set some features:
This will be the result of the example:
This it’s the new and only changes of MyClock.java.
1 2 3 4 5 6 | @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE); setContentView(R.layout.activity_my_clock); } |
Also, If you got some errors about build tools over your project, then you need to set up like this: