作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有一个 Action sherlock 栏,我需要自定义这个控件,如下图所示。我需要一个伪代码或类似的简单示例。我下载了图书馆,例子,我一直在这个网站和谷歌搜索,但我找不到这样的东西。抱歉,如果信息不完整,在这种情况下,我会使用您需要的信息编辑帖子。谢谢。
注意:
以后我需要一个像下面这样的栏(风格必须类似于see this link)
最佳答案
SidingMenu 布局:
您应该将 ListView
设置为菜单布局。接下来,创建包含 ImageView
和 TextView
的 sliding_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/
我有一个 Action sherlock 栏,我需要自定义这个控件,如下图所示。我需要一个伪代码或类似的简单示例。我下载了图书馆,例子,我一直在这个网站和谷歌搜索,但我找不到这样的东西。抱歉,如果信息
我是一名优秀的程序员,十分优秀!