- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我想让 ActionBar 中的所有选项卡都具有不同的颜色指示器,例如选项卡 1 为蓝色,选项卡 2 为红色等。
为了实现这一点,我确实为所有颜色创建了不同的选择器,并将它们放在可绘制对象的不同 xml 中。在 style.xml 中,我通过
调用它们<style name="MyTheme" parent="AppBaseTheme">
<item name="android:actionBarTabStyle">@style/ActionBarTabStyleRed</item>
</style>
<style name="ActionBarTabStyleRed">
<item name="android:background">@drawable/tab_indicator_red</item>
</style>
我也为不同的颜色创建了这种样式。现在,当我将可绘制对象或样式更改为不同的颜色时,它就可以工作了。我可以看到颜色被应用于选项卡。但是由于所有标签都是相同的颜色,所以它并没有解决我的目的。我试图在 onTabSelected()
中设置选项卡的样式,但没有方法可以做到这一点。
最终,我尝试为不同的颜色创建不同的主题,并尝试在 onTabSelected()
中以编程方式设置它们,但后来我知道必须在 setContentView()< 之前设置主题
.
所以我的问题是..我该怎么做?有什么办法可以让不同的选项卡指示器有不同的颜色???
更新:-
drawable/tab_indicator_red.xml
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Non focused states -->
<item android:state_focused="false" android:state_selected="false" android:state_pressed="false" android:drawable="@android:color/transparent" />
<item android:state_focused="false" android:state_selected="true" android:state_pressed="false" android:drawable="@drawable/tab_selected_red" />
<!-- Focused states -->
<item android:state_focused="true" android:state_selected="false" android:state_pressed="false" android:drawable="@drawable/tab_unselected_focused_red" />
<item android:state_focused="true" android:state_selected="true" android:state_pressed="false" android:drawable="@drawable/tab_selected_focused_red" />
<!-- Pressed -->
<!-- Non focused states -->
<item android:state_focused="false" android:state_selected="false" android:state_pressed="true" android:drawable="@drawable/tab_unselected_pressed_red" />
<item android:state_focused="false" android:state_selected="true" android:state_pressed="true" android:drawable="@drawable/tab_selected_pressed_red" />
<!-- Focused states -->
<item android:state_focused="true" android:state_selected="false" android:state_pressed="true" android:drawable="@drawable/tab_unselected_pressed_red" />
<item android:state_focused="true" android:state_selected="true" android:state_pressed="true" android:drawable="@drawable/tab_selected_pressed_red" />
</selector>
最佳答案
我想我有一个适合您的起点,但它有点繁琐。使用以下代码设置操作栏,您可以将选项卡设置为使用自定义外观:
//...somewhere in oncreate
ActionBar bar = getActionBar();
bar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
ActionBar.Tab tab1 = bar.newTab();
TextView tv1 = createTab("Tab 1", R.drawable.firsttabdrawable);
tab1.setCustomView(tv1);
tab1.setTabListener(this);
ActionBar.Tab tab2 = bar.newTab();
tab2.setCustomView(createTab("Tab 2", R.drawable.secondTabDrawable));
tab2.setTabListener(this);
ActionBar.Tab tab3 = bar.newTab();
tab3.setCustomView(createTab("Tab 3", R.drawable.thirdTabDrawable));
tab3.setTabListener(this);
ActionBar.Tab tab4 = bar.newTab();
tab4.setCustomView(createTab("Tab 4", R.drawable.fourthTabDrawable));
tab4.setTabListener(this);
bar.addTab(tab1);
bar.addTab(tab2);
bar.addTab(tab3);
bar.addTab(tab4);
createTab方法如下:
private TextView createTab(String titleText, int tabBackgroundDrawableId)
{
TextView tv = new TextView(this);
//set caption and caption appearance
tv.setTextAppearance(this, R.style.MyDefaultTabTextAppearance);
tv.setText(titleText);
//set appearance of tab
tv.setBackgroundResource(tabBackgroundDrawableId);
tv.setLayoutParams(new android.view.ViewGroup.LayoutParams(android.view.ViewGroup.LayoutParams.MATCH_PARENT, android.view.ViewGroup.LayoutParams.WRAP_CONTENT));
//Make sure all tabs have the same height
tv.setMaxLines(2);
tv.setMinLines(2);
return tv;
}
然而,操作栏似乎将选项卡 View 添加到添加填充的父 View 中,因此对于每个 View ,您都需要将其删除。我在第一个代码块之后在 oncreate 中这样做:
View view = (View) tv1.getParent();
LinearLayout.LayoutParams lp = (android.widget.LinearLayout.LayoutParams)view.getLayoutParams();
view.setPadding(0, 0, 0, 0);
view.setLayoutParams(lp);
您可能会找到一种更优雅/更直接的方式来执行此操作,但作为起点,我认为值得发布。
希望这对您有所帮助。
添加:
可能还值得指出的是,如果您的选项卡布局更复杂,您可以改为在 createTab 方法中扩充布局 xml 文件。例如使用以下 xml (mytab.xml):
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/tabIcon"/>
<TextView style="@style/MyDefaultTabTextAppearance"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/tabIcon"
android:minLines="2"
android:maxLines="2"
android:id="@+id/tabText"/>
</RelativeLayout>
createTab 变成:
private RelativeLayout createTab(String titleText, int tabBackgroundDrawableId)
{
RelativeLayout rl = (RelativeLayout)this.getLayoutInflater().inflate(R.layout.mytab, null, false);
//set appearance of tab
rl.setBackgroundResource(tabBackgroundDrawableId);
TextView tv = (TextView)rl.findViewById(R.id.tabText);
//set caption
tv.setText(titleText);
ImageView iv = (ImageView)rl.findViewById(R.id.tabIcon);
iv.setImageResource(R.drawable.ic_launcher);//or supply unique drawable to method?
return rl;
}
关于android - 不同的 ActionBar.Tab 使用不同的 Color,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18176867/
我在我的应用程序中设置了一个操作栏。我通过调用 Activity.getActionBar() 取回 ActionBar .然后我设置了我需要的所有选项卡感谢 ActionBar.addTab()和
我正在为 Android 平板电脑 (XOOM) 开发应用程序,我想知道是否可以将操作栏放在屏幕底部,而不是顶部(这是默认选项) . 谢谢。 最佳答案 如果您在 Activity 中获取 Action
我很想为我用“ActionBar Sherlock”库导入的 ActionBar 设置一个背景图像。但是,我在 Internet 上找不到任何有关如何使用 XML 独特地设置 BackgroundIm
我需要在栏下方显示子菜单,而不是在栏本身的顶部。 复制下面我的 actionbar xml 在activity中(
我已经阅读了 AppCompat 库中的工具栏及其所有功能。我在 android 开发者博客 (here) 中注意到的一些事情是: Toolbar is fully supported in AppC
我试图做一个 Espresso 测试来检查 actionbar 是否隐藏/显示,但我似乎无法弄清楚如何将它与 Espresso.onView(...) 匹配。 Afaik它没有ID,对吧? 非常感谢
我们怎样才能让操作栏和操作栏选项卡变成纯白色。我正在使用 android-support-v7-appcompat 库来支持向后兼容性。 style/Theme.AppCompat.Light.Dar
在 Galaxy S3 上,我遇到一个问题,即 ActionBar 中的一个按钮被配置为 showAsAction="always"并且同时显示在硬件溢出菜单和操作按钮上。我希望它不显示在硬件溢出菜单
我正在学习教程 https://www.youtube.com/watch?v=VVahIc8yENk我得到了错误 java.lang.NullPointerException: Attempt to
背景 我希望在 PreferenceActivity 上显示一个 ActionBar,因为它不适用于 Honeycomb 之前的设备(即使在支持库中)。 因为这样的类在支持库中不可用,所以我不能只调用
我想实现将下载数据并将其设置到 ActionBar 选项卡中的应用程序。我已经实现了它,但我还有一件事要做。我试过添加操作栏列表,像这样 one , 但 android 不允许同时使用 Tabs 和
我希望我的 ActionBar 和 Tabs 看起来像这样。 请忽略颜色 目前看起来是这样 由于我的主题,我必须在 java 中设置自定义 ActionBar。 actionBar.setDispla
我目前正在某些页面上设置 ActionBar 副标题,但在某些页面上我不想有副标题。 我可以简单地将字幕文本设置为空,但这只会删除文本。它仍然占据字幕空间,从而将标题推高。可能很难解释,所以我用图片说
import android.app.ActionBar; import android.app.FragmentTransaction; import android.content.Intent;
我正在使用 ActionBarSherlock ,并尝试隐藏/显示全屏图像的 ActionBar,使用: getSupportActionBar.hide(); 和 getSupportActionB
我在我的简单应用程序上使用 ActionBarSherlock,如果用户在主页/主要 Activity 中,我想隐藏主页按钮。我了解如何使用 setHomeButtonEnabled(false) 执
我发现自己在 3 个单独的 Activity 中为我的 actionBar (actionBarSherlock) 列表重写了相同的代码。所有 3 个都使用相同的 actionBar,它有 3 个项目
我正在使用 ActionBarSherlock 在关于 ActionBar 标签高度的类似问题中,我使用了: @style/blah1 @style/blah2 80dp .
我一直在寻找是否有任何关于如何始终在 ActionBar 下方显示 ActionBar 选项卡的信息,即使当手机横向时也是如此。我知道它会根据屏幕上是否有足够的空间来自动将选项卡放置在 ActionB
我在 ActionBar 上方显示的 ActionBar Tabs 出现了这种奇怪的行为。当我为 ActionBar 设置自定义 View 时,这恰好发生了。我正在使用 Roman Nurik 的示例
我是一名优秀的程序员,十分优秀!