【移動開發學習】 Android Studio 編寫一個簡單的微信界面

来源:https://www.cnblogs.com/smileex/archive/2023/10/15/AndroidStudy01.html
-Advertisement-
Play Games

Android Studio簡單還原微信ui 目標 實現3-4個tab的切換效果 技術需求 activity, xdm, fragment, recyclerview 成果展示 其中聯繫人界面通過recyclerview實現了可以滑動列表 倉庫地址 https://github.com/SmileE ...


Android Studio簡單還原微信ui 目標   實現3-4個tab的切換效果 技術需求   activity, xdm, fragment, recyclerview 成果展示   其中聯繫人界面通過recyclerview實現了可以滑動列表         倉庫地址 https://github.com/SmileEX/wecaht.git
實現過程 主要ui   第一步我們首先把微信的ui主體做出來,即這三個部分                                             因為中間是動態界面我們先不用寫完,把上下兩個xml編寫完之後就可以創建一個mainlayout.xml將他們拼起來
 1 <?xml version="1.0" encoding="utf-8"?>
 2 <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     xmlns:app="http://schemas.android.com/apk/res-auto"
 4     xmlns:tools="http://schemas.android.com/tools"
 5     android:layout_width="match_parent"
 6     android:layout_height="match_parent">
 7 
 8     <include
 9         layout="@layout/top"
10         android:id="@+id/topLayout"
11         android:layout_width="match_parent"
12         android:layout_height="wrap_content"
13         app:layout_constraintTop_toTopOf="parent"
14         app:layout_constraintStart_toStartOf="parent"
15         app:layout_constraintEnd_toEndOf="parent"/>
16 
17     <androidx.fragment.app.FragmentContainerView
18         android:id="@+id/fragmentContainerView"
19         android:layout_width="0dp"
20         android:layout_height="0dp"
21         app:layout_constraintBottom_toTopOf="@+id/bottomLayout"
22         app:layout_constraintEnd_toEndOf="parent"
23         app:layout_constraintHorizontal_bias="0.496"
24         app:layout_constraintStart_toStartOf="parent"
25         app:layout_constraintTop_toBottomOf="@+id/topLayout"
26         app:layout_constraintVertical_bias="0.448" />
27 
28     <include
29         android:id="@+id/bottomLayout"
30         app:layout_constraintBottom_toBottomOf="parent"
31         app:layout_constraintEnd_toEndOf="parent"
32         app:layout_constraintStart_toStartOf="parent"
33         layout="@layout/bottom"
34         android:layout_width="0dp"
35         android:layout_height="wrap_content" />
36 
37 </androidx.constraintlayout.widget.ConstraintLayout>

  然後我們再來編寫其中的fragment,就目前學習進度而言,只需要做到中間頁面可以互相切換fragment即可,不需要對內容進行細節補充

所以在編寫完一個之後另外三個直接cv即可。每一個fragment.xml對應一個fragment.java。

  下麵是一個fragment.java和fragment.xml

package com.example.test;

import android.os.Bundle;

import androidx.fragment.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

/**
 * A simple {@link Fragment} subclass.
 * Use the {@link Fragment1# newInstance} factory method to
 * create an instance of this fragment.
 */
public class Fragment1 extends Fragment {

    // TODO: Rename parameter arguments, choose names that match
    // the fragment initialization parameters, e.g. ARG_ITEM_NUMBER
    private static final String ARG_PARAM1 = "param1";
    private static final String ARG_PARAM2 = "param2";

    // TODO: Rename and change types of parameters
    private String mParam1;
    private String mParam2;

    public Fragment1() {
        // Required empty public constructor
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        // Inflate the layout for this fragment
        return inflater.inflate(R.layout.fragment1, container, false);
    }
}
View Code
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".Fragment1">

    <!-- TODO: Update blank fragment layout -->
    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center"
        android:text="這是聊天界面"
        android:textSize="35sp" />

</FrameLayout>

  現在我們來將其中一個fragment改進一下來讓它有更多的細節,這裡我把“聯繫人”界面進行了細節擴充,在其中加入了一些小說人物的頭像以及他們的姓名,看起來就像微信里的聯繫人界面

  首先在layout中在添加一個xml文件用來使用recyclerview,我將其命名為activity_recycler_view.xml,代碼如下

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/recyclerview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

