对this库的示例应用程序进行少量更改以支持可滚动工具栏后,一些空间左侧出现,我无法弄清楚原因。
此选项卡的布局文件(tab_text_view.xml):
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@null">
<de.mrapp.android.util.view.UnfocusableToolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@android:color/transparent"
android:focusable="false"
android:theme="?attr/toolbarTheme"
app:layout_scrollFlags="scroll|enterAlways|snap"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light">
<TextView
android:id="@+id/file_title"
android:layout_width="175dp"
android:layout_height="match_parent"
android:layout_marginLeft="55dp"
android:ellipsize="marquee"
android:gravity="center_vertical"
android:singleLine="true"
android:text="@string/file_title"
android:fitsSystemWindows="true"
app:contentInsetEnd="0dp"
app:contentInsetStart="0dp"
android:textAppearance="@style/TextAppearance.Widget.AppCompat.Toolbar.Title" />
</de.mrapp.android.util.view.UnfocusableToolbar>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<TextView
android:id="@android:id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ellipsize="end"
android:padding="@dimen/tab_padding"
android:text="@string/lorem_ipsum"/>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
我只在MainActivity
中添加了导航图标,它是点击监听器。这可能是插入物的问题吗?
答案 0 :(得分:0)
如果工具栏中文字左侧有空格,可以通过在第一个TextView
中删除此行删除它:
android:layout_marginLeft="55dp"
如果这不是您的想法,屏幕截图可能会有所帮助,因此我可以更好地了解不需要的空间。
答案 1 :(得分:0)
在工具栏中使用contentInsetLeft
和contentInsetStart
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary">
<de.mrapp.android.util.view.UnfocusableToolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:contentInsetLeft="0dp"
app:contentInsetStart="0dp"
app:popupTheme="@style/AppTheme.PopupOverlay">
答案 2 :(得分:0)
将以下代码添加到工具栏
app:contentInsetLeft="0dp"
app:contentInsetStart="0dp"
如果不工作在普通工具栏中测试它,如果工作它意味着问题来自库