Странно, я взял ваш код и смог заставить его работать без проблем.Я скомпилировал свой тест на 2.2 и запустил его на эмуляторе 2.3.3.Код приведен ниже и встроен в почтовый индекс:
ExampleCustomViewFull.zip
Какая область вашего экрана не окрашивается должным образом?Если это строка заголовка и область уведомлений, обратитесь к моему комментарию в манифесте ниже:
AndroidManifest.xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.koderutils.example.customviewfull"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="9" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<!--
NOTE: If you want the Activity to take up the entire screen, add this attribute.
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
-->
<activity
android:label="@string/app_name"
android:name=".ExampleCustomViewFullActivity">
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
ExampleCustomViewFull.java:
package com.koderutils.example.customviewfull;
import android.app.Activity;
import android.os.Bundle;
public class ExampleCustomViewFullActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}
CustomView.java:
package com.koderutils.example.customviewfull;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.util.AttributeSet;
import android.view.View;
public class CustomView extends View {
public CustomView(Context context) {
super(context);
}
public CustomView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public CustomView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
@Override
protected void onDraw(Canvas c) {
super.onDraw(c);
Paint p = new Paint();
p.setColor(Color.WHITE);
c.drawRect(0, 0, c.getWidth(), c.getHeight(), p);
}
}
main.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<com.koderutils.example.customviewfull.CustomView
android:id="@+id/custom_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
</LinearLayout>