Android帶頭像的用戶註冊頁面

来源:http://www.cnblogs.com/shouce/archive/2016/06/02/5551796.html
-Advertisement-
Play Games

詳細的圖文可以到我的百度經驗去查看:http://jingyan.baidu.com/article/cd4c2979eda109756e6e60de.html 首先是註冊頁面的佈局: ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 2 ...


詳細的圖文可以到我的百度經驗去查看:http://jingyan.baidu.com/article/cd4c2979eda109756e6e60de.html

首先是註冊頁面的佈局:

?
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 113 114 115 116 117 <?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:paddingTop="20px"     android:orientation="horizontal" >       <LinearLayout         android:id="@+id/linearLayout1"         android:orientation="vertical"         android:layout_weight="2"         android:paddingLeft="20px"         android:layout_width="wrap_content"         android:layout_height="wrap_content" >           <TableLayout             android:id="@+id/tableLayout1"             android:layout_width="match_parent"             android:layout_height="wrap_content" >               <TableRow                 android:id="@+id/tableRow1"                 android:layout_width="wrap_content"                 android:layout_height="wrap_content" >                 <TextView                     android:id="@+id/textView1"                     android:textSize="20px"                     android:layout_width="wrap_content"                     android:layout_height="wrap_content"                     android:text="用戶名:" />                   <EditText                     android:id="@+id/user"                     android:minWidth="400px"                     android:layout_width="wrap_content"                     android:layout_height="wrap_content" />               </TableRow>               <TableRow                 android:id="@+id/tableRow2"                 android:layout_width="wrap_content"                 android:layout_height="wrap_content" >                 <TextView                     android:id="@+id/textView2"                     android:textSize="20px"                     android:layout_width="wrap_content"                     android:layout_height="wrap_content"                     android:text="密碼:" />                   <EditText                     android:id="@+id/pwd"                     android:inputType="textPassword"                     android:layout_width="wrap_content"                     android:layout_height="wrap_content" />             </TableRow>               <TableRow                 android:id="@+id/tableRow3"                 android:layout_width="wrap_content"                 android:layout_height="wrap_content" >                 <TextView                     android:id="@+id/textView3"                     android:textSize="20px"                     android:layout_width="wrap_content"                     android:layout_height="wrap_content"                     android:text="確認密碼:" />                   <EditText                     android:id="@+id/repwd"                     android:inputType="textPassword"                     android:layout_width="wrap_content"                     android:layout_height="wrap_content" />             </TableRow>               <TableRow                 android:id="@+id/tableRow4"                 android:layout_width="wrap_content"                 android:layout_height="wrap_content" >                 <TextView                     android:id="@+id/textView4"                     android:textSize="20px"                     android:layout_width="wrap_content"                     android:layout_height="wrap_content"                     android:text="E-mail地址:" />                   <EditText                     android:id="@+id/email"                     android:layout_width="wrap_content"                     android:layout_height="wrap_content" />             </TableRow>         </TableLayout>       </LinearLayout>     <LinearLayout         android:id="@+id/linearLayout2"         android:orientation="vertical"         android:gravity="center_horizontal"         android:layout_width="wrap_content"         android:layout_weight="1"         android:layout_height="wrap_content" >           <ImageView             android:id="@+id/imageView1"             android:layout_width="158px"             android:layout_height="150px"             android:src="@drawable/ic_launcher" />           <Button             android:id="@+id/button1"             android:layout_width="wrap_content"             android:layout_height="wrap_content"             android:text="選擇頭像" />       </LinearLayout>   </LinearLayout>

然後是圖庫的頁面佈局,由用戶去選擇圖片,這裡我就用windows系統裡面的幾張照片

複製代碼
<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    android:layout_width="match_parent" android:layout_height="match_parent">

 

    <GridView

        android:layout_width="wrap_content"

        android:layout_height="match_parent"

        android:id="@+id/gridView"

        android:numColumns="4" />

</LinearLayout>
複製代碼

然後我們在註冊頁面的Activity寫入以下代碼:

