Android 平板电脑应用程序 - ActionBar

发布于 2025-01-01 07:00:27 字数 92 浏览 3 评论 0原文

我们正在尝试为三星 Galaxy 平板电脑构建 Android 应用程序。有没有办法可以增加ActionBar的高度?我们使用的是 Android 3.1 API 12。

We are trying to build an Android App for Samsung Galaxy Tablets. Is there a way we can increase the height of the ActionBar? We are using Android 3.1 API 12.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

洋洋洒洒 2025-01-08 07:00:27

您可以将自定义主题应用到您的应用程序。

在 res/values/ 目录中创建 styles.xml 并添加如下内容:

<style name="CustomTheme" parent="android:style/Theme">
    <item name="android:actionBarSize">@dimen/action_bar_default_height</item>
</style>

然后在 res/values/ 目录中创建 dimens.xml 并添加如下内容:

<resources>
    <dimen name="action_bar_default_height">55dp</dimen>
</resources>

然后在应用程序清单中设置应用程序的主题,如下所示:

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:logo="@drawable/ic_launcher"
    android:theme="@style/CustomTheme" >
...
</application>

You can apply a custom theme to your application.

Create styles.xml in your res/values/ directory and add something like this:

<style name="CustomTheme" parent="android:style/Theme">
    <item name="android:actionBarSize">@dimen/action_bar_default_height</item>
</style>

Then create dimens.xml in your res/values/ directory and add something like this:

<resources>
    <dimen name="action_bar_default_height">55dp</dimen>
</resources>

Then in your application manifest set the theme of the application like this:

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:logo="@drawable/ic_launcher"
    android:theme="@style/CustomTheme" >
...
</application>
半仙 2025-01-08 07:00:27

您将需要创建一个自定义操作栏。

这是一个很好的教程

创建自定义操作栏

这里还有一个来自开发网站的很好的例子。

Android 操作栏

You will need to create a custom Action Bar.

Here is a good tutorial

Creating a custom Action bar

Also here is a good example from the dev site.

Android Action Bar

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文