自定义视图没有填满屏幕?

Posted

技术标签:

【中文标题】自定义视图没有填满屏幕?【英文标题】:Custom view not filling screen? 【发布时间】:2011-11-05 23:37:57 【问题描述】:

当我执行我的 android 应用程序时,它工作正常,除了视图不会填满屏幕。我正在使用以下 xml 文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_ 
    android:layout_
    android:orientation="vertical"
    > 
    <com.project.name.SplashView
          android:id="@+id/splashView" 
          android:layout_ 
          android:layout_ 
    /> 
</LinearLayout>

我定义了一个扩展常规视图的自定义视图,并且我正在覆盖 onDraw 方法以显示初始屏幕。在代码中,我通过一个简单的调用来设置布局:

setContentView(R.layout.splash);

我不会发布我的 onDraw 方法,因为它有一堆动画代码。但是,我已经通过使用这个函数简单地去除画布的背景来测试视图边界(所以我知道它没有填满屏幕):

private void drawBackground(Canvas c) 

    Paint p = new Paint();
    p.setColor(Color.WHITE);
    c.drawRect(0, 0, c.getWidth(), c.getHeight(), p);

有人有什么想法吗?

【问题讨论】:

看起来视图应该填满屏幕,但也许您的自定义 onDraw 方法只绘制了其中的一部分。你能发布你的 onDraw 方法的内容吗? @Craigy 用一些更相关的信息更新了问题 【参考方案1】:

奇怪,我拿走了你的代码,并且能够毫无问题地让它工作。我针对 2.2 编译了我的测试,并在 2.3.3 模拟器上运行它。下面内联提供的代码,并在此处作为 zip 提供:

ExampleCustomViewFull.zip

屏幕的哪个区域没有正确绘制?如果是标题栏和通知区,那么参考我在下面manifest中的注释:

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_
    android:layout_
    android:orientation="vertical" >

    <com.koderutils.example.customviewfull.CustomView
    android:id="@+id/custom_view"
    android:layout_
    android:layout_/>

</LinearLayout>

【讨论】:

我已经知道标题栏/通知区域并且在我的清单中有这个主题。它只覆盖了我的屏幕的一部分,左右两侧有轻微的黑色填充,底部有很多。如果今天有时间,我可能会尝试稍后获取屏幕截图。【参考方案2】:

我通过确保将 minSDKVersion 设置为至少 8 来解决问题。

【讨论】:

以上是关于自定义视图没有填满屏幕?的主要内容,如果未能解决你的问题,请参考以下文章

模态 VC 和旋转的自定义背景

动画自定义视图在屏幕的一半,其中包含图像 - 突然的动画

我的自定义 UIView 没有显示在屏幕上

自定义视图转换后屏幕变为空白

iOS 11 中的 SafeArea:如何在没有安全区域的情况下使用自定义导航栏在主屏幕上添加来自 Objective-c 代码的视图

iOS Button 在自定义视图中不起作用