this.requestWindowFeature(Window.FEATURE_NO_TITLE);
මාතෘකා තීරුව කෙටියෙන් දර්ශනය වී පසුව අතුරුදහන් වන නිසා මම එයට කැමති නැත .
android:theme="@android:style/Theme.NoTitleBar"
නව උපාංගවල භාවිතා කරන්නන් පුරුදු වී ඇති 3.0+ හෝලෝ වෙනස්කම් සියල්ලම මට අහිමි වූ නිසා මමත් කැමති නැත . ඒ නිසා මම මෙම විසඳුම හමු විය.
ඔබගේ res / values ෆෝල්ඩරයේ style.xml නමින් ගොනුවක් සාදන්න (එය දැනටමත් නොපවතී නම්). එම ගොනුවේ පහත කේතය තබන්න:
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="Theme.Default" parent="@android:style/Theme"></style>
<style name="Theme.NoTitle" parent="@android:style/Theme.NoTitleBar"></style>
<style name="Theme.FullScreen" parent="@android:style/Theme.NoTitleBar.Fullscreen"></style>
</resources>
ඊළඟට වෙනත් style.xml ගොනුවක් සමඟ res / values-v11 සාදන්න (නැවත වරක් මෙය දැනටමත් පැවතිය හැකිය). එම ගොනුවේ පහත කේතය තබන්න:
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="Theme.Default" parent="@android:style/Theme.Holo"></style>
<style name="Theme.NoTitle" parent="@android:style/Theme.Holo.NoActionBar"></style>
<style name="Theme.FullScreen" parent="@android:style/Theme.Holo.NoActionBar.Fullscreen"></style>
</resources>
ඔබ 4.0+ ඉලක්ක කරන්නේ නම්, තවත් style.xml ගොනුවක් සමඟ res / values-v14 ෆෝල්ඩරයක් සාදන්න (ඔව් එය දැනටමත් එහි තිබිය හැක). එම ගොනුවේ පහත කේතය තබන්න:
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="Theme.Default" parent="@android:style/Theme.Holo.Light"></style>
<style name="Theme.NoTitle" parent="@android:style/Theme.Holo.Light.NoActionBar"></style>
<style name="Theme.FullScreen" parent="@android:style/Theme.Holo.Light.NoActionBar.Fullscreen"></style>
</resources>
අවසාන වශයෙන්, මෙම ලිපිගොනු සියල්ලම නිර්මාණය කර ඇති විට, ඔබට කේතය එක් කළ හැකි AndroidManifiest.xml ගොනුව විවෘත කරන්න :
android:theme="@style/Theme.NoTitle"
සමස්ත යෙදුමටම අදාළ වීමට අවශ්ය නම් ඔබට මාතෘකාවක් අවශ්ය නොවන ක්රියාකාරකම් ටැගය හෝ යෙදුම් ටැගය වෙත.
දැන් ඔබේ පරිශීලකයින්ට ඔබ කැමති තිර සැකැස්ම සමඟ ඔවුන්ගේ උපාංග අනුවාදය හා සම්බන්ධ තේමාවන් ලැබෙනු ඇත.
PS අගය වෙනස් කිරීම android:theme="@style/Theme.FullScreen"
එකම බලපෑමක් ඇති කරයි, නමුත් දැනුම්දීම් තීරුව ඉවත් කරන්න.