应用程序在底部留下空白区域

Pra*_*ngh 7 android android-layout android-webview android-studio

伙计我的应用程序在屏幕底部留下了导航按钮的空白区域.
请帮我纠正

在此输入图像描述

因为我们可以在底部留下空白,而其他应用程序是正常的.

这是我的style.xml代码:

<style name="AppBaseTheme" parent="android:Theme.Light"></style>
Run Code Online (Sandbox Code Playgroud)

这是清单文件中的活动代码:

<activity
     android:name="unknown"            
     android:label="@string/app_name"
     android:launchMode="singleInstance"
     android:theme="@android:style/Theme.Translucent.NoTitleBar" >
Run Code Online (Sandbox Code Playgroud)

编辑:我做了一切,但没有任何工作,但问题似乎与编辑.我用android studio创建了一个带有所有相同代码和主题的应用程序它显示它很好但是当我使用eclipse时,它显示底部的空白区域.这太烦人了.

Gia*_*ran 0

尝试

< activity
        android:name="unknown"            
        android:label="@string/app_name"
        android:launchMode="singleInstance"
        android:theme="@style/AppTheme.NoActionBar" >
Run Code Online (Sandbox Code Playgroud)