安卓開發筆記(三十三):Android仿寫微信發現

来源:https://www.cnblogs.com/geeksongs/archive/2019/05/07/10824454.html
-Advertisement-
Play Games

首先我們來看看仿寫之後的效果: 看到是這個界面我們首先應該思考這些按鈕是怎麼做出來的?有了一個整體的思路之後才知道該怎麼辦。最開始我想的就直接利用button控制項上面直接加上png的圖片就可以形成一個按鈕了,但當我加入圖片之後,發現因為圖片太大導致一個按鈕都會占據一個屏幕一半的空間,實在是得不償失, ...


首先我們來看看仿寫之後的效果:

看到是這個界面我們首先應該思考這些按鈕是怎麼做出來的?有了一個整體的思路之後才知道該怎麼辦。最開始我想的就直接利用button控制項上面直接加上png的圖片就可以形成一個按鈕了,但當我加入圖片之後,發現因為圖片太大導致一個按鈕都會占據一個屏幕一半的空間,實在是得不償失,根本無法使用。如果直接利用button在上面添加圖片,是不能夠改變我們加入圖片的大小的,雖然這是最簡單的方法,但是缺陷比較多,如果實在先使用這種方法就必須自己將png圖片的大小變小,但作為一個程式員還是算了。之後我又想到了自定義view,但是這個方法太麻煩了,對Java的要求較高,因此才考慮到了這裡的第三種方法:將每一個按鈕寫成一個linearlayout,並將每一個線性佈局設定成可以被監聽的模式,這樣就可以完全當一個按鈕來使用了,還可以為它設定選擇器,也就是我們的selector,最後的效果和我們的button一樣,點擊之後也會發生顏色的改變(白色變成灰色)。

  我們仔細觀察,每兩個按鈕之間還會有一條很細的線,這條線則直接可以使用textview控制項來進行填充、利用backgroud屬性就可以設定textview的背景顏色,裡面沒有文字也沒有任何關係,但是需要將textview的高度設定成0.5或者1dp。這樣大體的思路就有了,還需要註意一點的是我們在進行UI佈局的時候儘可能利用include進行佈局,這樣才會讓其他程式員能夠很好地進行理解。下麵我們分別來看看include的佈局以及我們的主界面的佈局。

一.首頁標題欄

首頁標題欄我就直接使用了一個相對佈局,後面引用兩個imageview,為了效果的展示。如果真要將這兩個圖標設定為可以監聽的話,可以直接將這個控制項更改為imagebutton,並給它設定一個響應的id即可。不需要做過多的修改。這個佈局我們會通過include直接引入到我們的主界面當中。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="60dp"
    android:orientation="vertical"
    android:background="#C0C0C0"
    android:padding="10dp">

    <TextView
        android:id="@+id/top_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:text="發現"
        android:textSize="15sp"
        />

    <ImageView
        android:layout_alignParentBottom="true"
        android:id="@+id/top_r"
        android:layout_width="17dp"
        android:layout_height="17dp"
        android:src="@drawable/sousuo"
        android:layout_centerVertical="true"
        android:layout_toLeftOf="@+id/top_left"
        android:layout_marginRight="29dp"
        />

    <ImageView
        android:layout_alignParentBottom="true"
        android:id="@+id/top_left"
        android:layout_width="17dp"
        android:layout_height="17dp"
        android:src="@drawable/tianjia"
        android:layout_centerVertical="true"
        android:layout_alignParentRight="true"/>




</RelativeLayout>

二.主界面代碼

這部分代碼你就可以清晰地看到我的思路了,凡是每兩個連在一起的控制項的第一個自定義的按鈕,我都使用了引入佈局的方式,第二個按鈕則直接寫在了主界面之上。具體原因是因為只有第一個按鈕為引入,而不是在主界面上直接編寫,這樣兩個按鈕才會連在一起,不然就會分開,達不到仿寫的效果。如果您有更好的辦法來解決這個問題的話,本人感激不盡。

<?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:orientation="vertical"
    android:background="#C0C0C0"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <include
        layout="@layout/view_yop"
        android:id="@+id/great"
        >
    </include>
    <LinearLayout
        android:background="#ffffff"
        android:id="@+id/gj_recruit"
        android:layout_width="match_parent"
        android:layout_height="50dip"
        android:layout_marginBottom="17dip"
        android:focusableInTouchMode="true"
        android:clickable="true"
        android:orientation="horizontal"
        android:padding="7dip">
        <ImageView
            android:layout_gravity="center"
            android:layout_width="20dp"
            android:layout_height="20dp"
            android:background="@drawable/pengyou"/>
        <TextView
            android:textSize="15sp"
            android:layout_marginLeft="10dp"
            android:layout_gravity="center"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="朋友圈"/>




