如何在您的 android 工作室项目中调整脚蹼尺寸?
how to adjust flipper size in your android studio project?
我想在我的 activity 主页面中创建幻灯片。在我的应用程序中实现鳍状肢后,我注意到 FlipperLayout
与我的小部件 Toolbar
重叠了。在我的小部件工具栏内包含用户名,当他们登录到应用程序时,我会在其中称呼用户全名。
我不太确定如何调整脚蹼大小以确保幻灯片不会与我的工具栏重叠。我希望将脚蹼放在工具栏下方。谁能帮我 ?
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/frame_layout"
android:layout_above="@id/btm_nav"
>
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/purpleBoo"
android:minHeight="?attr/actionBarSize"
android:theme="@style/ThemeOverlay.AppCompat.Dark" >
<TextView
android:id="@+id/tv_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="welcome"
android:layout_gravity="center"
android:textColor="@color/white">
</TextView>
</androidx.appcompat.widget.Toolbar>
<technolifestyle.com.imageslider.FlipperLayout
android:id="@+id/flipper"
android:layout_width="match_parent"
android:layout_height="219dp">
</technolifestyle.com.imageslider.FlipperLayout>
您可以编辑 FlipperLayout
以添加 android:layout_marginTop="?attr/actionBarSize"
属性
<technolifestyle.com.imageslider.FlipperLayout
android:id="@+id/flipper"
android:layout_width="match_parent"
android:layout_height="219dp"
android:layout_marginTop="?attr/actionBarSize">
或
您可以在布局的根部使用 LinearLayout
而不是 FrameLayout
,并使用 android:orientation="vertical"
。这是因为 FrameLayout
用于需要子视图重叠的目的。
我想在我的 activity 主页面中创建幻灯片。在我的应用程序中实现鳍状肢后,我注意到 FlipperLayout
与我的小部件 Toolbar
重叠了。在我的小部件工具栏内包含用户名,当他们登录到应用程序时,我会在其中称呼用户全名。
我不太确定如何调整脚蹼大小以确保幻灯片不会与我的工具栏重叠。我希望将脚蹼放在工具栏下方。谁能帮我 ?
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/frame_layout"
android:layout_above="@id/btm_nav"
>
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/purpleBoo"
android:minHeight="?attr/actionBarSize"
android:theme="@style/ThemeOverlay.AppCompat.Dark" >
<TextView
android:id="@+id/tv_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="welcome"
android:layout_gravity="center"
android:textColor="@color/white">
</TextView>
</androidx.appcompat.widget.Toolbar>
<technolifestyle.com.imageslider.FlipperLayout
android:id="@+id/flipper"
android:layout_width="match_parent"
android:layout_height="219dp">
</technolifestyle.com.imageslider.FlipperLayout>
您可以编辑 FlipperLayout
以添加 android:layout_marginTop="?attr/actionBarSize"
属性
<technolifestyle.com.imageslider.FlipperLayout
android:id="@+id/flipper"
android:layout_width="match_parent"
android:layout_height="219dp"
android:layout_marginTop="?attr/actionBarSize">
或
您可以在布局的根部使用 LinearLayout
而不是 FrameLayout
,并使用 android:orientation="vertical"
。这是因为 FrameLayout
用于需要子视图重叠的目的。