`
lyunabc
  • 浏览: 551790 次
  • 性别: Icon_minigender_2
社区版块
存档分类
最新评论

Android简明开发教程十五:RadioButton 多边形及路径绘制

 
阅读更多

这个例子是绘制多边形,多义形和路径,采用单选钮RadioButton来选择Polys 和Path示例:

UI 设计为 上部分用来显示绘图内容,下部分为两个单选按钮 Polys ,Path。这样layout就和main.xml 不一样,main.xml只含一个com.pstreets.graphics2d.GuidebeeGraphics2DView。因此需在res/layout下新建一个polys.xml:

<?xml version=”1.0″ encoding=”utf-8″?>
<LinearLayout xmlns:android=”http://schemas.android.com/apk/res/android
android:orientation=”vertical”
android:background=”@drawable/white”
android:layout_width=”fill_parent”
android:layout_height=”fill_parent”>
<com.pstreets.graphics2d.GuidebeeGraphics2DView
android:id=”@+id/graphics2dview”
android:layout_weight=”1″
android:layout_width=”fill_parent”
android:layout_height=”wrap_content”/>
<LinearLayout xmlns:android=”http://schemas.android.com/apk/res/android
android:layout_width=”wrap_content” android:layout_height=”wrap_content”
android:orientation=”horizontal”

>
<RadioGroup
android:layout_width=”wrap_content”
android:orientation=”horizontal”
android:textSize=”20dp”
android:layout_height=”wrap_content”>
<RadioButton android:text=”Polys”
android:id=”@+id/radioPolys”
android:layout_width=”wrap_content”
android:textColor=”@color/black”
android:checked=”true”
android:layout_height=”wrap_content”>
</RadioButton>
<RadioButton android:text=”Path”
android:id=”@+id/radioPath”
android:layout_width=”wrap_content”
android:textColor=”@color/black”
android:layout_height=”wrap_content”>
</RadioButton>
</RadioGroup>
</LinearLayout>

</LinearLayout>

RadioButton 需包含在RadioGroup中做为一个分组,这里将Polys 设为选中。

定义好Layout资源后,修改 Path.java

1
2
3
4
5
6
7
8
9
10
11
12
13
14
private RadioButton radioPoly;
private RadioButton radioPath;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.polys);
graphic2dView
= (GuidebeeGraphics2DView)
findViewById(R.id.graphics2dview);
radioPath = (RadioButton) findViewById(R.id.radioPath);
radioPoly = (RadioButton) findViewById(R.id.radioPolys);
radioPath.setOnClickListener(this);
radioPoly.setOnClickListener(this);
}

应为需要处理按键消息,所以定义了两个RadioButton对象,可以通过findViewById获取实例。因为两个RadioButton这里采用同样的处理方法,可以让Path实现OnClickListener ,即:public class Path extends Graphics2DActivity implements OnClickListener。完整代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
public class Path extends Graphics2DActivity
implements OnClickListener {
private RadioButton radioPoly;
private RadioButton radioPath;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.polys);
graphic2dView
= (GuidebeeGraphics2DView)
findViewById(R.id.graphics2dview);
radioPath = (RadioButton) findViewById(R.id.radioPath);
radioPoly = (RadioButton) findViewById(R.id.radioPolys);
radioPath.setOnClickListener(this);
radioPoly.setOnClickListener(this);
}
@Override
protected void drawImage() {
if (radioPoly.isChecked()) {
drawPolys();
} else {
drawPaths();
}
graphic2dView.refreshCanvas();
}
@Override
public void onClick(View view) {
drawImage();
}
private void drawPaths() {
AffineTransform mat1;
// The path.
com.mapdigit.drawing.geometry.Path path;
// Colors
Color redColor = new Color(0x96ff0000, true);
Color greenColor = new Color(0xff00ff00);
Color blueColor = new Color(0x750000ff, true);
String pathdata
= "M 60 20 Q -40 70 60 120 Q 160 70 60 20 z";
mat1 = new AffineTransform();
mat1.translate(30, 40);
mat1.rotate(-30 * Math.PI / 180.0);
path = com.mapdigit.drawing.geometry.Path.fromString(pathdata);
// Clear the canvas with white color.
graphics2D.clear(Color.WHITE);
graphics2D.setAffineTransform(new AffineTransform());
SolidBrush brush = new SolidBrush(greenColor);
graphics2D.fill(brush, path);
graphics2D.setAffineTransform(mat1);
brush = new SolidBrush(blueColor);
com.mapdigit.drawing.Pen pen
= new com.mapdigit.drawing.Pen(redColor, 5);
graphics2D.setPenAndBrush(pen, brush);
graphics2D.draw(null, path);
graphics2D.fill(null, path);
}
private void drawPolys() {
AffineTransform mat1;
// Colors
Color redColor = new Color(0x96ff0000, true);
Color greenColor = new Color(0xff00ff00);
Color blueColor = new Color(0x750000ff, true);
Polyline polyline;
Polygon polygon;
Polygon polygon1;
String pointsdata1
= "59,45,95,63,108,105,82,139,39,140,11,107,19,65";
mat1 = new AffineTransform();
mat1.translate(30, 40);
mat1.rotate(-30 * Math.PI / 180.0);
polyline = new Polyline();
polygon = new Polygon();
polygon1 = new Polygon();
Point[] points = Point.fromString(pointsdata1);
for (int i = 0; i < points.length; i++) {
polyline.addPoint(points[i].x, points[i].y);
polygon.addPoint(points[i].x, points[i].y);
polygon1.addPoint(points[i].x, points[i].y);
}
// Clear the canvas with white color.
graphics2D.clear(Color.WHITE);
graphics2D.setAffineTransform(new AffineTransform());
SolidBrush brush = new SolidBrush(greenColor);
graphics2D.fillPolygon(brush, polygon);
graphics2D.setAffineTransform(mat1);
brush = new SolidBrush(blueColor);
com.mapdigit.drawing.Pen pen
= new com.mapdigit.drawing.Pen(redColor, 5);
graphics2D.setPenAndBrush(pen, brush);
graphics2D.fillPolygon(null, polygon1);
graphics2D.drawPolyline(null, polyline);
}
}

分享到:
评论

相关推荐

    《Android开发视频教程》第十集:RadioButton单选按钮的使用.zip

    《Android开发视频教程》第十集:RadioButton单选按钮的使用.zip

    android 自定义单选按钮radioButton

    在Java代码中,可以通过RadioGroup获取选中的RadioButton: ```java RadioGroup radioGroup = findViewById(R.id.radio_group); int checkedId = radioGroup.getCheckedRadioButtonId(); RadioButton radioButton =...

    android 自定义RadioButton的样式

    ### Android自定义RadioButton的样式 在Android开发过程中,经常需要对UI进行个性化定制来满足不同应用的需求或提高用户体验。RadioButton是一种常用的控件,用于表示一组互斥的选择项。默认情况下,Android提供的...

    Android开发视频教程合集.txt

    《老罗Android开发视频教程》第四集:android相对布局的使用.mp4 《老罗Android开发视频教程》第四集:android生命周期的介绍.avi 《老罗Android开发视频教程》第四集:android使用fastjson解析.mp4 《老罗Android...

    Android:解决RadioGroup中RadioButton的图片自定义及每项间隔距离一样

    在Android开发中,RadioGroup和RadioButton是常用的组件,用于实现单选功能。本文将深入探讨如何自定义RadioButton的图片以及确保RadioGroup中的每个RadioButton之间的间隔距离保持一致。首先,我们来了解一下这两个...

    自定义android RadioButton样式

    在Android开发中,RadioButton是用户界面中常见的组件之一,用于实现单选按钮功能。默认的RadioButton样式虽然简单,但有时并不能满足我们对界面美观度和个性化的需求。因此,自定义RadioButton样式是提升应用视觉...

    Android 动态添加RadioGroup的RadioButton-IT计算机-毕业设计.zip

    在Android开发中,动态添加组件是一项常见的需求,特别是在创建自定义布局或实现复杂交互时。本项目是一个关于“Android动态添加RadioGroup的RadioButton”的源码示例,适用于毕业设计学习和论文参考。以下是对这个...

    Android开发之RadioButton位于文字右边的显示方法

    在Android开发中,RadioButton是单选按钮控件,通常用于在多个选项中让用户选择一个。默认情况下,RadioButton的图标(一个小圆圈)位于文字的左边。然而,根据UI设计的需求,有时我们可能希望将RadioButton的图标...

    Android中单选框RadioButton修改默认图片

    在Android开发中,`RadioButton`是用户界面中常见的一种组件,用于实现单选功能,即在多个选项中只能选择一个。在默认情况下,`RadioButton`显示一个小圆点,表示当前选中的状态。然而,为了满足特定的设计需求,...

    安卓Android源码——(RadioButton与监听).zip

    在XML布局文件中,我们可以通过以下方式定义一个RadioButton: ```xml &lt;RadioButton android:id="@+id/radioButton1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text...

    Android学习笔记七:基本视图组件:RadioGroup和RadioButton

    在Android开发中,基本视图组件是构建用户界面的基础,其中RadioGroup和RadioButton是用于创建单选按钮组的重要组件。这篇“Android学习笔记七:基本视图组件:RadioGroup和RadioButton”深入探讨了这两个组件的使用...

    android动态加载Radiobutton

    在Android开发中,动态加载RadioButton是一项常见的需求,尤其是在创建可扩展的用户界面或者根据数据动态生成选项时。本文将深入探讨如何通过代码实现这一功能。 首先,我们需要了解RadioButton的基本概念。...

    安卓Android源码——(RadioButton与监听).rar

    在XML布局文件中,可以这样创建RadioButton: ```xml android:id="@+id/radio_group" android:layout_width="wrap_content" android:layout_height="wrap_content"&gt; &lt;RadioButton android:id="@+id/radio_...

    android 猜猜我在想什么 RadioButton ID

    在Android开发中,RadioButton是一种常用的UI元素,它用于创建单选按钮组,用户只能在一组中选择一个选项。"android 猜猜我在想什么 RadioButton ID"这个标题可能是指一个练习或示例项目,其中开发者可能正在尝试...

    Android自定义RadioButton及RadioGroup

    创建一个新的Java类,例如CustomRadioButton,继承自RadioButton: ```java public class CustomRadioButton extends RadioButton { public CustomRadioButton(Context context) { super(context); init(); } ...

    [14本经典Android开发教程]-2-Android开发手册—API函数详解

    [14本经典Android开发教程] 2 Android开发手册 API函数详解 一 TextView的API 1 1 结构 java lang Object android view View android widget TextView 直接子类: Button CheckedTextView Chronometer DigitalClock...

    Android应用开发-RadioButton与RadioGroup.pptx

    在Android应用开发中,RadioButton和RadioGroup是两个重要的组件,它们通常用于创建单选列表,让用户从一组选项中选择一个。下面将详细讲解这两个组件及其相关知识点。 **RadioButton详解** RadioButton是一个显示...

    android studio开发app项目RadioButton应用

    在Android Studio中开发移动应用程序时,`RadioButton`是UI设计中的一个重要组件,它属于选择控件的一种,通常用于用户在多个选项中进行单选。在本项目中,我们将深入探讨如何在Android Studio中使用`RadioButton`来...

    安卓Android源码——动态添加RadioGroup的RadioButton.zip

    在安卓开发中,有时我们需要根据需求动态地在界面上添加组件,例如在RadioGroup中添加RadioButton。本示例代码着重讲解如何在Android应用中实现这一功能。RadioGroup是一种布局容器,用于管理一组RadioButton,使得...

Global site tag (gtag.js) - Google Analytics