- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试了解 Android 如何测量和布局 View 。我创建了一个带有自定义 View 和 View 组的示例应用。
自定义 View 组
public class CustomViewGroup extends ViewGroup {
private static final String LOG_TAG = "CustomViewGroup";
public CustomViewGroup(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
Log.d(LOG_TAG, String.format(Locale.ENGLISH,
getTag() + " " +
"onMeasure(widthMeasureSpec=%d, heightMeasureSpec%d)",
widthMeasureSpec, heightMeasureSpec
));
final int count = getChildCount();
for (int i = 0; i < count; i++) {
final View child = getChildAt(i);
if (child.getVisibility() != View.GONE) {
// Make or work out measurements for children here (MeasureSpec.make...)
measureChild(child, widthMeasureSpec, heightMeasureSpec);
}
}
}
@Override
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
Log.d(LOG_TAG, String.format(Locale.ENGLISH,
getTag() + " " +
"onLayout(changed=%b, left=%d, top=%d, right=%d, bottom=%d)",
changed, left, top, top, right, bottom
));
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
Log.d(LOG_TAG, getTag() + " " + "onDraw");
}
}
自定义 View
public class CustomView extends View {
private static final String LOG_TAG = "CustomView";
public CustomView(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
super.onLayout(changed, left, top, right, bottom);
Log.d(LOG_TAG, String.format(Locale.ENGLISH,
getTag() + " " +
"onLayout(changed=%b, left=%d, top=%d, right=%d, bottom=%d)",
changed, left, top, top, right, bottom
));
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
Log.d(LOG_TAG, getTag() + " " +"onDraw");
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
Log.d(LOG_TAG, String.format(Locale.ENGLISH,
getTag() + " " +
"onMeasure(widthMeasureSpec=%d, heightMeasureSpec=%d)",
widthMeasureSpec, heightMeasureSpec
));
}
}
主 Activity
public class MainActivity extends AppCompatActivity {
private View mCustomGroup1;
private View mCustomGroup2;
private View mContainer;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Log.d("MainAct", "onCreate");
mCustomGroup1 = findViewById(R.id.requestLayout);
mCustomGroup2 = findViewById(R.id.requestLayout2);
mContainer = findViewById(R.id.activity_main);
findViewById(R.id.requestLayoutBtn).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
mCustomGroup1.requestLayout();
}
});
findViewById(R.id.requestLayoutBtn2).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
mCustomGroup2.requestLayout();
}
});
findViewById(R.id.requestLayoutContBtn).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
mContainer.requestLayout();
}
});
}
}
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
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="ru.dmitriev.squareorderedlayout.MainActivity">
<Button
android:id="@+id/requestLayoutBtn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="requestLayout" />
<Button
android:id="@+id/requestLayoutBtn2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="requestLayout2" />
<Button
android:id="@+id/requestLayoutContBtn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="requestLayoutCont" />
<ru.dmitriev.squareorderedlayout.CustomViewGroup
android:id="@+id/requestLayout"
android:layout_width="100dp"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#7f7"
android:tag="CustomVieGroup1">
<ru.dmitriev.squareorderedlayout.CustomView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:tag="CustomView11" />
<ru.dmitriev.squareorderedlayout.CustomView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:tag="CustomView12" />
</ru.dmitriev.squareorderedlayout.CustomViewGroup>
<ru.dmitriev.squareorderedlayout.CustomViewGroup
android:id="@+id/requestLayout2"
android:layout_width="100dp"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#f77"
android:tag="CustomVieGroup2">
<ru.dmitriev.squareorderedlayout.CustomView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:tag="CustomView21" />
<ru.dmitriev.squareorderedlayout.CustomView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:tag="CustomView22" />
</ru.dmitriev.squareorderedlayout.CustomViewGroup>
</LinearLayout>
当 Activity 开始时,onMeasure
、onLayout
和 onDraw
将在标记为 CustomVieGroup1
的 View 组上调用,并且CustomVieGroup2
。每个 View 组在其 subview 上调用这些方法。没关系。我明白了。
当我在标记为 CustomVieGroup1、onMeasure
、onLayout
和 的 View 组上调用
在 CustomVieGroup1 上调用。该小组将这些方法用于他们的 child 。我明白了。requestLayout
时onDraw
当我在标记为 CustomVieGroup2、onMeasure
、onLayout
和 的 View 组上调用
在 CustomVieGroup2 上调用。该小组将这些方法用于他们的 child 。我也明白。requestLayout
时onDraw
但是,当我在 ID 为 activity_main
的 View 上调用 requestLayout
时,不会调用 onMeasure
和 onLayout
CustomVieGroup1
或 CustomVieGroup2
。为什么?我预计 onMeasure
、onLayout
和 onDraw
将在 CustomVieGroup1
和 CustomVieGroup2
上被调用>(即 id 为 activity_main
的 View 的 cgildren)
根据documentation of requestLayout :
This will schedule a layout pass of the view tree.
最佳答案
requestLayout()
将导致 LinearLayout
(@id/activity_main) 的 onLayout()
方法执行。但是,无法保证 LinearLayout
会重新布局其子项;这真的取决于它的实现。例如,您的 LinearLayout
宽度/高度设置为 match_parent
。当 LinearLayout
被第二次布局时,它的宽度和高度不会改变,因为它的大小是基于父元素的大小,而不是它的子元素。因为它的布局不是基于它的子元素,所以 LinearLayout
不需要重新布局它的子元素。这就是为什么几乎所有大小与其父级匹配的 ViewGroup
的布局无效都不会导致该布局的子级被布局。
您应该能够确认这是将您的 LinearLayout
(@id/activity_main) 更改为“wrap_content”。通过这样做,布局的大小变得依赖于它的 child ,所以它需要重新布局它的 child 。这将导致您的自定义 View 布局方法被调用。希望这有帮助,
关于android - subview 的 onMeasure 和 onLayout 不会在其父 View 的 requestLayout 之后调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40450321/
我的代码有问题。它总是忽略if(userDigit=1).. 谁能告诉我这里出了什么问题? for(i=0; i=1) { //
我正在尝试从字符串 html_doc 中提取 id=obj1 并尝试将 onclick 函数 附加到它 document.addEventListener("DOMContentLoaded", fu
我正在尝试使用 css 动画来动画化从一个类到另一个类的变化。基本思想是在用户单击按钮时为从一个边缘滑动到另一个边缘的 slider 设置动画。 到目前为止我的代码。 https://jsfiddle
我目前面临使用前后伪元素淡入导航项的问题。 当我悬停导航项时,它必须将其背景颜色从白色更改为蓝色。没什么疯狂的。但它也必须显示两个背景图像,分别通过将::before 伪元素从 0 更改为 1 和::
有没有简单的方法可以在最近的sqlite版本中修改表,使其与预定义的架构匹配? 架构: war_id INTEGER NOT NULL, clanname VARCHAR(64), clanhomep
我该如何将我的搜索结果变成这样的: http://i.stack.imgur.com/NfPGs.png 结果显示特定术语在单元格中的位置。 我目前有这个基本的搜索脚本: $terms =
我正在尝试使用按钮创建输入字段。但我想要的是,当创建输入字段时,我想用相同的按钮隐藏创建的输入字段。我尝试了 slideToggle 函数,但效果不是很好。 $('#addEmail').one('
我想做这样的事情: Reference of image. 我所做的:两个 UIImagesView,一个带有 UIViewContentModeLeft,另一个带有 UIViewContentMod
我在使用应该修复表中列的插入触发器时遇到了问题: id - auto increment int thread_id - int [NULL] 我想要实现的是将 thread_id 设置
我使用 tinter.after() 每 200 毫秒 刷新一次树莓派上模拟时钟的显示。一开始还可以,但逐渐地,每次刷新之间的时间达到大约 2-3 秒。是否有任何解决方案可以将刷新间隔保持在 200m
我有一个按钮,它使用::after 伪来填充背景。目前它从左到右填充,这在宽度从 0 到 100% 时有意义。但是,我希望它翻转它填充的方式。 a.project--link { margin:
我正在尝试添加带有伪元素:after的下划线来注释一些文本。 我的问题是,我想强调下划线。在此示例中,这是短语“实际上确实可以...”和“ ...不起作用”。 .test { margin-top
鉴于此: This is a test It is 有没有我可以应用到 的 CSS?那它会出现在“This is...”之前,并且在 PREVIOUS LINE 之前吗? float:left; d
我正在使用链接左侧的图像。 现在,我使用图像的::before 属性来显示,但它显示在链接的上方。 我需要对齐它。这是一张照片: Link 我使用的代码是: .vocabulary-duration
我有一个页脚有 与 6 body {background:#bbb;} .main-footer a::after { content: " | "; color: white; mar
我有一个父元素和一些子元素,但我不能直接更改它们的 CSS。所以,我试图在父元素的 CSS 中更改我 child 的 CSS。示例: .parent { & .child {
我可以 div:after { content: "hello" } 但我能否为 hello 文本添加标题,以便当我用鼠标悬停它时显示标题? 谢谢 最佳答案 你不需要伪元素: p { ba
CSS 2.1 :after 和 CSS 3 ::after 伪选择器(除了 ::after 旧浏览器不支持)?是否有任何实际理由使用更新的规范? 最佳答案 这是伪类与伪元素的区别。 除了 ::fir
「掏出钥匙开门,然后在黑暗中摸索着墙壁开关的位置,最后将室内的灯点亮。」 这是一个星期之前,我每天晚上下班回家时的固定戏码,也可能是大部分人每天回家时的经历。这种「一对一」的日常琐碎还有许多许
我正在尝试包装 , ,和具有 的元素修复我无法直接编辑的表单上的某些定位。由于某种原因,当我尝试使用以下代码时: $("label").before(""); $("input[type=tex
我是一名优秀的程序员,十分优秀!