gpt4 book ai didi

android - xamarin android 中的按钮对齐

转载 作者:行者123 更新时间:2023-11-29 23:30:17 25 4
gpt4 key购买 nike

我有如下所示的 View 寻呼机和页面指示器。我试图将按钮保留在它两侧的 View 寻呼机上方。但我无法在左侧和右侧获得这些按钮。谁能帮我把这些按钮保持在正确的位置。

 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:local="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:minWidth="25px"
android:minHeight="25px">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="16dp"
>
<android.support.v4.view.ViewPager
android:id="@+id/viewPager"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="16dp" />
<android.support.design.widget.TabLayout
android:id="@+id/dots"
android:layout_alignParentBottom="true"
android:layout_width="match_parent"
android:layout_height="10dp"
local:tabBackground="@drawable/dot_selector"
local:tabGravity="center"
local:tabIndicatorHeight="0dp"
local:tabPaddingStart="7dp"
local:tabPaddingEnd="7dp" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
>
<Button
android:id="@+id/skipBtn"
android:text="Skip"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0" />
<Button
android:id="@+id/nextBtn"
android:text="Next"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0" />
</LinearLayout>
</RelativeLayout>
</LinearLayout>

运行这段代码时,按钮没有出现。

最佳答案

在两个按钮的线性布局中使用 android:layout_weight="1"

这将基本上指定布局中两个按钮之间的大小比例相等。

有关更多布局权重样式详细信息,请参见此处:https://blog.stylingandroid.com/layout-weights-part-2/

关于android - xamarin android 中的按钮对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52827845/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com