当前位置:   article > 正文

安卓开发——微信UI界面_android微信界面布局

android微信界面布局

一、功能说明

本次作业开发的是类似微信的主页面框架,UI布局为上中下结构,用户可通过点击底部导航栏切换板块内容,其中共包含四个板块,分别是“微信”、“通讯录”、“发现”和“我的”。

二、设计流程

2.1 页面设计

微信的界面布局分为上中下三个部分。

(1)第一部分,主要是显示界面的标题。

(2)第二部分,主要是“微信”、“通讯录”、“发现”和“我的”四个板块的具体内容。

(3)第三部分,主要是“微信”、“通讯录”、“发现”和“我的”四个板块的切换控件。

2.2 功能设计

实现点击底部控件切换到对应的板块界面。

(1)创建Fragment类及其对应的layout文件

(2)创建FragmentManager管理Fragment,以及FragmentTransaction

(3)设置监听

(4)设置控件被点击后的响应事件

三、核心代码详解

3.1 界面布局代码

3.1.1 总体布局 activity_main.xml

  1. ·<!--界面顶部-->
  2. <include layout="@layout/top"></include>
  3. <!--界面中部-->
  4. <FrameLayout
  5. android:id="@+id/content"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent"
  8. android:layout_weight="1"></FrameLayout>
  9. <!--界面底部-->
  10. <include layout="@layout/bottom"></include>

<include>标签可以实现在一个layout文件中引用另一个layout文件的布局

此处则是在activity_main.xml文件中引入了top.xml文件和bottom.xml文件的布局

FrameLayout中设置属性layout_weight=1可将FrameLayout填满界面中除了top和bottom的中间部分。

3.1.2 界面顶部 top.xml

  1. <TextView
  2. android:id="@+id/top_title"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"
  5. android:layout_weight="1"
  6. android:gravity="center"
  7. android:text="微信"
  8. android:textSize="40sp" />

3.1.3 界面中部

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. tools:context=".Fragmentxx">
  7. <TextView
  8. android:id="@+id/content1"
  9. android:layout_width="match_parent"
  10. android:layout_height="match_parent"
  11. android:layout_weight="1"
  12. android:gravity="center"
  13. android:text="这是消息界面"
  14. android:textSize="50sp" />
  15. </FrameLayout>

该部分的布局文件共有四个,分别是fra_xx.xml、fra_lx.xml、fra_fx.xml、fra_wd.xml

代码大致相同,只需修改对应的Fragment类和组件id即可

3.1.4 界面底部 bottom.xml

  1. <LinearLayout
  2. android:id="@+id/l_xiaoxi"
  3. android:layout_width="wrap_content"
  4. android:layout_height="wrap_content"
  5. android:layout_weight="1"
  6. android:orientation="vertical"
  7. android:layout_marginTop="15dp">
  8. <ImageView
  9. android:id="@+id/image_xiaoxi"
  10. android:layout_width="wrap_content"
  11. android:layout_height="60dp"
  12. app:srcCompat="@drawable/xiaoxi" />
  13. <TextView
  14. android:id="@+id/text_xiaoxi"
  15. android:layout_width="match_parent"
  16. android:layout_height="wrap_content"
  17. android:gravity="center"
  18. android:text="微信"
  19. android:textSize="30sp" />
  20. </LinearLayout>

 界面底部的布局稍微复杂一点,布局解释如下:

(1)最外层是一个水平的LinearLayout,使得放在里面的组件可水平放置

(2)第二层是四个垂直的LinearLayout,使得放在里面的组件可垂直放置,并且通过layout_weight将此四个LinearLayout组件均分其父布局,即每个组件占父布局的1/4。

(3)对于(2)中的每个LinearLayout都有一个ImageView和TextView,详细代码如上。

另外,ImageView组件所使用的图片需存放在/res/drawable文件夹中。

 

3.2 点击按钮跳转板块功能代码

Fragmentxx、Fragmentlx、Fragmentfx和Fragmentwd类的主要代码:

  1. public class Fragmentxx extends Fragment {
  2. @Override
  3. public View onCreateView(LayoutInflater inflater, ViewGroup container,
  4. Bundle savedInstanceState) {
  5. // Inflate the layout for this fragment
  6. return inflater.inflate(R.layout.fra_xx, container, false);
  7. }
  8. }

 Fragmentlx、Fragmentfx和Fragmentwd与上述部分的代码基本一致,主要区别在于R.layout._____  部分需对应其对应的layout文件

MainActivity类的主要代码:

 FragmentManager

  1. FragmentManager manager;
  2. manager=getSupportFragmentManager();

Fragment对象

  1. Fragment fragment1,fragment2,fragment3,fragment4;
  2. fragment1=new Fragmentxx();
  3. fragment2=new Fragmentlx();
  4. fragment3=new Fragmentfx();
  5. fragment4=new Fragmentwd();

 LinearLayout对象,对应的id是bottom.xml文件中的第二层LinearLayout的id

  1. LinearLayout linearLayout1,linearLayout2,linearLayout3,linearLayout4;
  2. linearLayout1=findViewById(R.id.l_xiaoxi);
  3. linearLayout2=findViewById(R.id.l_lianxi);
  4. linearLayout3=findViewById(R.id.l_faxian);
  5. linearLayout4=findViewById(R.id.l_wode);

