Graphics简单汇总

2024-08-31 23:58
文章标签 简单 汇总 graphics

本文主要是介绍Graphics简单汇总,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1、主页面布局文件


activity_main.xml(只有2个button按钮)

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="fill_parent"android:layout_height="fill_parent"android:orientation="vertical"><Buttonandroid:layout_width="fill_parent"android:layout_height="wrap_content"android:onClick="testTuPian"android:text="测试图片处理" /><Buttonandroid:layout_width="fill_parent"android:layout_height="wrap_content"android:onClick="testDraw"android:text="测试绘制图形" />
</LinearLayout>

MainActivity.java(启动2个button)

package com.atguigu.l11_graphics;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
public class MainActivity extends Activity {@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);}public void testTuPian(View view) {startActivity(new Intent(this, TuPianTestActivity.class));}public void testDraw(View view) {startActivity(new Intent(this, DrawTestActivity.class));}
}

2、startActivity(new Intent(this, TuPianTestActivity.class));启动的界面


上图布局文件如下

activity_tupian_test.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="fill_parent"android:layout_height="fill_parent"android:orientation="vertical"><Buttonandroid:layout_width="match_parent"android:layout_height="wrap_content"android:onClick=<span style="color:#ff0000;">"testBD"</span>android:text="测试Bitmap" /><Buttonandroid:layout_width="match_parent"android:layout_height="wrap_content"android:onClick="<span style="color:#ff0000;">testMatrix</span>"android:text="测试图片的缩放等处理" /><Buttonandroid:layout_width="fill_parent"android:layout_height="wrap_content"android:text="使用Shape做的按钮" android:background="@drawable/shape_test"/><ImageView android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_gravity="center_horizontal"android:background="@drawable/image_selector" android:onClick="<span style="color:#ff0000;">clickIV</span>"/><Buttonandroid:layout_width="fill_parent"android:layout_height="wrap_content"android:text="使用Selector+Shape做的按钮"android:background="@drawable/shape_selector"/><TextViewandroid:layout_width="fill_parent"android:layout_height="wrap_content"android:background="@drawable/test2"android:text="A NinePatchDrawable graphic is a stretchable bitmap image, which Android will automatically resize to accommodate the contents of the View in which you have placed it as the background. A NinePatch drawable is a standard PNG image that includes an extra" />
</LinearLayout>
TuPianTestActivity.java

package com.atguigu.l11_graphics;import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Toast;
/** 测试操作图片的Activity*/
public class TuPianTestActivity extends Activity {@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_tupian_test);}public void<span style="color:#ff0000;"> testBD</span>(View v) {startActivity(new Intent(this, BitmapTestActivity.class));}public void <span style="color:#ff0000;">testMatrix</span>(View v) {startActivity(new Intent(this, MatrixTestActivity.class));}public void <span style="color:#ff0000;">clickIV</span>(View v) {Toast.makeText(this, "点击了selector", 0).show();}
}

3、将上图分开来看(从上到下依次展示布局文件或者代码)

3-1、activity_bitmap.xml


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="fill_parent"android:layout_height="fill_parent"android:orientation="vertical" ><Buttonandroid:layout_width="fill_parent"android:layout_height="wrap_content"android:text="保存图片" android:onClick="saveImage"/><ImageViewandroid:id="@+id/iv_bitmap1"android:layout_width="fill_parent"android:layout_height="wrap_content" /><ImageViewandroid:id="@+id/iv_bitmap2"android:layout_width="fill_parent"android:layout_height="wrap_content" /><ImageViewandroid:id="@+id/iv_bitmap3"android:layout_width="fill_parent"android:layout_height="wrap_content" />
</LinearLayout>

BitmapTestActivity.java

package com.atguigu.l11_graphics;import java.io.FileNotFoundException;import android.app.Activity;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Bitmap.CompressFormat;
import android.graphics.BitmapFactory;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageView;/*Bitmap: 加载一张图片数据到内存中, 都可以封装成一个Bitmap对象需求3: 将一个bitmap对象保存到存储空间中*/
public class BitmapTestActivity extends Activity {private ImageView iv_bitmap1;private ImageView iv_bitmap2;private ImageView iv_bitmap3;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_bitmap);iv_bitmap1 = (ImageView) findViewById(R.id.iv_bitmap1);iv_bitmap2 = (ImageView) findViewById(R.id.iv_bitmap2);iv_bitmap3 = (ImageView) findViewById(R.id.iv_bitmap3);//1: 加载资源文件中的图片资源并显示iv_bitmap1.setImageResource(R.drawable.ic_launcher);//2: 使用bitmapfactory做--加载资源图片Bitmap bitmap = BitmapFactory.decodeResource(getResources(),R.drawable.ic_launcher);iv_bitmap2.setImageBitmap(bitmap);//加载存储空间的图片Bitmap bitmap2 = BitmapFactory.decodeFile("/storage/sdcard/atguigu.png");iv_bitmap3.setImageBitmap(bitmap2);}/*** 讲bitmap对象保存到存储空间去*	/data/data/包名/files/save.png*/public void saveImage(View v) {Bitmap bitmap = BitmapFactory.decodeFile("/storage/sdcard/atguigu.png");try {bitmap.compress(CompressFormat.PNG, 100,openFileOutput("save.png", Context.MODE_PRIVATE));} catch (FileNotFoundException e) {e.printStackTrace();}}
}