</androidx.constraintlayout.widget.ConstraintLayout>

 


   目前我們已經做出了雛形,但是每個主頁都是空白並沒有內容,接下來將其中一個頁面填充一點細節

  為了實現如圖的頭像+名字的這種結構,我們還需要創建一個xml來簡單地編寫一個規範

                                                         

<?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="wrap_content"
    android:background="@android:color/darker_gray"
    android:layout_margin="8dp"
    android:orientation="horizontal">

<!-- 這個是頭像 -->
    <ImageView
        android:id="@+id/tv_img"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:textSize="30sp" />

    <TextView
        android:id="@+id/tv_content"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="內容"
        android:textSize="30sp" />
</LinearLayout>

  在ImageView中我們不用給出圖片的路徑,因為我們會在java文件中動態的設置他們

  接下來創建一個RecyclerViewAdapter.java, 在Android中,RecyclerView是一個更強大和靈活的列表視圖組件,用於顯示大量數據,並支持動態添加、刪除和刷新數據。

  適配器(Adapter)負責將數據綁定到RecyclerView上。

  定義RecyclerViewAdapter

  這個類繼承自RecyclerView.Adapter,它是用來將數據源(在這裡是mListmSrc)與RecyclerView控制項進行綁定的。這個構造函數接受三個參數:context(上下文對象)、src(包含圖片資源的列表)、和list(包含文本數據的列表)

