gpt4 book ai didi

android - FrameLayout 中的 'android:foreground' 和 'android:foregroundGravity' 是如何影响其外观的?

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:59:14 24 4
gpt4 key购买 nike

FrameLayout 具有属性 android:foregroundandroid:foregroundGravityandroid:measureAllChildren。我尝试了这些属性,但无法弄清楚它们如何影响布局的外观或它们如何工作。

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:foreground="@android:color/holo_blue_dark"
android:foregroundGravity="center"
android:measureAllChildren="true"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.framelayoutdemo.MainActivity" >

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@android:drawable/btn_dialog" />

</FrameLayout>

我用谷歌搜索,但找不到有关这些属性的帮助。请给我一个链接,我可以引用或帮助我举个例子。谢谢

最佳答案

android:foreground指向您的 Framelayout 的前景需要在其所有子项之上绘制

android:foregroundGravity指向该 Assets 的重力,如果该 Assets 是可绘制的。这意味着如果您正在使用

android:foreground="@android:drawable/bottom_bar"

然后你的drawable被绘制在它的所有 child 之上并且它被定位在Framelayout的中心。

android:measureAllChildren :确定是测量所有 child 还是只测量 VISIBLE 中的 child 或 INVISIBLE测量时的状态。默认为假。这意味着,如果将其设置为 false,则 GONE 中的所有元素Framelayout 时不考虑状态的测量阶段正在运行。

希望这能回答您的问题。

关于android - FrameLayout 中的 'android:foreground' 和 'android:foregroundGravity' 是如何影响其外观的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35022962/

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