对齐2个ExpandableListViews

时间:2015-09-14 13:54:35

标签: android xml

我在调整2个ExpandableListViews和浮动操作按钮时遇到问题。我应该得到同一行list1,fab,list2但我最终得到list1下面的list2。我无法理解我在这里做错了什么。有什么想法吗?

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:weightSum="2"
    android:layout_width="match_parent"
    android:layout_height="match_parent">


    <AutoCompleteTextView
        android:layout_width="fill_parent"
        android:layout_height="100dp"
        android:hint="     Write your text..."
        android:id="@+id/editText"
        android:background="#71ABFF"
        android:layout_marginTop="110dp"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true" />

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="100dp"
        android:layout_marginTop="10dp"
        android:id="@+id/editText2"
        android:background="#71ABFF"
        android:layout_below="@+id/editText"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true" />

    <com.melnykov.fab.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/trans"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="20dp"></com.melnykov.fab.FloatingActionButton>


    <ExpandableListView
        android:id="@+id/list"
        android:layout_height="match_parent"
        android:layout_width="100dp"
        android:layout_marginLeft="0dp"
        android:groupIndicator="@null"
        android:layout_weight="1"
        android:layout_marginTop="20dp"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"/>

    <ExpandableListView
        android:id="@+id/list2"
        android:layout_height="match_parent"
        android:layout_width="100dp"
        android:groupIndicator="@null"
        android:layout_weight="1"
        android:layout_marginTop="20dp"
        android:layout_alignParentRight="true"
        android:layout_alignParentEnd="true" />

</RelativeLayout>

实际设计

http://www.malmstein.com/blog/2014/08/09/how-to-use-a-textureview-to-display-a-video-with-custom-media-player-controls/

0 个答案:

没有答案