首页 > 其他分享 >【移动开发学习】 Android Studio 编写一个简单的微信界面

【移动开发学习】 Android Studio 编写一个简单的微信界面

时间:2023-10-15 15:55:42浏览次数:40  
标签:fragment 微信 public Studio tab Android View id view

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

标签:fragment,微信,public,Studio,tab,Android,View,id,view
From: https://www.cnblogs.com/smileex/p/AndroidStudy01.html

相关文章

  • Android WebView获取html源码
    通过执行js语句来获取valcode="""document.documentElement.outerHTML""".trimIndent()webview.evaluateJavascript(code){value->valhtmlContent=if(value==null){""}else{//这里需要处理下......
  • Android 语言国际化的思考
    在测试一个应用https://github.com/jd1378/otphelper,使用了虚拟机,然后在原生nexus上的系统设置里添加中文的时候,默认只有English,我输出Chin后就跳出来简体中文给我选中。在otphelper中,也是有语言可以选择的,然后我在搜索栏里输出Chinese,是搜索不到“简体中文”的,输入“中文......
  • Android Ble蓝牙App(五)数据操作
    Ble蓝牙App(五)数据操作前言目录正文一、操作内容处理二、读取数据①概念②实操三、写入数据①概念②实操四、打开通知一、概念二、实操三、收到数据五、源码前言  关于低功耗蓝牙的服务、特性、属性、描述符都已经讲清楚了,而下面就是使用这些知识进行数据的读取、写入、通知......
  • 微信小程序开发1
    index.wxml文件中:根据我们前面说的官方文档学习可以大概知道,这个文件里主要涉及到的是前端代码,所以这里就比较简单了,写上你要展示的前端代码就行:在微信页面中的视图容器<view>标签来写,这个标签相当于html页面中的<div>标签,我们看看官方文档介绍主要还是负责一些位置控制啥的,理解起......
  • Android Handler异步消息
    前言在Android中,经常会遇到线程间通信的场景,下面就说说Android中最重要的异步消息机制Handler异步消息机制HandlerHandler是Android中最重要的异步消息机制,总共由四部分组成:Handler,Message,MessageQueue,Looper1、主线程创建Handler对象(如果在子线程创建,必须保证调用了Looper.prepa......
  • 2023最新发布!三天吃透Android面试八股文,面试通过率暴涨!
    前言很多开发者都知道,现在的面试从头到尾都是比较有深度的技术问题,虽然那些问题看上去在网上都能查到相关的资料,但面试官基本都是根据你的回答持续深入,如果没有真正对技术原理和底层逻辑有一定的了解是无法通过的。如今,国内移动互联网的红利期已经过去,在Android领域找工作并不是一......
  • 使用Visual Studio自带的Git创建本地仓库 & 空格回车等无法使用
    发现最近调试代码的时候有可能为了解决一个bug,然后调着调着把原来的没问题的调出来bug了我们可以使用本地仓库来查看历史版本,方便从老版本里找到解决新bug的方式对于一个打开的项目,我们可以点击Git,然后创建Git仓库("如果没有的话可能得安装下Git")然后是“仅限本地”然后......
  • 盘点2023Android面试常考知识点(持续更新中.......)
    前言面试一线互联网公司的Android岗位,技术能力是首要标准。在这个互联网时代,技术更新迭代速度极快,我们需要不断学习提升自己来应对职场需求变化。在最近的面试过程中,我总结了一些中大厂面试中常考的一些核心知识点,这些知识点覆盖了Java基础、集合、多线程、虚拟机、反射、泛型、并......
  • Android开发中Button背景颜色不能修改问题及解决方法
      原创夏志1212022-10-0815:58:38博主文章分类:Android©著作权文章标签androidandroidstudioide开发语言服务器文章分类运维阅读数752 目录​ ​问题:​​​ ​问题原因:​​​ ​解决方法:​​        在Android中,Button是一种按钮组件,用户能够在......
  • 基于微信小程序的明星应援小程序设计与实现(源码+lw+部署文档+讲解等)
    (文章目录)前言:heartpulse:博主介绍:✌全网粉丝10W+,CSDN特邀作者、博客专家、CSDN新星计划导师、全栈领域优质创作者,博客之星、掘金/华为云/阿里云/InfoQ等平台优质作者、专注于Java、小程序技术领域和毕业项目实战✌:heartpulse:......