android:keepScreenOn="true"
Yani şu şekilde gözükmeli xml dosyanız;
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true"
android:keepScreenOn="true">
If you want your apps make your screen not goes black, you should use a little code in your screen xml file on layout.
android:keepScreenOn="true"
or
android:keepScreenOn="false"
So your apps will not be sleep while your layout on screen.