我正在尝试添加自定义图像作为操作栏徽标,但是,当此图像添加到操作栏时,此图像前面有大约30-50dp的填充。
图像本身左侧没有填充,因此它应该几乎就在屏幕边缘附近。
这个填充在运行时添加到哪里?这是我用于操作栏的自定义布局的代码:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/actionbar">
<ImageView
android:id="@+id/logo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:src="@drawable/logo"
</RelativeLayout>
这是我在我的活动中设置操作栏布局的代码:
ActionBar actionBar = getActionBar();
actionBar.setDisplayShowTitleEnabled(false);
actionBar.setDisplayShowCustomEnabled(true);
LayoutInflater inflator = (LayoutInflater) this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View v = inflator.inflate(R.layout.actionbar, null);
actionBar.setCustomView(v);
我发现删除此填充的唯一方法是将android:layout_marginLeft="-30dp"
添加到自定义操作栏的布局中,但我绝对不认为这是正确的方法。
为什么我的图片会有额外的填充?在此先感谢您的帮助!
我设法解决了这个问题,我在活动中的操作栏设置中添加了以下两行:
Toolbar parent = (Toolbar) v.getParent();
parent.setContentInsetsAbsolute(0, 0);
答案 0 :(得分:1)
尝试修改styles.xml
<style name="MyActionBarTheme" parent="Widget.AppCompat.ActionBar">
<item name="contentInsetStart">0dp</item>
<item name="contentInsetEnd">0dp</item>
</style>
然后是您的应用主题
<item name="android:actionBarStyle">@style/MyActionBarTheme</item>
或如果你正在使用ToolbarLayout
<android.support.v7.widget.Toolbar
android:layout_height="wrap_content"
android:layout_width="match_parent"
app:contentInsetLeft="0dp"
app:contentInsetStart="0dp"
android:paddingLeft="0dp">
<!--rest of content -->
</android.support.v7.widget.Toolbar>
快乐编码:)