Android開發(fā)實(shí)現(xiàn)的圖片瀏覽功能示例【放大圖片】
本文實(shí)例講述了Android開發(fā)實(shí)現(xiàn)的圖片瀏覽功能。分享給大家供大家參考,具體如下:
效果圖:
布局文件:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout 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" android:orientation="vertical"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <Button android:id="@+id/plus" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="增加透明度" android:layout_weight="1"/> <Button android:id="@+id/minus" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="減少透明度" android:layout_weight="1"/> <Button android:id="@+id/next" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="下一張" android:layout_weight="1"/> </LinearLayout> <!--此處顯示圖片整體--> <ImageView android:id="@+id/imagel" android:layout_width="wrap_content" android:layout_height="280dp" android:src="@drawable/xiaochouyu" android:scaleType="fitCenter"/> <ImageView android:id="@+id/image2" android:layout_width="200dp" android:layout_height="200dp" android:background="#00f" android:layout_margin="5dp"/> </LinearLayout>
代碼實(shí)現(xiàn)透明度改變:
public class MainActivity extends AppCompatActivity { //定義一個(gè)訪問圖片的數(shù)組 int[] images = new int[]{ R.drawable.xiaochouyu , R.drawable.leidayu , R.drawable.paodangyu , R.drawable.huangjindiao , R.drawable.piaopiao }; //定義默認(rèn)顯示的圖片 int currentImg = 2 ; //定義圖片初始透明度 private int alpha = 255 ; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); final Button plus = (Button) findViewById(R.id.plus) ; final Button minus = (Button) findViewById(R.id.minus) ; final Button next = (Button) findViewById(R.id.next) ; final ImageView imageView01 = (ImageView) findViewById(R.id.imagel); final ImageView imageView02 = (ImageView) findViewById(R.id.image2); //定義查看下一張圖片的監(jiān)聽器 next.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { //顯示下一張圖片 imageView01.setImageResource(images[currentImg++ % images.length]); } }); //定義改變圖片透明度的方法 View.OnClickListener listener = new View.OnClickListener() { @RequiresApi(api = Build.VERSION_CODES.JELLY_BEAN) @Override public void onClick(View v) { if (v == plus){ alpha = alpha + 20 ; } if (v == minus){ alpha = alpha - 20 ; } if (alpha >= 255){ alpha = 255 ; } if (alpha <= 0){ alpha = 0 ; } imageView01.setImageAlpha(alpha); } }; //為兩個(gè)按鈕添加監(jiān)聽器 plus.setOnClickListener(listener); minus.setOnClickListener(listener); imageView01.setOnTouchListener(new View.OnTouchListener() { @RequiresApi(api = Build.VERSION_CODES.JELLY_BEAN) @Override public boolean onTouch(View v, MotionEvent event) { BitmapDrawable bitmapDrawable = (BitmapDrawable) imageView01.getDrawable(); //獲取第一個(gè)托片顯示框中的位圖 Bitmap bitmap = bitmapDrawable.getBitmap(); //bitmap圖片實(shí)際大小與第一個(gè)Imageview的縮放比例 double scale = 1.0 * bitmap.getHeight() / imageView01.getHeight(); //獲取需要顯示的圖片開始點(diǎn) int x = (int) (event.getX() * scale); int y = (int) (event.getY() * scale); if (x + 120 > bitmap.getWidth()){ x = bitmap.getWidth() - 120 ; } if (y + 120 > bitmap.getHeight()){ y = bitmap.getHeight() - 120 ; } //顯示圖片的指定區(qū)域 imageView02.setImageBitmap(Bitmap.createBitmap(bitmap , x , y , 120 , 120)); imageView02.setImageAlpha(alpha); return false; } }); } }
更多關(guān)于Android相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Android圖形與圖像處理技巧總結(jié)》、《Android開發(fā)入門與進(jìn)階教程》、《Android調(diào)試技巧與常見問題解決方法匯總》、《Android基本組件用法總結(jié)》、《Android視圖View技巧總結(jié)》、《Android布局layout技巧總結(jié)》及《Android控件用法總結(jié)》
希望本文所述對(duì)大家Android程序設(shè)計(jì)有所幫助。
- Android單項(xiàng)綁定MVVM項(xiàng)目模板的方法
- Android開發(fā)之ListView的簡(jiǎn)單用法及定制ListView界面操作示例
- Android實(shí)現(xiàn)自定義滑動(dòng)刻度尺方法示例
- Android文字基線Baseline算法的使用講解
- Android開發(fā)實(shí)現(xiàn)ListView和adapter配合顯示圖片和文字列表功能示例
- Android使用google breakpad捕獲分析native cash
- Android應(yīng)用動(dòng)態(tài)修改主題的方法示例
- Android樣式和主題之選擇器的實(shí)例講解
- Android點(diǎn)擊Button實(shí)現(xiàn)切換點(diǎn)擊圖片效果的示例
- Android在ubuntu上過濾多條關(guān)鍵字日志
相關(guān)文章
Android利用代碼控制設(shè)備上其他音樂播放器的方法
這篇文章主要給大家介紹了關(guān)于Android利用代碼如何控制設(shè)備上其他音樂播放器的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2018-06-06Android模擬實(shí)現(xiàn)支付寶螞蟻森林效果
這篇文章主要為大家詳細(xì)介紹了如何利用Android模擬實(shí)現(xiàn)支付寶中螞蟻森林的動(dòng)畫效果,文中的示例代碼講解詳細(xì),感興趣的可以了解一下2022-09-09Android studio保存logcat日志到本地的操作
這篇文章主要介紹了Android studio保存logcat日志到本地的操作,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧2020-04-04Android?實(shí)現(xiàn)自定義圓形進(jìn)度條的三種常用方法
這篇文章主要介紹了Android?實(shí)現(xiàn)自定義圓形進(jìn)度條的三種常用方法的相關(guān)資料,需要的朋友可以參考下2023-03-03Android Studio使用教程(一):下載與安裝及創(chuàng)建HelloWorld項(xiàng)目
這篇文章主要介紹了Android Studio使用教程(一):下載與安裝及創(chuàng)建HelloWorld項(xiàng)目,本文用詳細(xì)的圖文說明講解了Android Studio初步使用,需要的朋友可以參考下2015-05-05深入分析Android ViewStub的應(yīng)用詳解
本篇文章是對(duì)Android ViewStub的應(yīng)用進(jìn)行了詳細(xì)的分析介紹,需要的朋友參考下2013-05-05接口對(duì)象的實(shí)例化在接口回調(diào)中的使用方法
下面小編就為大家?guī)硪黄涌趯?duì)象的實(shí)例化在接口回調(diào)中的使用方法。小編覺得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧2017-02-02Android把Bitmap保存為PNG圖像文件的簡(jiǎn)單代碼
這篇文章主要介紹了Android把Bitmap保存為PNG圖像文件的方法,非常不錯(cuò),具有參考借鑒價(jià)值,需要的朋友可以參考下2017-08-08Android模塊化中數(shù)據(jù)傳遞/路由跳轉(zhuǎn)實(shí)現(xiàn)示例
這篇文章主要介紹了Android模塊化中數(shù)據(jù)傳遞/路由跳轉(zhuǎn)實(shí)現(xiàn)示例,小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧2018-07-07Android中ShapeableImageView使用實(shí)例詳解(告別shape、三方庫(kù))
之前Google推送了文章,Android?Material組件1.2.0里面就有ShapeableImageView,不用像以前再寫shape,下面這篇文章主要給大家介紹了關(guān)于Android中ShapeableImageView使用的相關(guān)資料,需要的朋友可以參考下2022-09-09