</LinearLayout>
    <include
        layout="@layout/saoyisao"
        android:id="@+id/great"
        >

    </include>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="0.5dp"
        android:background="#C0C0C0"/>
    <LinearLayout
        android:background="#ffffff"
        android:id="@+id/gj_recruit2"
        android:layout_width="match_parent"
        android:layout_height="50dip"
        android:layout_marginBottom="17dip"
        android:focusableInTouchMode="true"
        android:clickable="true"
        android:orientation="horizontal"
        android:padding="7dip">
        <ImageView
            android:layout_gravity="center"
            android:layout_width="20dp"
            android:layout_height="20dp"
            android:background="@drawable/yaoyi"/>
        <TextView
            android:textSize="15sp"
            android:layout_marginLeft="10dp"
            android:layout_gravity="center"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="搖一搖"/>




    </LinearLayout>

    <TextView
        android:layout_width="match_parent"
        android:layout_height="0.5dp"
        android:background="#C0C0C0"/>

    <include layout="@layout/kanyikan"

        >

    </include>

    <LinearLayout
    android:background="#ffffff"
    android:id="@+id/gj_recruit3"
    android:layout_width="match_parent"
    android:layout_height="50dip"
    android:layout_marginBottom="17dip"
    android:focusableInTouchMode="true"
    android:clickable="true"
    android:orientation="horizontal"
    android:padding="7dip">
    <ImageView
        android:layout_gravity="center"
        android:layout_width="20dp"
        android:layout_height="20dp"
        android:background="@drawable/souyisou"/>
    <TextView
        android:textSize="15sp"
        android:layout_marginLeft="10dp"
        android:layout_gravity="center"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="搜一搜"/>




</LinearLayout>
    <LinearLayout
        android:background="#ffffff"
        android:id="@+id/gj_recruit4"
        android:layout_width="match_parent"
        android:layout_height="50dip"
        android:layout_marginBottom="17dip"
        android:focusableInTouchMode="true"
        android:clickable="true"
        android:orientation="horizontal"
        android:padding="7dip">
        <ImageView
            android:layout_gravity="center"
            android:layout_width="20dp"
            android:layout_height="20dp"
            android:background="@drawable/fujin"/>
        <TextView
            android:textSize="15sp"
            android:layout_marginLeft="10dp"
            android:layout_gravity="center"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="附近的人"/>

    </LinearLayout>

    <include
        layout="@layout/gouwu"

        >

    </include>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="0.5dp"
        android:background="#C0C0C0"/>
    <LinearLayout
        android:background="#ffffff"
        android:id="@+id/gj_recruit5"
        android:layout_width="match_parent"
        android:layout_height="50dip"
        android:layout_marginBottom="17dip"
        android:focusableInTouchMode="true"
        android:clickable="true"
        android:orientation="horizontal"
        android:padding="7dip">
        <ImageView
            android:layout_gravity="center"
            android:layout_width="20dp"
            android:layout_height="20dp"
            android:background="@drawable/youxi"/>
        <TextView
            android:textSize="15sp"
            android:layout_marginLeft="10dp"
            android:layout_gravity="center"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="游戲"/>

    </LinearLayout>

    <LinearLayout
        android:background="#ffffff"
        android:id="@+id/gj_recruit9"
        android:layout_width="match_parent"
        android:layout_height="50dip"
        android:layout_marginBottom="17dip"
        android:focusableInTouchMode="true"
        android:clickable="true"
        android:orientation="horizontal"
        android:padding="7dip">
        <ImageView
            android:layout_gravity="center"
            android:layout_width="20dp"
            android:layout_height="20dp"
            android:background="@drawable/xiaochengxu"/>
        <TextView
            android:textSize="15sp"
            android:layout_marginLeft="10dp"
            android:layout_gravity="center"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="小程式"/>

    </LinearLayout>

    </LinearLayout>

我們可以清晰地看到這個項目所include的id組件有哪些,下麵我們就分別展示下各個id所對應引入的佈局。

