我有两个线性布局,一个在另一个里面。在第二个中,我有一个Switch
按钮, aTextView
和 a FloatingActionButton
。我想把这 3 个放在同一行,我想集中开关和TextView
我想FloatingActionButton
在屏幕右侧对齐。我试图用marginLeft
强迫他们去我想要的位置,但我相信这不是正确的方法。
这是我的代码(现在 3 个组件已经在同一行):
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:fab="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="80dp"
android:orientation="horizontal"
android:weightSum="1" >
<Switch
android:id="@+id/mySwitch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginLeft="140dp"
android:layout_marginTop="20dp"
android:theme="@style/SCBSwitch"
/>
<TextView
android:id="@+id/OpenClose"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:layout_marginLeft="10dp"
android:text="Open"
android:textSize="20dp"/>
<android.support.design.widget.FloatingActionButton
android:id="@+id/action_find_location"
android:layout_width="277dp"
android:layout_height="40dp"
android:layout_marginTop="10dp"
android:layout_marginLeft="75dp"
android:layout_marginRight="10dp"
android:src="@drawable/calendar_today"
fab:backgroundTint="@color/theme_color"
fab:borderWidth="0dp"
fab:elevation="9dp"
fab:rippleColor="@color/toolbar_title_color"
fab:fabSize="mini"/>
</LinearLayout>
</LinearLayout>