android - 将新 View 绘制到相对布局中

标签 android view draw android-relativelayout

我们正在为汽车编写“仪表板”。计算/绘制速度计的代码是与其余代码分开完成的,现在我正在尝试将两者结合起来。

它们都独立工作,并且在速度计 View 代码中,UI 的主要部分仍在运行,我只是看不到速度计。

我已经编译好了,没有明显的错误。但是,当应用程序运行时,我没有在主视图中看到速度计,即使我已经使用 addView 方法添加了它。

供引用:

我创建和添加 View 的代码:

    setContentView(R.layout.main); 
    RelativeLayout relativeLayout = (RelativeLayout) findViewById(R.id.RelativeLayout1);
    RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams(RelativeLayout.CENTER_HORIZONTAL, RelativeLayout.CENTER_VERTICAL);
    myView v = new myView(this);
    v.setLayoutParams(lp);
    relativeLayout.addView(v, lp);

myView 类的代码: 导入 android.content.Context; 导入 android.graphics.Bitmap; 导入 android.graphics.BitmapFactory; 导入 android.graphics.Canvas; 导入 android.graphics.Color; 导入 android.graphics.Paint; 导入 android.graphics.RectF; 导入 android.graphics.Typeface; 导入 android.view.View;

public class myView extends View {
    private Paint mPaints;
    private Paint textpaint;
    private boolean mUseCenters;
    private RectF mBigOval;
    private float mStart;
    private float mSweep;
    public float SPEED_raw;
    public int SPEED = 0;   //initialized to 0 just for loop.  Remove initialization when IF statement below is deleted
    public static Bitmap gaugefront;
    public static Bitmap gaugeback;

    public myView(Context context) {
        super(context);
        mPaints = new Paint();
        mPaints.setAntiAlias(true);
        mPaints.setColor(Color.YELLOW);

        textpaint = new Paint();
        textpaint.setAntiAlias(true);
        textpaint.setColor(Color.WHITE);
        textpaint.setTextSize(150);
        textpaint.setTypeface(Typeface.defaultFromStyle(Typeface.BOLD));

        gaugefront = BitmapFactory.decodeResource(context.getResources(),R.drawable.gaugefront);    //Load gaugefront.png
        gaugeback = BitmapFactory.decodeResource(context.getResources(),R.drawable.gaugeback);      //Load gaugeback.png

        mUseCenters = true;
        mBigOval = new RectF(400, 10, 880, 490);                //left[x-coordinate],top[y-coordinate],right[x],bottom[y]
    }

    private void drawArcs(Canvas canvas, RectF oval, boolean useCenter, Paint paint) {
        canvas.drawArc(oval, mStart, mSweep, useCenter, paint);
    }

    @Override 
    protected void onDraw(Canvas canvas) {
        canvas.drawBitmap(myView.gaugeback, 400, 10, null);     //draw gauge background, X coordinate:400, Y coordinate: 10
        drawArcs(canvas, mBigOval, mUseCenters, mPaints);

        //SPEED_raw = 70;                   //Raw float data from CCS. Uncomment when the IF statement below is deleted.
        SPEED = Math.round(SPEED_raw);      //SPEED integer.  Units km/h - Top speed of 135. Used for digital readout

        mStart = 90;                        //Start drawing from -90 degrees (Counter clockwise)                
        mSweep = SPEED_raw*2;               //Draw stop point

            if(SPEED >= 135){           //JUST FOR SHOW.  Delete this for actual speedo
                SPEED_raw = 0;          // "
            }                           // "
            else                        // "
                SPEED_raw += 0.5;       // "

        canvas.drawBitmap(myView.gaugefront, 400, 10, null);                //draw gauge foreground, X coordinate:400, Y coordinate: 10

        String speed_string = String.valueOf(SPEED);                        //Convert int SPEED to String for display

//            while (speed_string.endsWith(".0") || speed_string.endsWith(".")){            //Erase trailing ".0" for float types. Don't need if SPEED is an int
//              speed_string = (speed_string.substring(0, speed_string.length() - 1));
//            }

        canvas.drawText(speed_string, 640, 420, textpaint);                 //arguments: (string, x-coordinate, y-coordinate, paint)

        invalidate();
    }
}

这是我的 XML 文件:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/RelativeLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:keepScreenOn="true"
android:orientation="vertical" >

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

