gpt4 book ai didi

android - 使用 ActionbarSherlock 和 jeremyfeinstein 滑动菜单自定义 ActionBar

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:19:55 26 4
gpt4 key购买 nike

我有一个 Action sherlock 栏,我需要自定义这个控件,如下图所示。我需要一个伪代码或类似的简单示例。我下载了图书馆,例子,我一直在这个网站和谷歌搜索,但我找不到这样的东西。抱歉,如果信息不完整,在这种情况下,我会使用您需要的信息编辑帖子。谢谢。

注意:

  1. 我不想使用 android.support.v4.widget.DrawerLayoutActionBarDrawerToggle。我需要夏洛克幻灯片效果。
  2. 我需要菜单选项列表 (LISTVIEW) 上方的图像和标签(见右图)。

enter image description here

以后我需要一个像下面这样的栏(风格必须类似于see this link)

enter image description here

最佳答案

SidingMenu 布局:

您应该将 ListView 设置为菜单布局。接下来,创建包含 ImageViewTextViewsliding_menu_header.xml 布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="vertical" >

<ImageView
android:src="@drawable/image_source"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>

<TextView
android:text="text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>

</LinearLayout>

现在,您可以扩充此布局并将其设置为 ListView 的标题 View :

View menuHeader = getLayoutInflater().inflate(R.layout.sliding_menu_header, null);
mListView.addHeaderView(menuHeader);
mListView.setAdapter(mYourMenuAdapter);

ActionBar 布局:

您可以向ActionBar 添加自定义 View 。在你的情况下,布局可以是这样的:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="horizontal" >

<Button
android:id="@+id/button1"
android:text="button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>

<Button
android:id="@+id/button2"
android:text="button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>

</LinearLayout>

然后将以下几行添加到您的 onCreate 方法中:

ActionBar actionBar = getSupportActionBar();
actionBar.setCustomView(R.layout.actionbar_view);
actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM
| ActionBar.DISPLAY_SHOW_HOME);

Button button1 = actionBar.getCustomView.findViewById(R.id.button1);
Button button2 = actionBar.getCustomView.findViewById(R.id.button2);

希望对您有所帮助。如果我的回答不完整,请发表评论,我会更新。

关于android - 使用 ActionbarSherlock 和 jeremyfeinstein 滑动菜单自定义 ActionBar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23643376/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com