package com.mhalka.qurantranslationdisplay; import android.app.Activity; import android.os.Bundle; import android.view.View; import com.mhalka.qurantranslationdisplay.util.SystemUiHider; /** * An example full-screen activity that shows and hides the system UI (i.e. * status bar and navigation/system bar) with user interaction. * * @see SystemUiHider */ public class ShowAyah extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_show_ayah); final View ayah = findViewById(R.id.ayah); } }