Transaction对象

  1. FragmentTransaction transaction;
  2. //初始化,将所有fragment都添加到界面中部板块
  3. //对应的id是activity_main.xml中的Fragment的id
  4. public void inital(){
  5. transaction=manager.beginTransaction()
  6. .add(R.id.content,fragment1)
  7. .add(R.id.content,fragment2)
  8. .add(R.id.content,fragment3)
  9. .add(R.id.content,fragment4);
  10. transaction.commit();
  11. }
  12. //将所有的fragment隐藏起来
  13. public void fragmentHide(){
  14. transaction=manager.beginTransaction()
  15. .hide(fragment1)
  16. .hide(fragment2)
  17. .hide(fragment3)
  18. .hide(fragment4);
  19. transaction.commit();
  20. }
  21. //将指定的fragment进行展示
  22. public void fragmentShow(Fragment fragment){
  23. transaction=manager.beginTransaction().show(fragment);
  24. transaction.commit();
  25. }

从上述代码中可以看到最终四个板块的布局文件时如何添加到主布局中间的空板块的:

(1)首先通过Fragmentxx类绑定板块对应的布局文件fra_xx.xml;

(2)然后在MainActivity类中创建Fragmentxx对象;

(3)最后通过Transaction将Fragmentxx对象添加到主布局中间的空板块。

 图片和文字颜色的改变

  1. //定义组件对应的变量
  2. TextView t1,t2,t3,t4;
  3. ImageView im1,im2,im3,im4;
  4. t1=findViewById(R.id.text_xiaoxi);
  5. t2=findViewById(R.id.text_lianxi);
  6. t3=findViewById(R.id.text_faxian);
  7. t4=findViewById(R.id.text_wode);
  8. im1=findViewById(R.id.image_xiaoxi);
  9. im2=findViewById(R.id.image_lianxi);
  10. im3=findViewById(R.id.image_faxian);
  11. im4=findViewById(R.id.image_wode);
  1. //将指定图片和文字设置为灰色
  2. public void defaultImagendText(){
  3. im1.setImageResource(R.drawable.xiaoxi);
  4. im2.setImageResource(R.drawable.lianxi);
  5. im3.setImageResource(R.drawable.faxian);
  6. im4.setImageResource(R.drawable.wode);
  7. t1.setTextColor(Color.parseColor("#8a8a8a"));
  8. t2.setTextColor(Color.parseColor("#8a8a8a"));
  9. t3.setTextColor(Color.parseColor("#8a8a8a"));
  10. t4.setTextColor(Color.parseColor("#8a8a8a"));
  11. }

 监听设置如下:

public class MainActivity extends AppCompatActivity implements View.OnClickListener
  1. linearLayout1.setOnClickListener(this);
  2. linearLayout2.setOnClickListener(this);
  3. linearLayout3.setOnClickListener(this);
  4. linearLayout4.setOnClickListener(this);

 点击按钮后的响应事件,响应逻辑如下:

(1)点击后,先将所有图片和文字变成灰色,中间板块的内容也进行隐藏

(2)通过监听获取组件id

(3)根据获取得到的id,展示对应的板块,并且被点击的图片和文字颜色变绿

  1. public void onClick(View v) {
  2. fragmentHide();
  3. defaultImagendText();
  4. switch (v.getId())
  5. {
  6. case R.id.l_xiaoxi:
  7. fragmentShow(fragment1);
  8. im1.setImageResource(R.drawable.xiaoxi_click);
  9. t1.setTextColor(Color.parseColor("#04BE02"));
  10. break;
  11. case R.id.l_lianxi:
  12. fragmentShow(fragment2);
  13. im2.setImageResource(R.drawable.lianxi_click);
  14. t2.setTextColor(Color.parseColor("#04BE02"));
  15. break;
  16. case R.id.l_faxian:
  17. fragmentShow(fragment3);
  18. im3.setImageResource(R.drawable.faxian_click);
  19. t3.setTextColor(Color.parseColor("#04BE02"));
  20. break;
  21. case R.id.l_wode:
  22. fragmentShow(fragment4);
  23. im4.setImageResource(R.drawable.wode_click);
  24. t4.setTextColor(Color.parseColor("#04BE02"));
  25. break;
  26. };
  27. }

四、总结

4.1 运行结果展示

   

4.2 小结

通过本次作业练习掌握了一些安卓UI界面开发的基础知识,一开始由于组件有点多加上自己还不是很熟悉安卓UI界面的一些布局属性所以还有点云里雾里,在博客中对这些代码又重新梳理了一遍,感觉才好了些,总之收获还是很大的!

五、源码开源地址

HW_WeChat: Android 学习 (gitee.com)

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/565872
推荐阅读
相关标签
  

闽ICP备14008679号