作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
图标和标题不会出现在 AppCombat 工具栏中。
这是我的菜单 xml 文件:
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
tools:context=".HolidayListActivity">
<item android:id="@+id/action_settings"
android:title="@string/app_name"
android:orderInCategory="100"
app:showAsAction="always" />
</menu>
这是我的资源文件:
<resources>
<style name="Theme.AppCompat.Light.FullScreen"
parent="Theme.AppCompat.Light.DarkActionBar">
<item name="android:windowBackground">@color/window_background</item>
<item name="android:colorBackground">@color/window_background</item>
<item name="android:colorBackgroundCacheHint">@color/window_background</item>
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
<item name="android:windowFullscreen">true</item>
<item name="android:windowContentOverlay">@null</item>
</style>
</resources>
这是我的java代码:
public class HolidayListActivity extends SingleFragmentActivity {
private Toolbar toolbar;
ActionBarDrawerToggle mDrawerToggle;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
getSupportActionBar().setDisplayShowHomeEnabled(true);
getSupportActionBar().setLogo(R.mipmap.ic_launcher);
getSupportActionBar().setDisplayUseLogoEnabled(true);
}
@Override
protected Fragment createFragment() {
return new HolidayListFragment();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.menu_app, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item); }}
这是我的布局文件:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/holiday_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:minHeight="?attr/actionBarSize"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:titleTextColor="@android:color/white"
android:background="?attr/colorPrimary">
</android.support.v7.widget.Toolbar>
<android.support.v7.widget.RecyclerView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/holiday_recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/window_background">
</android.support.v7.widget.RecyclerView>
</LinearLayout>
最佳答案
如果您使用工具栏,您可以在布局文件中自己描述它的组件。
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:popupTheme="@style/AppTheme.PopupOverlay">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/toolbar_icon"
android:layout_width="42dp"
android:layout_height="42dp"
android:layout_centerVertical="true"
android:contentDescription="toolbat icon"/>
<TextView
android:id="@+id/toolbar_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@style/TextAppearance.Widget.AppCompat.Toolbar.Title"
android:textSize="18sp"
android:text="toolbar title"
android:maxLines="1"
android:layout_toEndOf="@id/toolbat_icon"
/>
</RelativeLayout>
</android.support.v7.widget.Toolbar>
关于java - AppCombat 工具栏中不显示图标和标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46755942/
图标和标题不会出现在 AppCombat 工具栏中。 这是我的菜单 xml 文件: 这是我的资源文件: @color/window_background @color/window_ba
当我扩展 ActionBarAtcitivy 时,我设法以某种方式添加操作栏,但是如果我想调用例如:ListActivity 并且仍然有操作栏怎么办? 我有一种奇怪的感觉,当我添加appcombat库
我使用工具 ActionBar Style Generator ( http://jgilfelt.github.io/android-actionbarstylegenerator ) 创建了一个
过去几个月我一直在我的应用程序中成功使用 android-support-v7-appcompat 库来支持旧设备中的操作栏。最近我从 SDK Manager 下载了带有系统镜像和 SDK 平台的 A
我是一名优秀的程序员,十分优秀!