三.gouwu.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/kan"
    android:layout_width="match_parent"
    android:layout_height="45dp"
    android:orientation="vertical"
    android:background="#ffffff"
    android:padding="10dp">
    <ImageView
        android:id="@+id/top_r"
        android:layout_width="17dp"
        android:layout_height="17dp"
        android:src="@drawable/gouwu"
        android:layout_centerVertical="true"

        />
    <TextView
        android:id="@+id/top_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_toRightOf="@+id/top_r"
        android:layout_marginLeft="10dp"
        android:text="購物"
        android:textSize="15sp"
        />

</RelativeLayout>

四.kanyikan.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/kan"
    android:layout_width="match_parent"
    android:layout_height="45dp"
    android:orientation="vertical"
    android:background="#ffffff"
    android:padding="10dp">
    <ImageView
        android:id="@+id/top_r"
        android:layout_width="17dp"
        android:layout_height="17dp"
        android:src="@drawable/kanyikan"
        android:layout_centerVertical="true"

        />
    <TextView
        android:id="@+id/top_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_toRightOf="@+id/top_r"
        android:layout_marginLeft="10dp"
        android:text="看一看"
        android:textSize="15sp"
        />

</RelativeLayout>

五.saoyisao.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/saoa"
    android:layout_width="match_parent"
    android:layout_height="45dp"
    android:orientation="vertical"
    android:background="#ffffff"
    android:padding="10dp">
    <ImageView
        android:id="@+id/top_r"
        android:layout_width="17dp"
        android:layout_height="17dp"
        android:src="@drawable/saoyisao"
        android:layout_centerVertical="true"

        />
    <TextView
        android:id="@+id/top_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_toRightOf="@+id/top_r"
        android:layout_marginLeft="10dp"
        android:text="掃一掃"
        android:textSize="15sp"
        />
</RelativeLayout>

 

這樣我們的界面編寫總算是完成了,唯一博客里沒有講的就是這些png圖片哪裡來的了,如果大家對這個很感興趣的話,可以在這篇博文當中看看那些png圖片是怎麼來的。

https://www.cnblogs.com/geeksongs/p/10769365.html

如果您有更好的方法,也可以找我聊聊


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

-Advertisement-
Play Games
更多相關文章
  • 函數 描述 NOW() 返回當前的日期和時間 CURDATE() 返回當前的日期 CURTIME() 返回當前的時間 DATE() 提取日期或日期/時間表達式的日期部分 EXTRACT() 返回日期/時間按的單獨部分 DATE_ADD() 給日期添加指定的時間間隔 DATE_SUB() 從日期減去指 ...
  • 一、下載MySQL 官網下載地址 https://dev.mysql.com/downloads/windows/installer/8.0.html 下載第二個即可(雖然只有32位的 但是會同時安裝32 64位的文件) 二、安裝MySQL 1、打開下載好的mysql-installer-commu ...
  • 備份 破壞數據 drop table oldboy.test; 恢復 啟動資料庫 binlog恢復 python 查看最後一次增備的binlog文件及位置 cat /backup/inc2/xtrabackup_binlog_info mysql bin.000001 554 其它數據需要binlo ...
  • 一、什麼是MVP MVP:全稱 Model View Presenter。 MVP框架由3部分組成:View層負責顯示,Presenter層負責邏輯處理,Model層提供數據。 View:負責繪製UI元素、與用戶進行交互(在Android中體現為Activity,Fragment) Model:負責 ...
  • 版權聲明:本文為xing_star原創文章,轉載請註明出處! 本文同步自http://javaexception.com/archives/82 背景: 做了很多年的app開發,貌似沒見過沒有搜索功能的,搜索這個功能還真是挺常見的,一般包括本地搜索,比如筆記類的,有道雲筆記,或者Leanote,或者 ...
  • 跳轉app對應的系統通知設置 if (UIApplicationOpenSettingsURLString != NULL) { UIApplication *application = [UIApplication sharedApplication]; NSURL *URL = [NSURL U ...
  • 全志R311是一種功能強大的處理器,具有四核CortexTM-A7 CPU,工作頻率可達1.8GHz。它還集成了Mali-400雙核gpu,H.265 1080p@60fps視頻解碼器,H.264 1080p@60fps編碼器,13MP攝像機ISP,Trustzone等。為了提供更好的架構可擴展性, ...
  • Mixin Messenger 早期採用 FMDB 後來切換至 WCDB 沿用至今,一直比較可靠穩定,這裡分享一下使用心得和功能擴展。 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...