3-2、activity_matrix.xml


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="fill_parent"android:layout_height="fill_parent"android:orientation="vertical" ><LinearLayoutandroid:layout_width="fill_parent"android:layout_height="50dip"android:orientation="horizontal" ><EditTextandroid:id="@+id/et_matrix_scale"android:layout_width="fill_parent"android:layout_height="wrap_content"android:layout_weight="1.0"android:text="0.25" /><EditTextandroid:id="@+id/et_matrix_rotate"android:layout_width="fill_parent"android:layout_height="wrap_content"android:layout_weight="1.0"android:text="30" /><EditTextandroid:id="@+id/et_matrix_translateX"android:layout_width="fill_parent"android:layout_height="wrap_content"android:layout_weight="1.0"android:text="10" /><EditTextandroid:id="@+id/et_matrix_translateY"android:layout_width="fill_parent"android:layout_height="wrap_content"android:layout_weight="1.0"android:text="10" /></LinearLayout><LinearLayoutandroid:layout_width="fill_parent"android:layout_height="50dip"android:orientation="horizontal" ><Buttonandroid:layout_width="fill_parent"android:layout_height="wrap_content"android:layout_weight="1.0"android:onClick="scaleBitmap"android:text="缩放" /><Buttonandroid:layout_width="fill_parent"android:layout_height="wrap_content"android:layout_weight="1.0"android:onClick="rotateBitmap"android:text="旋转" /><Buttonandroid:layout_width="fill_parent"android:layout_height="wrap_content"android:layout_weight="1.0"android:onClick="translateBitmap"android:text="移动" /><Buttonandroid:layout_width="fill_parent"android:layout_height="wrap_content"android:layout_weight="1.0"android:onClick="clearMatrix"android:text="还原" /></LinearLayout><ImageViewandroid:id="@+id/iv_matrix_icon"android:layout_width="wrap_content"android:layout_height="wrap_content"android:src="@drawable/ic_launcher" android:scaleType="matrix"/></LinearLayout>

MatrixTestActivity.java

package com.atguigu.l11_graphics;
import android.app.Activity;
import android.graphics.Matrix;
import android.os.Bundle;
import android.view.View;
import android.widget.EditText;
import android.widget.ImageView;
/*Matrix ,中文里叫矩阵,高等数学里有介绍,在图像处理方面,主要是用于平面的缩放、平移、旋转等操作*/
public class MatrixTestActivity extends Activity {private EditText et_matrix_scale;private EditText et_matrix_rotate;private EditText et_matrix_translateX;private EditText et_matrix_translateY;private ImageView iv_matrix_icon;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_matrix);et_matrix_scale = (EditText) findViewById(R.id.et_matrix_scale);et_matrix_rotate = (EditText) findViewById(R.id.et_matrix_rotate);et_matrix_translateX = (EditText) findViewById(R.id.et_matrix_translateX);et_matrix_translateY = (EditText) findViewById(R.id.et_matrix_translateY);iv_matrix_icon = (ImageView) findViewById(R.id.iv_matrix_icon);}/*** 缩放图片*/Matrix matrix = new Matrix();public void scaleBitmap(View view) {// 得到缩放比例--float类型float sacle = Float.parseFloat(et_matrix_scale.getText().toString());// 对缩放图片对象设置xy轴缩放比例matrix.postScale(sacle, sacle);iv_matrix_icon.setImageMatrix(matrix);}/*** 旋转图片*/public void rotateBitmap(View view) {float degrees = Float.parseFloat(et_matrix_rotate.getText().toString());matrix.postRotate(degrees);iv_matrix_icon.setImageMatrix(matrix);}/*** 移动图片*/public void translateBitmap(View view) {float dx = Float.parseFloat(et_matrix_translateX.getText().toString());float dy = Float.parseFloat(et_matrix_translateY.getText().toString());matrix.postTranslate(dx, dy);iv_matrix_icon.setImageMatrix(matrix);}/*** 还原操作*/public void clearMatrix(View view) {//清除数据matrix.reset();iv_matrix_icon.setImageMatrix(matrix);}
}

