I'm new to android please suggest me.................
I was working in Full page webview in that i need to hide top action bar and show bottom action bar. I tried in many ways to do this task but there are lot conflict between top bar and bottom bar when i make hide top action bar at the same time bottom bar also hiding i'm searching for the solution. Can you please provide me suggest to do in this task.
android:allowBackup="true"
android:icon="@drawable/sample"
android:label="@string/app_name" >
<activity
android:name="controller.SplashScreen"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="controller.TestingActivity"
android:uiOptions="splitActionBarWhenNarrow"
android:label="@string/title_student_registration" >
<meta-data android:name="android.support.UI_OPTIONS"
android:value="splitActionBarWhenNarrow" />
</activity>
</application>
<uses-permission android:name="android.permission.INTERNET" />