有助于为Android构建XML布局的工具

时间:2015-07-22 08:53:16

标签: android android-layout android-xml

我正在尝试构建Android应用程序布局,我的问题是一个元素有一些奇怪的填充/边距,我找不到它的位置。我仔细检查了我的代码,我确信我的XML布局中的元素没有特定的边距或填充(附加图像)。有没有办法弄清楚发生了什么?我在我的设备上打开了显示元素边框,但它并没有太大帮助。我是Android世界的初学者,我想知道在这种情况下是否有任何特定工具可以提供帮助?我会很感激任何建议。谢谢!

<?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:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

<android.support.design.widget.TabLayout
    android:id="@+id/monthPageTitlePageIndicator"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="?attr/colorPrimary"
    android:clipToPadding="false"
    app:backgroundTintMode="multiply"
    app:tabMode="scrollable"
    app:tabSelectedTextColor="@color/white" />

<android.support.v4.view.ViewPager
    android:id="@+id/historyViewPager"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />


<TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="AAAAAA" />
</LinearLayout>

下面的红线显示了不需要的空间:

Red line is unwanted space

以下显示了边框:

Borders shown

0 个答案:

没有答案