1 public class RecyclerViewAdapter extends RecyclerView.Adapter<RecyclerViewAdapter.Myviewholder> {
2     private List<String> mList;
3     private List<Integer> mSrc;
4     private Context context;
5     public RecyclerViewAdapter(Context context, List<Integer> src, List<String> list) {
6         this.mSrc = src;
7         this.mList = list;
8         this.context=context;
9     }

  實現onCreateViewHolder方法

  onCreateViewHolder方法負責創建並返回新的ViewHolder對象,它通過LayoutInflater將定義在R.layout.item中的佈局實例化為一個View對象,並將其傳遞給Myviewholder類的構造函數

1    @NonNull
2     @Override
3     public Myviewholder onCreateViewHolder(@NonNull ViewGroup parent, int viewType){
4         View view=(View)LayoutInflater.from(parent.getContext()).inflate(R.layout.item,parent,false);
5         Myviewholder myviewholder=new Myviewholder((view));
6         return myviewholder;
7     }

  實現onBindViewHolder方法:

   onBindViewHolder方法用於將數據綁定到ViewHolder上,這裡根據position參數獲取對應位置的圖片資源和文本數據,並設置到ViewHolder中的ImageViewTextView

1 @Override
2     public void onBindViewHolder(@NonNull Myviewholder holder, int position) {
3         holder.tvimg.setImageResource(mSrc.get(position));
4         holder.tvContent.setText(mList.get(position));
5         position++;
6     }

  實現getItemCount方法:

 getItemCount方法返回數據源的大小,告訴RecyclerView有多少個數據需要顯示

1 @Override
2     public int getItemCount() {
3         return mList.size();
4     }

  定義Myviewholder內部類:

  這個內部類繼承自RecyclerView.ViewHolder,它持有itemView的子視圖的引用。在構造函數中,通過itemView.findViewById方法獲取了R.id.tv_imgR.id.tv_content對應的ImageViewTextView對象

1 public class Myviewholder extends RecyclerView.ViewHolder{
2         TextView tvContent;
3         ImageView tvimg;
4         public Myviewholder(@NonNull View itemView) {
5             super(itemView);
6             tvimg=itemView.findViewById((R.id.tv_img));
7             tvContent=itemView.findViewById(R.id.tv_content);
8         }
9     }

  然後創建一個fragment來初始化一些數據並用我們上面自定義的adapter來顯示我們的列表數據

 1 public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState){
 2         View view= inflater.inflate(R.layout.activity_recycler_view, container, false);
 3         context = view.getContext();
 4         InitData();
 5         RecyclerView recyclerView = view.findViewById(R.id.recyclerview);
 6         RecyclerViewAdapter adapter = new RecyclerViewAdapter(context, mSrc, mList);
 7         recyclerView.setAdapter(adapter);
 8         LinearLayoutManager manager = new LinearLayoutManager(context);
 9         manager.setOrientation(LinearLayoutManager.VERTICAL);
10         recyclerView.setLayoutManager(manager);
11         recyclerView.addItemDecoration(new DividerItemDecoration(context,LinearLayoutManager.VERTICAL ));
12         return view;
13     }

  最後編寫MainActivity.java來完成界面轉換,底部按鈕變化等邏輯

  1 package com.example.test;
  2 
  3 import androidx.appcompat.app.AppCompatActivity;
  4 import androidx.fragment.app.Fragment;
  5 import androidx.fragment.app.FragmentManager;
  6 
  7 import android.view.View;
  8 import android.os.Bundle;
  9 import android.widget.LinearLayout;
 10 import android.widget.ImageButton;
 11 
 12 
 13 public class MainActivity extends AppCompatActivity implements View.OnClickListener {
 14     private LinearLayout linearLayout1, linearLayout2, linearLayout3, linearLayout4;
 15     Fragment fragment1,fragment2,fragment3,fragment4;
 16     ImageButton img1, img2, img3, img4;
 17     FragmentManager manager;
 18     int transaction;
 19 
 20     @Override
 21     protected void onCreate(Bundle savedInstanceState) {
 22         super.onCreate(savedInstanceState);
 23         setContentView(R.layout.mainlayout);
 24 
 25         linearLayout1 = findViewById(R.id.chat);
 26         linearLayout2 = findViewById(R.id.people);
 27         linearLayout3 = findViewById(R.id.moment);
 28         linearLayout4 = findViewById(R.id.settings);
 29 
 30         //這些圖片參數用來實現被點擊是底部tab圖標的變化
 31         img1 = findViewById(R.id.button1);
 32         img2 = findViewById(R.id.button2);
 33         img3 = findViewById(R.id.button3);
 34         img4 = findViewById(R.id.button4);
 35 
 36         manager = getSupportFragmentManager();
 37 
 38         fragment1 = new Fragment1();
 39         fragment2 = new settingFragment();
 40         fragment3 = new Fragment3();
 41         fragment4 = new Fragment4();
 42 
 43         inital();
 44         fragmentHide();
 45         showfragment(fragment1);
 46         img1.setImageResource(R.drawable.tab_weixin_pressed);
 47 
 48         linearLayout1.setOnClickListener(this);
 49         linearLayout2.setOnClickListener(this);
 50         linearLayout3.setOnClickListener(this);
 51         linearLayout4.setOnClickListener(this);
 52     }
 53 
 54     public void onClick(View view) {
 55         /*
 56             每次遇到點擊事件時,首先消除以前操作留下的fragmen和imagebutton
 57             然後在修改對應的img和fragment
 58         */
 59         fragmentHide();
 60         if (view.getId() == R.id.chat) {
 61             showfragment(fragment1);
 62             img1.setImageResource(R.drawable.tab_weixin_pressed);
 63         } else if (view.getId() == R.id.people) {
 64             showfragment(fragment2);
 65             img2.setImageResource(R.drawable.tab_address_pressed);
 66         } else if (view.getId() == R.id.moment) {
 67             showfragment(fragment3);
 68             img3.setImageResource(R.drawable.tab_find_frd_pressed);
 69         } else if (view.getId() == R.id.settings) {
 70             showfragment(fragment4);
 71             img4.setImageResource(R.drawable.tab_settings_pressed);
 72         }
 73     }
 74 
 75     private void showfragment(Fragment fragment) {
 76         transaction=manager.beginTransaction()
 77                 .show(fragment)
 78                 .commit();
 79     }
 80 
 81     //初始化容器內的元素
 82     public void inital(){
 83         transaction=manager.beginTransaction()
 84                 .add(R.id.fragmentContainerView,fragment1)
 85                 .add(R.id.fragmentContainerView,fragment2)
 86                 .add(R.id.fragmentContainerView,fragment3)
 87                 .add(R.id.fragmentContainerView,fragment4)
 88                 .commit();
 89     }
 90 
 91     //初始化ui顯示,每次程式啟動時自動打開第一個fragment,並且點亮第一個icon
 92     public void fragmentHide(){
 93         img1.setImageResource(R.drawable.tab_weixin_normal);
 94         img2.setImageResource(R.drawable.tab_address_normal);
 95         img3.setImageResource(R.drawable.tab_find_frd_normal);
 96         img4.setImageResource(R.drawable.tab_settings_normal);
 97         transaction=manager.beginTransaction()
 98                 .hide(fragment1)
 99                 .hide(fragment2)
100                 .hide(fragment3)
101                 .hide(fragment4)
102                 .commit();
103     }
104 }

  在這段代碼中,linearLayout1, linearLayout2, linearLayout3, linearLayout4,這些變數會檢測用戶是否點擊,一旦出現點擊事件,程式便會根據點擊的實際情況來改變mainlayout(onclick方法)中androidx.fragment.app.FragmentContainerView的元素,以達到界面互相切換的目的,同時imagebutton變數也會根據點擊來變化(onclick方法),當某個tab處於激活狀態是,該tab對應的按鈕就會自動