<ImageView
    android:id="@+id/solarbg"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:src="@drawable/solarbg" />
</LinearLayout>

<ImageView
    android:id="@+id/l_lamp"
    android:layout_width="90dp"
    android:layout_height="90dp"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:layout_gravity="left"
    android:src="@drawable/l_arrow_dim" />

<DigitalClock
    android:id="@+id/digitalClock1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:gravity="center"
    android:textColor="#ffffff"
    android:textSize="50dp" />

<ImageView
    android:id="@+id/r_lamp"
    android:layout_width="90dp"
    android:layout_height="90dp"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:src="@drawable/r_arrow_dim" />

<TextView
    android:id="@+id/setAmps"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_centerVertical="true"
    android:gravity="left"
    android:text="@string/setAmps"
    android:textColor="#ffffff"
    android:textSize="30dp" />

<TextView
    android:id="@+id/setAmpsVal"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="left"
    android:layout_below = "@+id/setAmps"
    android:layout_alignParentLeft="true"
    android:maxEms = "5"
    android:textColor="#ffffff"
    android:textSize="30dp" />

<TextView
    android:id="@+id/setVelocity"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBottom="@+id/setAmps"
    android:layout_alignParentRight="true"
    android:layout_centerVertical="true"
    android:gravity="right"
    android:text="@string/setVelocity"
    android:textColor="#ffffff"
    android:textSize="30dp" />

    <TextView
    android:id="@+id/setVelocityVal"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="right"
    android:layout_below = "@+id/setVelocity"
    android:layout_alignParentRight="true"
    android:maxEms = "5"
    android:textColor="#ffffff"
    android:textSize="30dp" />

<TextView
    android:id="@+id/actVelocity"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_below="@+id/setVelocityVal"
    android:gravity="right"
    android:text="@string/actVelocity"
    android:textColor="#ffffff"
    android:textSize="30dp" />

<TextView
    android:id="@+id/actVelocityVal"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below = "@+id/actVelocity"
    android:layout_alignParentRight="true"
    android:gravity="right"
    android:maxEms = "5"
    android:textColor="#ffffff"
    android:textSize="30dp" />

<TextView
    android:id="@+id/busAmps"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_below="@+id/setAmpsVal"
    android:gravity="left"
    android:text="@string/busAmps"
    android:textColor="#ffffff"
    android:textSize="30dp" /><TextView
    android:id="@+id/busAmpsVal"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="left"
    android:layout_below = "@+id/busAmps"
    android:maxEms = "5"
    android:textColor="#ffffff"
    android:textSize="30dp" />

  <TextView
    android:id="@+id/powerVal"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_alignParentBottom = "true"
    android:gravity="right"
    android:textColor="#ffffff"
    android:textSize="30dp" />

<TextView
    android:id="@+id/power"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_above = "@+id/powerVal"
    android:gravity="left"
    android:text="@string/power"
    android:textColor="#ffffff"
    android:textSize="30dp" />


 <TableLayout
    android:id="@+id/msgCenterLayout"
    android:layout_width="600dp"
    android:layout_height="200dp" 
    android:layout_alignParentBottom = "true" 
    android:layout_centerHorizontal = "true"
    android:orientation = "vertical"
    android:visibility = "invisible">

<ScrollView
    android:id="@+id/messageCenterText"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:gravity="left"
    android:text="@string/busAmps"
    android:textColor="#ffffff"
    android:textSize="30dp" />


</TableLayout>

</RelativeLayout>

编辑: 我正在为主布局使用 XML 文件,并尝试将这个新 View 添加到该 XML 文件内的相对布局。

最佳答案

尝试写作

LayoutParams p = new LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.FILL_PARENT); 

v.setLayoutParams(lp);
relativeLayout.addView(v);

关于android - 将新 View 绘制到相对布局中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11008414/

相关文章:

android - 没有 attrs.xml 文件的自定义 xml 属性

c - 对齐结构在全局范围内不可用

android - 如何在 React Native 中的两点之间画一条线?

android - 如何在其他 Activity 上显示警告框

android - RelativeLayout,将一个 View 对齐在另一个 View 的底部,但始终在另一个 View 下方

Android SQLite "no such table"异常

android - 试图复制发光的圆圈效果

android - 如何在 Android 10 中显示每日离线通知?

iphone - 多个 View Controller 中的 iAd 示例

android - 在 View 中声明内部类是否危险?