MatrixTestActivity.java

package com.atguigu.l11_graphics;
import android.app.Activity;
import android.graphics.Matrix;
import android.os.Bundle;
import android.view.View;
import android.widget.EditText;
import android.widget.ImageView;
/*Matrix ,中文里叫矩阵,高等数学里有介绍,在图像处理方面,主要是用于平面的缩放、平移、旋转等操作*/
public class MatrixTestActivity extends Activity {private EditText et_matrix_scale;private EditText et_matrix_rotate;private EditText et_matrix_translateX;private EditText et_matrix_translateY;private ImageView iv_matrix_icon;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_matrix);et_matrix_scale = (EditText) findViewById(R.id.et_matrix_scale);et_matrix_rotate = (EditText) findViewById(R.id.et_matrix_rotate);et_matrix_translateX = (EditText) findViewById(R.id.et_matrix_translateX);et_matrix_translateY = (EditText) findViewById(R.id.et_matrix_translateY);iv_matrix_icon = (ImageView) findViewById(R.id.iv_matrix_icon);}/*** 缩放图片*/Matrix matrix = new Matrix();public void scaleBitmap(View view) {// 得到缩放比例--float类型float sacle = Float.parseFloat(et_matrix_scale.getText().toString());// 对缩放图片对象设置xy轴缩放比例matrix.postScale(sacle, sacle);iv_matrix_icon.setImageMatrix(matrix);}/*** 旋转图片*/public void rotateBitmap(View view) {float degrees = Float.parseFloat(et_matrix_rotate.getText().toString());matrix.postRotate(degrees);iv_matrix_icon.setImageMatrix(matrix);}/*** 移动图片*/public void translateBitmap(View view) {float dx = Float.parseFloat(et_matrix_translateX.getText().toString());float dy = Float.parseFloat(et_matrix_translateY.getText().toString());matrix.postTranslate(dx, dy);iv_matrix_icon.setImageMatrix(matrix);}/*** 还原操作*/public void clearMatrix(View view) {//清除数据matrix.reset();iv_matrix_icon.setImageMatrix(matrix);}
}
3-3、

shape_test.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" ><!-- 半径大小 --><corners android:radius="10dp" /><!-- 边框 --><strokeandroid:dashGap="2dp"android:dashWidth="2dp"android:width="3dp"android:color="#FF7F00" /><sizeandroid:height="50dp"android:width="40dp" /><!-- 颜色 --><solid android:color="#FFD700"></solid><!-- 覆盖solid --><gradientandroid:startColor="#ffffff"android:centerColor="#EE4000"android:endColor="#ffffff"android:angle="90"/>
</shape>

3-4、


image_selector.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" ><!-- 特别的状态放在前面 --><item android:drawable="@drawable/main_index_search_pressed"  android:state_pressed="true"/><item android:drawable="@drawable/main_index_search_normal"/>
</selector>

3-5、


<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" ><item android:state_pressed="true"><shape><corners android:radius="4dp"></corners><stroke android:width="2dp" android:color="#EEAD0E" android:dashWidth="4dp" android:dashGap="2dp"></stroke><size android:height="40dp"></size><gradient android:startColor="#ffffff" android:centerColor="#ffffff" android:endColor="#E0FFFF"/></shape></item><item><shape><corners android:radius="2dp"></corners><stroke android:width="2dp" android:color="#EE7AE9"></stroke><size android:height="40dp"></size><solid android:color="#E0FFFF"></solid></shape></item></selector>

3-6、(9patch图片)


4、startActivity(new Intent(this, DrawTestActivity.class));启动下面图片


DrawTestActivity.java

