Android:向XML添加自定义视图

时间:2015-11-09 22:18:38

标签: java android xml canvas view

我目前正在开展一个项目,当用户触摸屏幕时,我将在屏幕上显示形状。 我已经创建了一个单独的类,它将在画布上绘制一个矩形,但我的困难在于我可以在主要活动xml文件中指定此类,以便将其显示在我的主要活动上的按钮旁边。 / p>

我知道如果我创建一个矩形类的实例并对此实例使用setContentView(),它将按照我的要求显示矩形。但是,我希望能够在主要活动的按钮旁边显示这个矩形。

有人能解释如何做到这一点吗?感谢

activity_main.xml中

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:custom="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MainActivity">

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/chooseColour"
    android:id="@+id/btnColour"
    android:layout_centerVertical="true"
    android:layout_centerHorizontal="true" />

</RelativeLayout>

MainActivity.java

package mypackage;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;

public class MainActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {

    DrawRectangle drawRectangle = new DrawRectangle(this);

    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

}
}

DrawRectangle.java

package mypackage;

import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.view.View;


public class DrawRectangle extends View {

Paint paint = new Paint();

public DrawRectangle(Context context) {
    super(context);
    paint.setColor(Color.BLUE);
}

@Override
protected void onDraw(Canvas canvas) {
    canvas.drawRect(30,30,100,100, paint);
}
}

1 个答案:

答案 0 :(得分:1)

您将自定义视图作为普通视图包含在XML中,但您将声明标记更改为类名。这是一个例子:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:custom="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MainActivity">

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/chooseColour"
    android:id="@+id/btnColour"
    android:layout_centerVertical="true"
    android:layout_centerHorizontal="true" />

<mypackage.DrawRectangle
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/btnColour" />

</RelativeLayout>