无法在协调器布局上方对齐TextView

时间:2017-09-01 06:45:54

标签: android android-layout

我有一个显示cardview的协调器布局,我想在这个协调器布局上方显示TextView,我尝试将Coordinator Layout放在Linear Layout中,就像我们为Frame Layout做的那样,但是没有用。有人可以帮忙吗

enter image description here

代码:

<?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"
    xmlns:comfort="http://schemas.android.com/tools"
    android:id="@+id/main_content"
    android:background="@color/transparent"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:id="@+id/title_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textStyle="bold"
        android:text="Hello World"
        android:textColor="@color/eula_body_text_color"
        android:textSize="19sp" />

    <android.support.design.widget.TabLayout
        android:id="@+id/tabs"
        android:layout_width="match_parent"
        android:tabStripEnabled="false"
        android:layout_height="wrap_content"/>

    <android.support.v4.view.ViewPager
        android:id="@+id/viewpager"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginBottom="@dimen/_16sdp"
        android:paddingLeft="12dp"
        android:paddingRight="-12dp"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"/>


</android.support.design.widget.CoordinatorLayout>

2 个答案:

答案 0 :(得分:0)

主要问题是您希望在coordinatorlayout外部使用textview,但是您要将其定义为该布局的子级。因此,您需要创建一个父布局,其中包含两个子级,即1. TextView和2. CoordinatorLayout。

<LinearLayout>
   <TextView/>
   <CoordinatorLayout>
     all Views
   </CoordinatorLayout>
</LinearLayout>

答案 1 :(得分:0)

试试这个

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:id="@+id/title_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textStyle="bold"
        android:text="Hello World"
        android:textColor="@color/eula_body_text_color"
        android:textSize="19sp" />

    <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:comfort="http://schemas.android.com/tools"
        android:id="@+id/main_content"
        android:background="@color/transparent"
        android:layout_width="match_parent"
        android:layout_height="match_parent">


        <android.support.design.widget.TabLayout
            android:id="@+id/tabs"
            android:layout_width="match_parent"
            android:tabStripEnabled="false"
            android:layout_height="wrap_content"/>

        <android.support.v4.view.ViewPager
            android:id="@+id/viewpager"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginBottom="@dimen/_16sdp"
            android:paddingLeft="12dp"
            android:paddingRight="-12dp"
            app:layout_behavior="@string/appbar_scrolling_view_behavior"/>


    </android.support.design.widget.CoordinatorLayout>
    </LinearLayout>