package com.atguigu.l11_graphics;import android.app.Activity;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.drawable.ShapeDrawable;
import android.graphics.drawable.shapes.OvalShape;
import android.os.Bundle;
import android.view.View;
public class DrawTestActivity extends Activity {@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);// 显示自定义视图setContentView(new MyView(this));}/*** 自定义myview视图*/private class MyView extends View {//成员变量---可画的图形对象private ShapeDrawable shapeDrawable;public MyView(Context context) {super(context);// 初始化一个图形对象---参数是椭圆shapeDrawable = new ShapeDrawable(new OvalShape());// 通过椭圆得到画笔,通过画笔设置颜色shapeDrawable.getPaint().setColor(Color.RED);// 指定位置left top right bottomshapeDrawable.setBounds(10, 10, 200, 100);}// 显示界面视图效果 画布@Overrideprotected void onDraw(Canvas canvas) {//设置画布的颜色canvas.drawColor(Color.GREEN);// 将图像画到画布上shapeDrawable.draw(canvas);//指定画笔Paint paint = new Paint();//通过画笔设置颜色paint.setColor(Color.BLUE);//设置字体大小paint.setTextSize(30);//设置平滑度paint.setAntiAlias(true);//在画布上写上字体canvas.drawText("你好", 10, 200, paint);}}
}




这篇关于Graphics简单汇总的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1125364

相关文章

Mysql表的简单操作(基本技能)

《Mysql表的简单操作(基本技能)》在数据库中,表的操作主要包括表的创建、查看、修改、删除等,了解如何操作这些表是数据库管理和开发的基本技能,本文给大家介绍Mysql表的简单操作,感兴趣的朋友一起看... 目录3.1 创建表 3.2 查看表结构3.3 修改表3.4 实践案例:修改表在数据库中,表的操作主要

springboot简单集成Security配置的教程

《springboot简单集成Security配置的教程》:本文主要介绍springboot简单集成Security配置的教程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,... 目录集成Security安全框架引入依赖编写配置类WebSecurityConfig(自定义资源权限规则

如何使用Python实现一个简单的window任务管理器

《如何使用Python实现一个简单的window任务管理器》这篇文章主要为大家详细介绍了如何使用Python实现一个简单的window任务管理器,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起... 任务管理器效果图完整代码import tkinter as tkfrom tkinter i

C++中函数模板与类模板的简单使用及区别介绍

《C++中函数模板与类模板的简单使用及区别介绍》这篇文章介绍了C++中的模板机制,包括函数模板和类模板的概念、语法和实际应用,函数模板通过类型参数实现泛型操作,而类模板允许创建可处理多种数据类型的类,... 目录一、函数模板定义语法真实示例二、类模板三、关键区别四、注意事项 ‌在C++中,模板是实现泛型编程

使用EasyExcel实现简单的Excel表格解析操作

《使用EasyExcel实现简单的Excel表格解析操作》:本文主要介绍如何使用EasyExcel完成简单的表格解析操作,同时实现了大量数据情况下数据的分次批量入库,并记录每条数据入库的状态,感兴... 目录前言固定模板及表数据格式的解析实现Excel模板内容对应的实体类实现AnalysisEventLis

Java中数组转换为列表的两种实现方式(超简单)

《Java中数组转换为列表的两种实现方式(超简单)》本文介绍了在Java中将数组转换为列表的两种常见方法使用Arrays.asList和Java8的StreamAPI,Arrays.asList方法简... 目录1. 使用Java Collections框架(Arrays.asList)1.1 示例代码1.

Java8需要知道的4个函数式接口简单教程

《Java8需要知道的4个函数式接口简单教程》:本文主要介绍Java8中引入的函数式接口,包括Consumer、Supplier、Predicate和Function,以及它们的用法和特点,文中... 目录什么是函数是接口?Consumer接口定义核心特点注意事项常见用法1.基本用法2.结合andThen链

C++初始化数组的几种常见方法(简单易懂)

《C++初始化数组的几种常见方法(简单易懂)》本文介绍了C++中数组的初始化方法,包括一维数组和二维数组的初始化,以及用new动态初始化数组,在C++11及以上版本中,还提供了使用std::array... 目录1、初始化一维数组1.1、使用列表初始化(推荐方式)1.2、初始化部分列表1.3、使用std::

redis群集简单部署过程

《redis群集简单部署过程》文章介绍了Redis,一个高性能的键值存储系统,其支持多种数据结构和命令,它还讨论了Redis的服务器端架构、数据存储和获取、协议和命令、高可用性方案、缓存机制以及监控和... 目录Redis介绍1. 基本概念2. 服务器端3. 存储和获取数据4. 协议和命令5. 高可用性6.

JAVA调用Deepseek的api完成基本对话简单代码示例

《JAVA调用Deepseek的api完成基本对话简单代码示例》:本文主要介绍JAVA调用Deepseek的api完成基本对话的相关资料,文中详细讲解了如何获取DeepSeekAPI密钥、添加H... 获取API密钥首先,从DeepSeek平台获取API密钥,用于身份验证。添加HTTP客户端依赖使用Jav