- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我最近升级了我的应用程序以使用 ActionBarSherlock 4.1。由于在 Honeycomb 上运行应用程序的升级用户在操作栏上设置自定义 View 时遇到了由于空指针异常而导致的强制关闭。
我向操作栏添加了一个包含两个微调器的自定义 View ,这适用于 Android 4.0 和 4.1,但不适用于 3.2。
bar.setCustomView(R.layout.custom_action_bar);// spinners
actionBarViewHolder= new CustomActionBarViewHolder();
actionBarViewHolder.categorySpinner = (Spinner) findViewById(R.id.actionbar_catergory);
actionBarViewHolder.sortBySpinner = (Spinner) findViewById(R.id.actionbar_sortby);
在 Android 3.2 上还找不到微调器,在 4.0 和 4.1 上可以找到它们的 View 并且一切运行顺利。
我没有在 3.0 模拟器上尝试过该应用程序,但我认为问题仍然存在。
任何想法可能是什么问题?
<LinearLayout android:id="@+id/linearLayout1"
android:layout_width="wrap_content" android:layout_height="match_parent"
android:gravity="center_vertical|center_horizontal"
android:layout_weight="0.5">
<TextView android:id="@+id/textView1" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="Category:" />
<Spinner android:id="@+id/actionbar_catergory"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:entries="@array/actionbar_spinner_catergory"
android:background="@drawable/spinner_background" />
</LinearLayout>
<LinearLayout android:id="@+id/linearLayout1"
android:layout_width="wrap_content" android:layout_height="match_parent"
android:gravity="center_vertical|center_horizontal"
android:layout_weight="0.5">
<TextView android:id="@+id/textView2" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="Sort By:" />
<Spinner android:id="@+id/actionbar_sortby"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:entries="@array/actionbar_spinner_sortby" android:background="@drawable/spinner_background" />
</LinearLayout>
最佳答案
试试这个,它在所有设备上都能正常工作,或者你可以查看演示代码 here
getSupportActionBar().setCustomView(R.layout.actionbar_top); // load your layout
getSupportActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
图片
关于android - ActionBarSherlock setCustomView 在 Android 3.2 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11640191/
我正在尝试设置我的应用程序的自定义 View ,但我制作的布局没有填满整个操作栏。我尝试了很多样式设置,但没有一个对我有用。 这是我的 Activity 代码 View view = getLayou
出于某种原因,下面的两个代码块都可以工作,但它们显示的结果略有不同。有人可以解释一下区别吗? 版本 1: View customView = getLayoutInflater().inflate(R
你好,我有一个 tabLayout,它试图通过这种方法为每次滚动刷新选项卡的自定义 View private void updateTabs() { for (int i = 0; i
我在这个布局中使用 ActionBar.Tab setCustomView() 方法: 这是我设置 ActionBar 的函数: public void setActionBar()
如何在选项卡项标题下方添加 TextView。我想在 tabitem 的我标题下方完成 50 个中的 20 个是否可以执行此操作。提前致谢我已经完成了一些解决方案的回答。但是我得到了 nullPoin
我的项目中有 Storyboard。我用 [UIBarButtonItem setCustomView:]自定义工具栏按钮的方法。例如: [self setCustomView:[[UIImageVi
我最近升级了我的应用程序以使用 ActionBarSherlock 4.1。由于在 Honeycomb 上运行应用程序的升级用户在操作栏上设置自定义 View 时遇到了由于空指针异常而导致的强制关闭。
自从 appcompat 库从 23.1.0 升级到 23.1.1 后,在 TabLayout.Tab 上调用 setCustomView() 会抛出 NullPointerException. 例如
我是一名优秀的程序员,十分优秀!