为什么 onSizeChanged 不返回 View 的正确尺寸?

huangapple 未分类评论45阅读模式
英文:

why doesn't onSizeChanged return View's correct dimensions?

问题

我正在构建一个自定义视图。将自定义视图插入xml时,我将其设置为单个子视图,并将其**layout_width**和**layout_height**设置为*match_parent*。

在**onSizeChanged**方法中打印其高度和宽度时,我得到的不是屏幕尺寸的宽度和高度,而只是我无法理解其计算方式的尺寸。

我正在三星Galaxy S8设备上运行该应用。

Xml:

 <?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">


<com.example.ptacticedrawimg.Rectangle
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"/>

</androidx.constraintlayout.widget.ConstraintLayout>

自定义视图代码:
public class Rectangle extends View {
    public Rectangle(Context context) {
        super(context);
        Log.e("Rectangle Constructor1","runs");
    }

    public Rectangle(Context context, AttributeSet attr)
    {
        super(context,attr);
        Log.e("Rectangle Constructor2","runs");
    }

    public Rectangle(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        Log.e("Rectangle Constructor3","runs");
    }
    @Override
    protected void onSizeChanged(int w, int h, int oldw, int oldh) {
        super.onSizeChanged(w, h, oldw, oldh);
        Log.e("onSizeChanged","oldh = " + oldh + " oldh = " +oldh +   "h = " + h + " w = " + w);

    }


    @Override
    protected void onDraw(Canvas canvas) {
        Log.e("1234",""+ getMeasuredWidth());
        super.onDraw(canvas);
        LinearGradient linearGradient = new LinearGradient(200, 200, 600, 600, Color.GREEN, Color.YELLOW, Shader.TileMode.REPEAT);
        Paint mPaint = new Paint();
        mPaint.setShader(linearGradient);
        canvas.drawRect(200, 200, 600, 600, mPaint);
    }

日志输出:

2020-07-23 14:27:10.034 9633-9633/com.example.ptacticedrawimg E/Rectangle Constructor2: runs
2020-07-23 14:27:17.250 9633-9633/com.example.ptacticedrawimg E/onSizeChanged: oldh = 0 oldh = 0h = 1836 w = 1080
2020-07-23 14:27:17.295 9633-9633/com.example.ptacticedrawimg E/1234: 1080

英文:

I'm building a custom view. When inserting custom view to xml, i'm setting it as a single child and sets it's layout_width and layout_height to match_parent.

When printing its height and width in onSizeChange method, i don't get the width and height screen size, just dimensions that i can't understand how they where calculated.

I'm running the app on Samsung Galaxy S8 device.

Xml:


    &lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
   &lt;androidx.constraintlayout.widget.ConstraintLayout xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;
       xmlns:app=&quot;http://schemas.android.com/apk/res-auto&quot;
       xmlns:tools=&quot;http://schemas.android.com/tools&quot;
       android:layout_width=&quot;match_parent&quot;
       android:layout_height=&quot;match_parent&quot;
       tools:context=&quot;.MainActivity&quot;&gt;
   
   
   &lt;com.example.ptacticedrawimg.Rectangle
       android:layout_width= &quot;match_parent&quot;
       android:layout_height=&quot;match_parent&quot;
       app:layout_constraintStart_toStartOf=&quot;parent&quot;
       app:layout_constraintTop_toTopOf=&quot;parent&quot;/&gt;
   
   &lt;/androidx.constraintlayout.widget.ConstraintLayout&gt;

Custom View Code:

    public class Rectangle extends View {
        public Rectangle(Context context) {
            super(context);
            Log.e(&quot;Rectangle Constructor1&quot;,&quot;runs&quot;);
        }
    
        public Rectangle(Context context, AttributeSet attr)
        {
            super(context,attr);
            Log.e(&quot;Rectangle Constructor2&quot;,&quot;runs&quot;);
        }
    
        public Rectangle(Context context, AttributeSet attrs, int defStyle) {
            super(context, attrs, defStyle);
            Log.e(&quot;Rectangle Constructor3&quot;,&quot;runs&quot;);
        }
        @Override
        protected void onSizeChanged(int w, int h, int oldw, int oldh) {
            super.onSizeChanged(w, h, oldw, oldh);
            Log.e(&quot;onSizeChanged&quot;,&quot;oldh = &quot; + oldh + &quot; oldh = &quot; +oldh +   &quot;h = &quot; + h + &quot; w = &quot; + w);
    
        }
    
    
        @Override
        protected void onDraw(Canvas canvas) {
            Log.e(&quot;1234&quot;,&quot;&quot;+ getMeasuredWidth());
            super.onDraw(canvas);
            LinearGradient linearGradient = new LinearGradient(200, 200, 600, 600, Color.GREEN, Color.YELLOW, Shader.TileMode.REPEAT);
            Paint mPaint = new Paint();
            mPaint.setShader(linearGradient);
            canvas.drawRect(200, 200, 600, 600, mPaint);
        }

Log Output:

2020-07-23 14:27:10.034 9633-9633/com.example.ptacticedrawimg E/Rectangle&#160;Constructor2: runs
2020-07-23 14:27:17.250 9633-9633/com.example.ptacticedrawimg E/onSizeChanged: oldh = 0 oldh = 0h = 1836 w = 1080
2020-07-23 14:27:17.295 9633-9633/com.example.ptacticedrawimg E/1234: 1080

huangapple
  • 本文由 发表于 2020年7月23日 19:38:13
  • 转载请务必保留本文链接:https://java.coder-hub.com/63053352.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定