gpt4 book ai didi

java - Android Studio ActionBar 宽度/图标位置

转载 作者:行者123 更新时间:2023-11-29 02:35:53 24 4
gpt4 key购买 nike

我的 ActionBar 有问题这导致我的菜单图标被压在屏幕边缘! image

下面是我调整过的样式和声明的一些代码 fragment :

HomeActivity.xml

private TextView tvViewAll;
DrawerLayout mDrawerLayout;
private ActionBarDrawerToggle mDrawerToggle;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_home);

//Nav Drawer
mDrawerLayout = findViewById(R.id.drawer_layout);

//custom shadow for menu drawer
mDrawerLayout.setDrawerShadow(R.drawable.drawer_shadow, GravityCompat.START);

// ActionBarDrawerToggle ties together the the proper interactions
// between the sliding drawer and the action bar app icon
mDrawerToggle = new ActionBarDrawerToggle (this, mDrawerLayout, R.string.drawer_open, R.string.drawer_close);

mDrawerLayout.addDrawerListener(mDrawerToggle);
mDrawerToggle.syncState();

getSupportActionBar().setDisplayHomeAsUpEnabled(true);

}

@Override
public boolean onOptionsItemSelected(MenuItem item) {

if(mDrawerToggle.onOptionsItemSelected(item)){
return true;
}

return super.onOptionsItemSelected(item);
}

styles.xml

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="android:statusBarColor">@color/colorBackgroundBlack</item>
<item name="android:navigationBarColor">@color/colorBackgroundBlack</item>
<item name="actionMenuTextColor">@color/colorBackgroundBlackDark</item>
<item name="colorPrimary">@color/colorBackgroundBlackDark</item>
<item name="colorAccent">@color/colorPrimaryDark</item>
<item name="colorButtonNormal">@color/ipBlue</item>
<item name="toolbarNavigationButtonStyle">@color/ipGreen</item>
</style>

<style name="ActionBar.Solid.TMSA.NoTitle" parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse">
<item name="displayOptions">useLogo|showHome</item>
<item name="logo">@drawable/ic_ipaustralialogo</item>
<item name="android:contentDescription">@string/ip_logo</item>
</style>

<style name="AppTheme.TMSA" parent="@style/AppTheme">
<item name="actionBarStyle">@style/ActionBar.Solid.TMSA.NoTitle</item>
</style>

我不记得触及 ActionBar 的格式布局除了包含政府 Logo 之外,我无法弄清楚为什么我会得到这个歪斜的菜单图标。

我已经考虑过做一个 Toolbar方法,但宁愿不必转换 :P

快乐编码:)

最佳答案

ActionBarDrawerToggleActionBar 的导航按钮上设置其切换图标。在 AppCompatActivity 中,ActionBar 实际上是下面的一个 Toolbar,并且该导航按钮使用 style 资源设置样式在主题的 toolbarNavigationButtonStyle 属性上设置。

在您的主题中,您在该属性上设置了一个 color 资源,而不是一个 style 资源,并且默认样式中的所有值都丢失了,包括 minWidth 值,这就是为什么您的切换被包裹到 drawable 的宽度。

如果你想修改导航按钮上的一些样式值,你应该创建你自己的style资源,默认的style作为它的parent code>,在那里设置所需的属性,并将该 style 指定为主题的 toolbarNavigationButtonStyle。例如:

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
...
<item name="toolbarNavigationButtonStyle">@style/Toolbar.Button.Navigation</item>
</style>

<style name="Toolbar.Button.Navigation" parent="Widget.AppCompat.Toolbar.Button.Navigation">
<item name="android:background">@color/ipGreen</item>
</style>

如果您实际尝试修改的是汉堡包箭头可绘制对象,它有自己的样式,您可以对其进行“子样式化”,并更改其中的某些功能。例如:

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
...
<item name="drawerArrowStyle">@style/DrawerArrowToggle</item>
</style>

<style name="DrawerArrowToggle" parent="Widget.AppCompat.DrawerArrowToggle">
<item name="color">@color/ipGreen</item>
</style>

下面是可在 drawerArrowStyle 中修改的完整属性列表,如果您想自定义其任何其他属性。

<!-- The drawing color for the bars -->
<attr name="color" format="color"/>
<!-- Whether bars should rotate or not during transition -->
<attr name="spinBars" format="boolean"/>
<!-- The total size of the drawable -->
<attr name="drawableSize" format="dimension"/>
<!-- The max gap between the bars when they are parallel to each other -->
<attr name="gapBetweenBars" format="dimension"/>
<!-- The length of the arrow head when formed to make an arrow -->
<attr name="arrowHeadLength" format="dimension"/>
<!-- The length of the shaft when formed to make an arrow -->
<attr name="arrowShaftLength" format="dimension"/>
<!-- The length of the bars when they are parallel to each other -->
<attr name="barLength" format="dimension"/>
<!-- The thickness (stroke size) for the bar paint -->
<attr name="thickness" format="dimension"/>

关于java - Android Studio ActionBar 宽度/图标位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47130237/

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