亮起,其他按鈕熄滅。

 

開源地址 https://github.com/SmileEX/wecaht.git
您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 自從開始搞YouTube中文配音以來,我們一直是7*24小時,夜以繼日的在批量處理一些優質的學習資源,一方面是翻譯,另一方面是配音。這樣用戶在打開的時候,就能獲得經過我們優化的翻譯和配音了。 這次我們剛剛處理完一個油管上非常火爆的​IT類學習頻道:Edureka。 該頻道內全是IT行業的免費學習視頻 ...
  • math庫常用函數+產生隨機數總結 1.對x開平方 double sqrt(x);//返回值為double類型,輸入的x類型隨意,只要是數的類型 2.求常數e的x次方 double exp(x);//返回值為double類型,輸入的x類型隨意,只要是數的類型 3.求x的y次方 double pow( ...
  • TLS雙向認證的基本原理及示意流程圖,幫助更好的理解TLS的加密功能,及安全能力,此外還給出了部分源碼的實現及Token實現在的方案及能力 ...
  • 在我們WPF應用端的時候,和WInform開發或者Vue前端開發一樣,有時候也需要對內容進行轉義處理,如把一些0,1數值轉換為具體含義的文本信息,或者把一些布爾變數轉換為是否等,都是常見的轉換處理,本篇隨筆介紹在WPF應用端對內容使用Converter類實現內容的轉義處理的操作。 ...
  • 目錄構建riscv64-unknown-linux-musl編譯工具鏈直接下載官方工具鏈嘗試自己編譯T-head Gcc下載編譯binutils編譯交叉gcc編譯musl手動合成fip.bin和boot.sd編譯u-boot生成cvi_board_memmap.h,cvipart.h和imgs.h繼 ...
  • 前面介紹了 XN297LBW, 順帶再介紹一個非常類似的型號 XL2400, 生產商是深圳芯嶺技術, 同時市面上還有一個 WL2400, 從數據手冊看和 XL2400 是一模一樣的. XL2400 和XN297LBW 一樣都是 SOP8 封裝的2.4GHz頻段無線收發晶元, 但是零售價格更便宜, 在... ...
  • 本 PostgreSQL 教程可幫助您快速瞭解 PostgreSQL。您將通過許多實際示例快速掌握 PostgreSQL,並將這些知識應用於使用 PostgreSQL 開發應用程式。 如果你是 … 尋求快速學習 PostgreSQL。 使用 PostgreSQL 作為後端資料庫管理系統開發應用程式。 ...
  • 在這篇文章中,我們將揭示Redis集群的擴容和縮容操作,讓您的Redis集群發揮最佳性能和可伸縮性。通過增加主節點和從節點,並將它們無縫添加到集群中,您將能夠輕鬆擴展您的Redis集群以滿足不斷增長的需求。同時,我們還將探討如何進行縮容操作,即刪除節點,以優化集群資源的利用。無論您是初學者還是經驗豐... ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...