0

我试图为我的应用程序制作一个自定义的标题栏,它只不过是一个图像。

完全自定义示例: 在此处输入图像描述

我的目标是使图片的大小按显示器的屏幕宽度缩放。

我已经尝试删除 TitleBar,只放置一个 ImageView,但仍然是一个 Titlebar,其中创建了 App-Name 和 Icon ...

4

2 回答 2

0

<application>在您的标签中设置此属性manifest以删除标题栏

android:theme="@android:style/Theme.NoTitleBar">
于 2013-09-23T23:35:44.117 回答
0

像这样设置你的活动manifest.xml

   <activity
        android:name=".YourActivity"
        android:configChanges="keyboardHidden|orientation|keyboard" // this is hide keyboard
        android:theme="@android:style/Theme.Translucent.NoTitleBar" > // hide the title bar
    </activity>
于 2013-09-23T23:53:53.137 回答