Android Question Blue Line on Top of Layout

Paulsche

Well-Known Member
Licensed User
Longtime User
Hi,

all my Apps have on top of Layout a blue line,
how do I get this off ?
 

Attachments

  • screenshot.png
    screenshot.png
    85.1 KB · Views: 169

Paulsche

Well-Known Member
Licensed User
Longtime User
Which device are you using? Which Android version?

Hi Erel, i have Samsung Galaxy S4 with Android 5.0.1 and a Samsung Galaxy S4 mini with Android 4.4.2,
and a Samsung Tab 2 with Android 4.1.2

I suspect it is the Holo Them

B4X:
AddManifestText(
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="22"/>
<supports-screens android:largeScreens="true"
    android:normalScreens="true"
    android:smallScreens="true"
    android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
SetApplicationAttribute(android:theme,"@android:style/Theme.Holo")
SetActivityAttribute(Main, android:screenOrientation, "portrait")
'End of default text.
AddManifestText(<uses-feature android:name="android.hardware.camera" android:required="false"/>
<uses-feature android:name="android.hardware.location.gps" android:required="false"/>
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>)
removepermission(android.permission.BLUETOOTH_ADMIN)
removepermission(android.permission.BLUETOOTH)
removepermission(android.permission.RECORD_VIDEO)
removepermission(android.permission.RECORD_AUDIO)
removepermission(android.permission.WRITE_SECURE_SETTINGS)
removepermission(android.permission.ACCESS_ASSISTED_GPS)
removepermission(android.permission.ACCESS_GPS)
RemovePermission(android.hardware.LOCATION.GPS)
AddPermission(android.permission.WRITE_EXTERNAL_STORAGE)
SetApplicationAttribute(android:label, "@string/app_name") ' NEW in v3.0!!!
AddApplicationText(
<activity android:name="com.dropbox.sync.android.DbxAuthActivity" />
<activity
  android:name="com.dropbox.client2.android.AuthActivity"
  android:launchMode="singleTask" >
  <intent-filter>
    <data android:scheme="db-g4rqr1c11mspogl" /> <!-- NEED TO UPDATE -->
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.BROWSABLE" />
    <category android:name="android.intent.category.DEFAULT" />
  </intent-filter>
</activity>
<service
  android:name="com.dropbox.sync.android.DbxSyncService"
  android:enabled="true"
  android:exported="false"
  android:label="Dropbox Sync" />
 
Last edited:
Upvote 0

Paulsche

Well-Known Member
Licensed User
Longtime User
when i set #IncludeTitle: false,
then the Title and the blue line has disappeared.
The title I do not need actually, so for me that is the solution.
 
Upvote 0
Top