我使用的線性佈局此XML文件:安卓:如何中心個人意見時,佈局的重心是固定的
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center"
>
<EditText
android:id="@+id/editTextUserNameToLogin"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:hint="User Name">
<requestFocus />
</EditText>
<EditText
android:id="@+id/editTextPasswordToLogin"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:hint="Password"
android:inputType="textPassword" />
<Button
android:id="@+id/buttonSignIn"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Sign In" />
<ToggleButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New ToggleButton"
android:id="@+id/toggleButton"/>
</LinearLayout>
我希望所有的文本視圖顯示在屏幕的中央, 除外切換按鈕,我希望它在屏幕的右下角。
正如你所看到的,我在佈局的標記中使用android:gravity
中心,因爲這既不是這個也不是android:layout_gravity
正在處理單個文字瀏覽。
但現在我想切換按鈕是獨立於此。 我該如何實現它?