複製代碼
Button button1=(Button)findViewById(R.id.button1);
        button1.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent intent = new Intent(MainActivity.this,HeadActivity.class);
                startActivityForResult(intent,0x11);
            }
        });

@Override onActivityResult方法:
    protected void onActivityResult(int requestCode,int resultCode,Intent data){
        super.onActivityResult(requestCode,resultCode,data);
        if(requestCode==0x11&&requestCode==0x11){
            Bundle bundle=data.getExtras();
            int imageId=bundle.getInt("imageId");
            ImageView imageView=(ImageView)findViewById(R.id.imageView1);
            imageView.setImageResource(imageId);
        }
    }
複製代碼

點擊按鈕跳轉到圖庫Activity頁面中。

在圖庫Activity裡面寫入以下代碼響應用戶點擊圖片並通過Intent傳遞給前一個Activity:

?
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 GridView gridView=(GridView)findViewById(R.id.gridView);         BaseAdapter adapter=new BaseAdapter() {             @Override             public int getCount() {                 return imageId.length;             }             @Override             public Object getItem(int position) {                 return position;             }             @Override             public long getItemId(int position) {                 return position;             }             @Override             public View getView(int position, View convertView, ViewGroup parent) {                 ImageView imageView;                 if(convertView==null){                     imageView=new ImageView(HeadActivity.this);                     imageView.setAdjustViewBounds(true);                     imageView.setMaxHeight(58);                     imageView.setMaxWidth(50);                     imageView.setPadding(5,5,5,5);                 }else{                     imageView=(ImageView)convertView;                 }                 imageView.setImageResource(imageId[position]);                 return imageView;             }         };         gridView.setAdapter(adapter);         gridView.setOnItemClickListener(new AdapterView.OnItemClickListener() {             @Override             public void onItemClick(AdapterView<?> parent, View view, int position, long id) {                 Intent intent=getIntent();                 Bundle bundle=new Bundle();                 bundle.putInt("imageId",imageId[position]);                 intent.putExtras(bundle);                 setResult(0x11,intent);                 finish();             }         });

結果如下:

 


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

-Advertisement-
Play Games
更多相關文章
  • getTIme()方法是把一個date對象轉成毫秒; parse方法是把一個時間格式的字元串轉換成毫秒; 1. date1=new Date("2002/1/1")date2=new Date("2002/1/2")alert(Date.parse(date1)<Date.parse(date2)) ...
  • 如果在AndroidManifest文件中將某個Content Provider的exported屬性設置為true,則多了一個攻擊該APP的攻擊點。如果此Content Provider的實現有問題,則可能產生任意數據訪問、SQL註入、目錄遍歷等風險。 ...
  • 升級SDK可用Background 多加了個按鈕,可用一邊寫代碼一邊下載SDK Instant Run 修改代碼一秒啟動 APK analyzer 分析任何的APK 查看APK下載包的大小,解壓後的實際大小 反編譯資源文件,甚至能還原layout中的資源id,還有,代碼,代碼,代碼,重要的事情說三遍 ...
  • 1 效果圖 2 xml文件 activity_pie_chart.xml 3 java文件 ...
  • Android中的控制項的使用方式和iOS中控制項的使用方式基本相同,都是事件驅動。給控制項添加事件也有介面回調和委托代理的方式。今天這篇博客就總結一下Android中常用的基本控制項以及佈局方式。說到佈局方式Android和iOS還是區別挺大的,在iOS中有Frame絕對佈局和AutoLayout相對佈局 ...
  • 1.效果圖 2.xml代碼 activity_column_chart.xml 3.java代碼 ...
  • 一,效果圖。 二,工程圖。 三,代碼。 RootViewController.h RootViewController.m ...
  • 做過的大大小小的 .NET Web 項目如下: (1)售樓系統產品 「Role: Team Member」 (2)中弘合同管理系統 「Role: Team Member」 (3)Gammon Portal 金門建築內部門戶 「Role: Team Leader」 (4)Hopewell Portal ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...