- Buy the application :) The question is generally incomprehensible, do you program under androyd or what? - Artem
- oneHow many people want to help a girl :) - Barmaley
- oneProbably I should register under the name Tanya =) - Gorets
- 2@Gorets will have to learn to ask questions with screenshots :) - Yura Ivanov
|
2 answers
<activity android:name=".MyActivity" android:theme=" @android :style/Theme.NoTitleBar" />
add to manifest
|
in onCreate the desired activation before
super.onCreate(savedInstanceState); // << это есть requestWindowFeature(Window.FEATURE_NO_TITLE); // << это вставить именно сюда setContentView(R.layout.about_screen);// << это есть
- thank you, problem solved. - Natasha
- The principal point in this is that the order of the lines should be exactly like this. There may be other lines between them, but the order does not change. - KoVadim
|