Android添加圖片到ListView或者 RecyclerView顯示

来源:http://www.cnblogs.com/liunanjava/archive/2016/08/13/5768654.html
-Advertisement-
Play Games

先上圖 點擊+號就去選擇圖片 實際上這個添加本身就是一個ListView或者 RecyclerView 只是佈局有些特殊 item 在Adpater中判斷一個數據是不是為0和是不是最後一個添加的圖片就可以了。 這裡用到了一個正方形的,容器 這裡沒有寫圖片選擇器有興趣可以看這裡 圖片選擇器: http ...


 

先上圖

 

點擊+號就去選擇圖片

實際上這個添加本身就是一個ListView或者 RecyclerView

 

只是佈局有些特殊

item

<?xml version="1.0" encoding="utf-8"?>
<liu.myrecyleviewchoosephoto.view.SquareRelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/rootView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">


    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="7dp"
        android:layout_marginRight="7dp"
        android:layout_marginTop="14dp"
        android:background="@drawable/shape_white_bg_corner"
        >

        <ImageView
            android:id="@+id/ivDisPlayItemPhoto"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:contentDescription="@null"
            android:scaleType="centerCrop"
            android:layout_centerInParent="true"
            android:layout_marginRight="8dp"
            android:layout_marginLeft="8dp"
            android:layout_marginTop="5dp"
            android:layout_marginBottom="5dp"
            />

        <ImageView
            android:id="@+id/ivAddPhoto"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_centerInParent="true"
            android:background="@color/white"
            android:scaleType="centerCrop"
            android:src="@mipmap/add_photo_refund"
            android:visibility="visible"/>

        <ImageView
            android:id="@+id/ivUploadingBg"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:src="@drawable/shape_grey_bg_corner"
            android:visibility="gone"/>

        <ImageView
            android:id="@+id/ivError"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:src="@mipmap/icon_prompt"
            android:visibility="gone"/>

        <TextView
            android:id="@+id/tvProgress"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:text="0%"
            android:textColor="@color/white"
            android:textSize="16sp"
            android:visibility="gone"/>

    </RelativeLayout>

    <ImageView
        android:id="@+id/ivDelete"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:src="@mipmap/delete_photo"
        android:visibility="gone"/>


</liu.myrecyleviewchoosephoto.view.SquareRelativeLayout>

在Adpater中判斷一個數據是不是為0和是不是最後一個添加的圖片就可以了。

 @Override
    public int getItemCount() {
        if (mDatas == null || mDatas.size() == 0) {
            return 1;
        } else if (mDatas.size() < mMaxNum) {
            return mDatas.size() + 1;
        } else {
            return mDatas.size();
        }
    }

 

這裡用到了一個正方形的,容器

package liu.myrecyleviewchoosephoto.view;


import android.content.Context;
import android.util.AttributeSet;
import android.widget.RelativeLayout;

/**
 * 正方形的RelativeLayout
 * Created by 劉楠 on 2016/8/13 0013.16:07
 */
public class SquareRelativeLayout extends RelativeLayout {
    public SquareRelativeLayout(Context context) {
        super(context);
    }

    public SquareRelativeLayout(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public SquareRelativeLayout(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {


        //設置自己測量結果
        setMeasuredDimension(getDefaultSize(0,widthMeasureSpec),getDefaultSize(0,heightMeasureSpec));


        /**
         * 測量子View的
         */
        int childWidthSize=getMeasuredWidth();
        //高度與寬度一樣
        widthMeasureSpec =MeasureSpec.makeMeasureSpec(childWidthSize,MeasureSpec.EXACTLY);
        heightMeasureSpec =widthMeasureSpec;

        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    }
}

 

這裡沒有寫圖片選擇器
有興趣可以看這裡

 圖片選擇器:

https://github.com/ln0491/PhotoView

 

源碼:

https://github.com/ln0491/MyRecyleViewChoosePhoto

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 首先給大家介紹javascript jquery中定義數組與操作的相關知識,具體內容如下所示: 1.認識數組 數組就是某類數據的集合,數據類型可以是整型、字元串、甚至是對象Javascript不支持多維數組,但是因為數組裡面可以包含對象(數組也是一個對象),所以數組可以通過相互嵌套實現類似多維數組的 ...
  • × 目錄 [1]原型繼承 [2]偽類繼承 [3]組合繼承 前面的話 學習如何創建對象是理解面向對象編程的第一步,第二步是理解繼承。本文是javascript面向對象系列第三篇——實現繼承的3種形式 【1】原型鏈 javascript使用原型鏈作為實現繼承的主要方法,實現的本質是重寫原型對象,代之以一 ...
  • BOM
    一、改變 HTML 1.改變 HTML 輸出流 在 JavaScript 中,document.write() 可用於直接向 HTML 輸出流寫內容。 2.改變 HTML 內容 修改 HTML 內容的最簡單的方法時使用 innerHTML 屬性。 如需改變 HTML 元素的內容,請使用這個語法: 3 ...
  • HTML教程 一、HTML基礎(人) 1、基礎概念: 1.1、自動閉合標簽和閉合標簽(如出錯html編寫時不會報錯) 自閉合:<mete /> 閉合:<table>文字</table> 1.2、註釋:<!-- 文字 --> 1.3、標簽屬性(name): <table name="name"><ta ...
  • 當在Codeforces上做題的時,有時會無意撇到右側的Problem tags邊欄,但是原本並不希望能夠看到它。 能否把它屏蔽了呢?答案是顯然的,我們只需要加一段很短的CSS即可。 這樣,當這段CSS生效時,標簽將會變成如下所示的樣子。 這樣目的就達到了。 那麼,如何將CSS應用到瀏覽器中使其生效 ...
  • 1. 拿到項目之後 構思整個系統流程 展示所有的目錄信息 創建一個目錄 mkdir 打開目錄 顯示目錄下的所有文件 在目錄中 可以新建文件 在目錄中 可以對文件進行修改 2. 構思數據結構 需要存儲目錄的數據 需要存儲文件內容的數據 為了知道一個文件是屬於哪一個目錄 需要建立兩者的關聯 3. 構思實 ...
  • window.location 對象所包含的屬性 ...
  • 實現功能: 1、APP主界面底部模塊欄 2、ViewPager一屏多個界面顯示 3、........ 首先需要瞭解一下這個屬性的意思 ,即 是否允許子View超出父View的返回,有兩個值true 、false ,預設true 使用的時候給子View和根節點View控制項都設置android:clip ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...