我正在开发一个测试,试图了解视图和视图组的行为。我已经创建了一个非常简单的自定义视图组(以下称为viewgroup1),我已经正确实现了所有重要的方法(onLayout,onMeasure,onSizeChanged)。然后我创建了一个简单的视图,然后从onclick事件中将视图添加到viewgroup1。视图显示正确,并调用其方法(onSizeChanged,onLayout,onDraw)。
在成功测试之后,我创建了另一个自定义视图组(以下称为viewgroup2),这次我将viewgroup2添加到viewgroup1。然后我从onclick事件中将自定义视图添加到viewgroup2。我预计一切都会发生在第一次测试中,但是当我点击viewgroup2时,视图会添加到此视图中,但是只调用viewgroup1方法(onMeasure,onLayout)。调用不会在继承树中传播。
结果是树结构是正确的,但是尽管我已经为每个对象调用了requestLayout,forcelayout等等,但是视图没有显示。
树结构是:viewgroup1 --- viewgroup2 --- view。
清单代码:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.yoredevelopment.tests"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="11" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".AndroidTestsActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
布局代码(main.xml):
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:custom="http://schemas.android.com/apk/res/com.yoredevelopment.tests"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ff000000"
android:orientation="vertical" >
<com.yoredevelopment.tests.TestViewGroup
android:id="@+id/TestViewGroup"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ff00cccc"
/>
</LinearLayout>
活动代码:
import android.app.Activity;
import android.os.Bundle;
public class AndroidTestsActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}
查看和查看组代码:
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Paint.Style;
import android.util.AttributeSet;
import android.view.View;
import android.view.ViewGroup;
public class TestViewGroup extends ViewGroup {
public TestViewGroup(Context context, AttributeSet attrs) {
super(context, attrs);
TestViewChild tvc = new TestViewChild(context);
tvc.setLayoutParams(new ViewGroup.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
tvc.setBackgroundColor(Color.WHITE);
this.addView(tvc);
}
protected void onLayout(boolean changed, int l, int t, int r, int b) {
if(this.getChildCount() > 0) {
View child = this.getChildAt(0);
View p = (View)this.getParent();
child.layout(20, 20, p.getWidth() - 40, p.getHeight() - 40);
}
}
protected void onSizeChanged(int w, int h, int oldw, int oldh) {
super.onSizeChanged(w, h, oldw, oldh);
}
class TestViewChild extends ViewGroup {
public TestViewChild(Context context) {
super(context);
this.setOnClickListener(new TestClickListener());
}
protected void onLayout(boolean changed, int l, int t, int r, int b) {
if(this.getChildCount() > 0) {
View child = this.getChildAt(0);
child.layout(10, 10, 40, 40);
}
}
protected void onSizeChanged(int w, int h, int oldw, int oldh) {
super.onSizeChanged(w, h, oldw, oldh);
}
}
class TestView extends View {
private Paint p;
public TestView(Context context) {
super(context);
p = new Paint();
p.setColor(Color.RED);
p.setStyle(Style.FILL);
}
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
int centerX = this.getWidth() / 2;
int centerY = this.getHeight() / 2;
canvas.drawCircle(centerX, centerY, 5, this.p);
}
protected void onLayout(boolean changed, int l, int t, int r, int b) {
super.onLayout(changed, l, t, r, b);
}
protected void onSizeChanged(int w, int h, int oldw, int oldh) {
super.onSizeChanged(w, h, oldw, oldh);
}
}
class TestClickListener implements OnClickListener {
public void onClick(View v) {
ViewGroup vg = (ViewGroup)v;
TestView tv = new TestView(vg.getContext());
tv.setLayoutParams(new ViewGroup.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
tv.setBackgroundColor(Color.GREEN);
vg.addView(tv);
tv.bringToFront();
}
}
}
如果我在ViewGroup2构造函数中创建View,则会显示视图,但是当从onclick事件创建视图时,它不会发生。
提前致谢并度过一个愉快的假期。
答案 0 :(得分:0)
从源代码中可以想到两件事:
1 /您没有为任何视图提供LayoutParams - 在将视图添加为子视图时应使用它们。
2 /在所有三种情况下,您的onMeasure代码都不正确。您正在使用super进行测量,然后从规格(可能是0)获取大小并覆盖超级测量的大小。将它们全部移除以超级处理它们。