我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Android仿微信顶/底部菜单栏效果

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Android仿微信顶/底部菜单栏效果

本文要实现仿微信微信底部菜单栏+顶部菜单栏,采用ViewPage来做,每一个page对应一个XML,当手指在ViewPage左右滑动时,就相应显示不同的page(其实就是xml)并且同时改变底部菜单按钮的图片变暗或变亮,同时如果点击底部菜单按钮,左右滑动page(其实就是xml)并且改变相应按钮的亮度。

一、布局
1、顶部菜单布局,命名为top_layout.xml


<?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="45dp" 
 android:background="@drawable/title_bar" > 
 <TextView 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:layout_marginLeft="20dp" 
  android:text="微信" 
  android:layout_centerVertical="true" 
  android:textColor="#ffffff" 
  android:textSize="20sp" 
  android:textStyle="bold" 
  /> 
 <ImageButton 
  android:id="@+id/top_add" 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:background="@drawable/top_add" 
  android:layout_centerVertical="true" 
  android:layout_alignParentRight="true" 
  /> 
  <ImageButton 
  android:id="@+id/top_search" 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:background="@drawable/top_search" 
  android:layout_centerVertical="true" 
  android:layout_toLeftOf="@id/top_add" 
  /> 
</RelativeLayout> 

效果:

2、底部菜单布局bottom_layout.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="60dp" 
 android:background="@drawable/bottom_bar" 
 android:orientation="horizontal" > 
 <LinearLayout 
  android:id="@+id/id_tab_weixin" 
  android:layout_width="0dp" 
  android:layout_height="match_parent" 
  android:layout_weight="1" 
  android:gravity="center" 
  android:orientation="vertical" > 
 <!-- android:clickable="false" 是为了防止ImageButton截取了触摸事件 ,这里事件要给它的上一级linearlayout--> 
  <ImageButton 
    android:id="@+id/id_tab_weixin_img" 
   android:layout_width="wrap_content" 
   android:layout_height="wrap_content" 
   android:background="#00000000" 
   android:clickable="false" 
   android:class="lazy" data-src="@drawable/tab_weixin_pressed" /> 
  <TextView 
   android:layout_width="wrap_content" 
   android:layout_height="wrap_content" 
   android:text="微信" 
   /> 
 </LinearLayout> 
 <LinearLayout 
   android:id="@+id/id_tab_address" 
  android:layout_width="0dp" 
  android:layout_height="match_parent" 
  android:layout_weight="1" 
  android:gravity="center" 
  android:orientation="vertical" > 
  <ImageButton 
    android:id="@+id/id_tab_address_img" 
   android:layout_width="wrap_content" 
   android:layout_height="wrap_content" 
   android:background="#00000000" 
    android:clickable="false" 
   android:class="lazy" data-src="@drawable/tab_address_normal" /> 
  <TextView 
   android:layout_width="wrap_content" 
   android:layout_height="wrap_content" 
   android:text="通讯录" 
   /> 
 </LinearLayout> 
 <LinearLayout 
  android:id="@+id/id_tab_frd" 
  android:layout_width="0dp" 
  android:layout_height="match_parent" 
  android:layout_weight="1" 
  android:gravity="center" 
  android:orientation="vertical" > 
  <ImageButton 
    android:id="@+id/id_tab_frd_img" 
   android:layout_width="wrap_content" 
   android:layout_height="wrap_content" 
   android:background="#00000000" 
    android:clickable="false" 
   android:class="lazy" data-src="@drawable/tab_find_frd_normal" /> 
  <TextView 
   android:layout_width="wrap_content" 
   android:layout_height="wrap_content" 
   android:text="发现" 
 /> 
 </LinearLayout> 
 <LinearLayout 
  android:id="@+id/id_tab_settings" 
  android:layout_width="0dp" 
  android:layout_height="match_parent" 
  android:layout_weight="1" 
  android:gravity="center" 
  android:orientation="vertical" > 
  <ImageButton 
    android:id="@+id/id_tab_settings_img" 
   android:layout_width="wrap_content" 
   android:layout_height="wrap_content" 
   android:background="#00000000" 
   android:clickable="false" 
   android:class="lazy" data-src="@drawable/tab_settings_normal" /> 
  <TextView 
   android:layout_width="wrap_content" 
   android:layout_height="wrap_content" 
   android:text="我" 
   /> 
 </LinearLayout> 
</LinearLayout> 

效果:

3、整体布局
将上面两个加到activity_main.xml中去


<LinearLayout 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" 
 android:orientation="vertical" > 
 <include layout="@layout/top_layout" /> 
 <android.support.v4.view.ViewPager 
  android:id="@+id/id_viewpage" 
  android:layout_width="fill_parent" 
  android:layout_height="0dp" 
  android:layout_weight="1" > 
 </android.support.v4.view.ViewPager> 
" 
 <include layout="@layout/bottom_layout" /> 
</LinearLayout> 

效果:

效果还可以,底下菜单栏是有背景的,有点儿白色的,所以看得不是很清,一来微信是选中的
4、定义ViewPage的四个布局
因为要用ViewPage要加四个page,每个page对应一个xml,所以这里定义四个xml.
tab01.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="match_parent" 
 android:gravity="center" 
 android:orientation="vertical" > 
  <TextView 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:text="这里是微信" 
  android:layout_centerVertical="true" 
  android:textColor="#000000" 
  android:textSize="40sp" 
  android:textStyle="bold" 
  /> 
</LinearLayout> 

效果:

tab02.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="match_parent" 
 android:gravity="center" 
 android:orientation="vertical" > 
  <TextView 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:text="这里是通讯录" 
  android:layout_centerVertical="true" 
  android:textColor="#000000" 
  android:textSize="40sp" 
  android:textStyle="bold" 
  /> 
</LinearLayout> 

效果:效果和上面一样,只是文字改了一下
tab03.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="match_parent" 
 android:gravity="center" 
 android:orientation="vertical" > 
  <TextView 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:text="这里是发现" 
  android:layout_centerVertical="true" 
  android:textColor="#000000" 
  android:textSize="40sp" 
  android:textStyle="bold" 
  /> 
</LinearLayout> 

效果:效果和上面一样,只是文字改了一下
tab04.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="match_parent" 
 android:gravity="center" 
 android:orientation="vertical" > 
  <TextView 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:text="这里是我" 
  android:layout_centerVertical="true" 
  android:textColor="#000000" 
  android:textSize="40sp" 
  android:textStyle="bold" 
  /> 
</LinearLayout> 

效果:效果和上面一样,只是文字改了一下
二、代码
1. MainActivity中把控件和ViewPage初始化


package com.example.tabexample; 
import java.util.ArrayList; 
import java.util.List; 
import android.os.Bundle; 
import android.app.Activity; 
import android.support.v4.view.PagerAdapter; 
import android.support.v4.view.ViewPager; 
import android.support.v4.view.ViewPager.OnPageChangeListener; 
import android.view.LayoutInflater; 
import android.view.View; 
import android.view.ViewGroup; 
import android.view.Window; 
import android.widget.ImageButton; 
import android.widget.LinearLayout; 
public class MainActivity extends Activity implements 
  android.view.View.OnClickListener { 
 private ViewPager mViewPager;// 用来放置界面切换 
 private PagerAdapter mPagerAdapter;// 初始化View适配器 
 private List<View> mViews = new ArrayList<View>();// 用来存放Tab01-04 
 // 四个Tab,每个Tab包含一个按钮 
 private LinearLayout mTabWeiXin; 
 private LinearLayout mTabAddress; 
 private LinearLayout mTabFrd; 
 private LinearLayout mTabSetting; 
 // 四个按钮 
 private ImageButton mWeiXinImg; 
 private ImageButton mAddressImg; 
 private ImageButton mFrdImg; 
 private ImageButton mSettingImg; 
 @Override 
 protected void onCreate(Bundle savedInstanceState) { 
  super.onCreate(savedInstanceState); 
  requestWindowFeature(Window.FEATURE_NO_TITLE); 
  setContentView(R.layout.activity_main); 
  initView(); 
  initViewPage(); 
  initEvent(); 
 } 
 private void initEvent() { 
  mTabWeiXin.setOnClickListener(this); 
  mTabAddress.setOnClickListener(this); 
  mTabFrd.setOnClickListener(this); 
  mTabSetting.setOnClickListener(this); 
  mViewPager.setOnPageChangeListener(new OnPageChangeListener() { 
    
   @Override 
   public void onPageSelected(int arg0) { 
    int currentItem = mViewPager.getCurrentItem(); 
    switch (currentItem) { 
    case 0: 
      resetImg(); 
     mWeiXinImg.setImageResource(R.drawable.tab_weixin_pressed); 
     break; 
    case 1: 
      resetImg(); 
     mAddressImg.setImageResource(R.drawable.tab_address_pressed); 
     break; 
    case 2: 
      resetImg(); 
     mFrdImg.setImageResource(R.drawable.tab_find_frd_pressed); 
     break; 
    case 3: 
      resetImg(); 
     mSettingImg.setImageResource(R.drawable.tab_settings_pressed); 
     break; 
    default: 
     break; 
    } 
   } 
   @Override 
   public void onPageScrolled(int arg0, float arg1, int arg2) { 
   } 
   @Override 
   public void onPageScrollStateChanged(int arg0) { 
   } 
  }); 
 } 
  
 private void initView() { 
  mViewPager = (ViewPager) findViewById(R.id.id_viewpage); 
  // 初始化四个LinearLayout 
  mTabWeiXin = (LinearLayout) findViewById(R.id.id_tab_weixin); 
  mTabAddress = (LinearLayout) findViewById(R.id.id_tab_address); 
  mTabFrd = (LinearLayout) findViewById(R.id.id_tab_frd); 
  mTabSetting = (LinearLayout) findViewById(R.id.id_tab_settings); 
  // 初始化四个按钮 
  mWeiXinImg = (ImageButton) findViewById(R.id.id_tab_weixin_img); 
  mAddressImg = (ImageButton) findViewById(R.id.id_tab_address_img); 
  mFrdImg = (ImageButton) findViewById(R.id.id_tab_frd_img); 
  mSettingImg = (ImageButton) findViewById(R.id.id_tab_settings_img); 
 } 
  
 private void initViewPage() { 
  // 初妈化四个布局 
  LayoutInflater mLayoutInflater = LayoutInflater.from(this); 
  View tab01 = mLayoutInflater.inflate(R.layout.tab01, null); 
  View tab02 = mLayoutInflater.inflate(R.layout.tab02, null); 
  View tab03 = mLayoutInflater.inflate(R.layout.tab03, null); 
  View tab04 = mLayoutInflater.inflate(R.layout.tab04, null); 
  mViews.add(tab01); 
  mViews.add(tab02); 
  mViews.add(tab03); 
  mViews.add(tab04); 
  // 适配器初始化并设置 
  mPagerAdapter = new PagerAdapter() { 
   @Override 
   public void destroyItem(ViewGroup container, int position, 
     Object object) { 
    container.removeView(mViews.get(position)); 
   } 
   @Override 
   public Object instantiateItem(ViewGroup container, int position) { 
    View view = mViews.get(position); 
    container.addView(view); 
    return view; 
   } 
   @Override 
   public boolean isViewFromObject(View arg0, Object arg1) { 
    return arg0 == arg1; 
   } 
   @Override 
   public int getCount() { 
    return mViews.size(); 
   } 
  }; 
  mViewPager.setAdapter(mPagerAdapter); 
 } 
  
 @Override 
 public void onClick(View arg0) { 
  switch (arg0.getId()) { 
  case R.id.id_tab_weixin: 
   mViewPager.setCurrentItem(0); 
   resetImg(); 
   mWeiXinImg.setImageResource(R.drawable.tab_weixin_pressed); 
   break; 
  case R.id.id_tab_address: 
   mViewPager.setCurrentItem(1); 
   resetImg(); 
   mAddressImg.setImageResource(R.drawable.tab_address_pressed); 
   break; 
  case R.id.id_tab_frd: 
   mViewPager.setCurrentItem(2); 
   resetImg(); 
   mFrdImg.setImageResource(R.drawable.tab_find_frd_pressed); 
   break; 
  case R.id.id_tab_settings: 
   mViewPager.setCurrentItem(3); 
   resetImg(); 
   mSettingImg.setImageResource(R.drawable.tab_settings_pressed); 
   break; 
  default: 
   break; 
  } 
 } 
  
 private void resetImg() { 
  mWeiXinImg.setImageResource(R.drawable.tab_weixin_normal); 
  mAddressImg.setImageResource(R.drawable.tab_address_normal); 
  mFrdImg.setImageResource(R.drawable.tab_find_frd_normal); 
  mSettingImg.setImageResource(R.drawable.tab_settings_normal); 
 } 
} 

代码量很短,只有几百行,功能就可以实现了,注意这里去掉程序原本的标题栏我直接用了
requestWindowFeature(Window.FEATURE_NO_TITLE); 

2、效果:


三、思路说明
1、分别为顶部菜单栏和底部菜单栏新建一个布局
2、中间是ViewPage,然后里面放四个Page(tab01-tab04.xml),注意,要通过适配器给ViewPage提供内容.
3、监听ViewPage和底部菜单栏按钮的事件(注意,这里的按钮放在一个LinearLayout中,所以我们监听了LinearLayout的触摸事件,而屏蔽了Imgaebutton的触摸事件)
4、
public void onClick(View arg0) 
这里面监听的是底部菜单的触摸事件,根据触摸的控件,改变自身的亮度、改变ViewPage显示的内容
mViewPager.setOnPageChangeListener(new OnPageChangeListener()  

这里监听的是ViewPage左右滑动的事件,改变相应控件的亮度、改变ViewPage显示的内容
四、不足之处
1、最新版微信上应该是左右滑动是有部分亮度变化的,这里直接转变过去了。
2、最新版微信文字也要跟着变化,这里没做改变

本文已被整理到了《Android微信开发教程汇总》,欢迎大家学习阅读。

您可能感兴趣的文章:android底部菜单栏实现原理与代码Android仿QQ空间底部菜单示例代码Android仿UC底部菜单栏实现原理与代码Android PopupWindow实现右侧、左侧和底部弹出菜单Android开发之微信底部菜单栏实现的几种方法汇总Android仿微信底部菜单栏功能显示未读消息数量Android使用Activity实现从底部弹出菜单或窗口的方法Android中底部菜单被输入法顶上去的解决方案Android仿网易严选底部弹出菜单效果Android使用CoordinatorLayout实现底部弹出菜单


免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Android仿微信顶/底部菜单栏效果

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Android仿微信顶/底部菜单栏效果

本文要实现仿微信微信底部菜单栏+顶部菜单栏,采用ViewPage来做,每一个page对应一个XML,当手指在ViewPage左右滑动时,就相应显示不同的page(其实就是xml)并且同时改变底部菜单按钮的图片变暗或变亮,同时如果点击底部菜单
2022-06-06

Android仿微信底部菜单栏效果

前言在市面上,大多数的APP都需要通过底部菜单栏来将程序的功能进行分类整理,通常都是分为3-5个大模块,从而正确有效地引导用户去使用我们的APP。实现底部菜单栏的方法也有很多种。1.仿微信底部菜单栏(ViewPager+ImagerView
2023-05-30

Android实现简单底部导航栏 Android仿微信滑动切换效果

Android仿微信滑动切换最终实现效果:大体思路:1. 主要使用两个自定义View配合实现; 底部图标加文字为一个自定义view,底部导航栏为一个载体,根据需要来添加底部图标;2. 底部导航栏的设置方法类似于TabLayout的关联,Vi
2023-05-30

Android仿微信底部菜单栏功能显示未读消息数量

底部菜单栏很重要,我看了一下很多应用软件都是用了底部菜单栏,这里使用了tabhost做了一种通用的(就是可以像微信那样显示未读消息数量的,虽然之前也做过但是layout下的xml写的太臃肿,这里去掉了很多不必要的层,个人看起来还是不错的,所
2022-06-06

Android实现顶部导航栏可点击可滑动效果(仿微信仿豆瓣网)

使用ViewPager,PagerSlidingTabStrip,SwipeRefreshLayout打造一款可以点击可以侧滑的顶部导航栏。先简单介绍一下所用的两个个开源库。 PagerSlidingTabStrip Github地址 用
2022-06-06

Android制作微信app顶部menu菜单(ActionBar)

使用微信APP的小伙伴对于微信的ActionBar一定有印象,今天就带领大家一起实现以下这个效果。第一步打开我们的开发工具,这里我使用的是Eclipse+ADT插件,然后创建我们的工程,这里选择Android的最低版本号为3.0或以上。然后
2022-06-06

Android仿网易客户端顶部导航栏效果

最近刚写了一个网易客户端首页导航条的动画效果,现在分享出来给大家学习学习。我说一下这个效果的核心原理。下面是效果图: 首先是布局,这个布局是我从网易客户端反编译后弄来的。大家看后应该明白,布局文件如下:
2022-06-06

Android仿UC底部菜单栏实现原理与代码

相关的链接: Android 底部菜单栏实现 最近刚看完ViewPager,就想到做这样一个Demo,当然也参考了高手们的实例里边的网格菜单,开始我打算用自定义的imgBtn,但是发现放在pager选项卡中不好排版,所以最好选了GridVi
2022-06-06

Android仿微信底部实现Tab选项卡切换效果

在网上看了比较多的关于Tab的教程,发现都很杂乱。比较多的用法是用TitlePagerTabStrip和ViewPaper。不过TitlePagerTabStrip有个很大的缺陷,Tab里面的内容刚进去是没有的,要滑一次才能加载出来。而且滑
2022-06-06

Android仿微信页面底部导航效果代码实现

大家在参考本地代码的时候要根据需要适当的修改,里面有冗余代码小编没有删除。好了,废话不多说了,一切让代码说话吧! 关键代码如下所示: .java里面的主要代码public class MainActivity extends BaseAct
2022-06-06

Android如何实现仿网易严选底部弹出菜单效果

这篇文章将为大家详细讲解有关Android如何实现仿网易严选底部弹出菜单效果,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。首先展示效果图如下:是不是还可以呢,由于代码量不多却注释详细,所以先贴出代码再一一
2023-05-30

android自定义popupwindow仿微信右上角弹出菜单效果

微信右上角的操作菜单看起来很好用,就照着仿了一下,不过是旧版微信的,手里刚好有一些旧版微信的资源图标,给大家分享一下。不知道微信是用什么实现的,我使用popupwindow来实现,主要分为几块内容:1、窗口布局文件:popwin_share
2022-06-06

Android项目实战之仿网易顶部导航栏效果

随着时间的推移现在的软件要求显示的内容越来越多,所以要在小的屏幕上能够更好的显示更多的内容,首先我们会想到底部菜单栏,但是有时候想网易新闻要显示的内容太多,而且又想在主页面全部显示出来,所以有加了顶部导航栏,但是Android这样的移动设备
2022-06-06

Android仿微信通讯录列表侧边栏效果

先看Android仿微信通讯录列表侧边栏效果图这是比较常见的效果了吧 列表根据首字符的拼音字母来排序,且可以通过侧边栏的字母索引来进行定位。 实现这样一个效果并不难,只要自定义一个索引View,然后引入一个可以对汉字进行拼音解析的jar包—
2022-06-06

Android如何模仿实现微博详情页滑动固定顶部栏的效果

这篇文章主要介绍了Android如何模仿实现微博详情页滑动固定顶部栏的效果,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。先来看下我们今天要实现的效果:滑动固定顶部栏效果图这段
2023-05-30

Android开发之微信底部菜单栏实现的几种方法汇总

实现方式 实现的方式有很多种 这里总结最常见的几种方式,以后再添加其他的。 viewPager + RadioGroup viewPager + FragmentTabHost viewpager +TabLayout viewPager
2022-06-06

Android实现顶部导航菜单左右滑动效果

本文给大家介绍在Android中如何实现顶部导航菜单左右滑动效果,具体内容如下 第一种解决方案: 实现原理是使用android-support-v4.jar包中ViewPager控件,在ViewPager控件中设置流布局,再在流布局中设置
2022-06-06

微信小程序实战之仿android fragment可滑动底部导航栏(4)

底部3-5个选项的底部导航栏,目前在移动端上是主流布局之一,因此腾讯官方特地做了,可以通过设置,就可以做出了一个底部的导航栏。 相关教程:微信小程序教程系列之设置标题栏和导航栏(7) 但是通过设置的这个底部的导航栏,功能上比较固定,它必须要
2022-06-06

编程热搜

  • Android:VolumeShaper
    VolumeShaper(支持版本改一下,minsdkversion:26,android8.0(api26)进一步学习对声音的编辑,可以让音频的声音有变化的播放 VolumeShaper.Configuration的三个参数 durati
    Android:VolumeShaper
  • Android崩溃异常捕获方法
    开发中最让人头疼的是应用突然爆炸,然后跳回到桌面。而且我们常常不知道这种状况会何时出现,在应用调试阶段还好,还可以通过调试工具的日志查看错误出现在哪里。但平时使用的时候给你闹崩溃,那你就欲哭无泪了。 那么今天主要讲一下如何去捕捉系统出现的U
    Android崩溃异常捕获方法
  • android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
    系统的设置–>电池–>使用情况中,统计的能耗的使用情况也是以power_profile.xml的value作为基础参数的1、我的手机中power_profile.xml的内容: HTC t328w代码如下:
    android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
  • Android SQLite数据库基本操作方法
    程序的最主要的功能在于对数据进行操作,通过对数据进行操作来实现某个功能。而数据库就是很重要的一个方面的,Android中内置了小巧轻便,功能却很强的一个数据库–SQLite数据库。那么就来看一下在Android程序中怎么去操作SQLite数
    Android SQLite数据库基本操作方法
  • ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
    工作的时候为了方便直接打开编辑文件,一些常用的软件或者文件我们会放在桌面,但是在ubuntu20.04下直接直接拖拽文件到桌面根本没有效果,在进入桌面后发现软件列表中的软件只能收藏到面板,无法复制到桌面使用,不知道为什么会这样,似乎并不是很
    ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
  • android获取当前手机号示例程序
    代码如下: public String getLocalNumber() { TelephonyManager tManager =
    android获取当前手机号示例程序
  • Android音视频开发(三)TextureView
    简介 TextureView与SurfaceView类似,可用于显示视频或OpenGL场景。 与SurfaceView的区别 SurfaceView不能使用变换和缩放等操作,不能叠加(Overlay)两个SurfaceView。 Textu
    Android音视频开发(三)TextureView
  • android获取屏幕高度和宽度的实现方法
    本文实例讲述了android获取屏幕高度和宽度的实现方法。分享给大家供大家参考。具体分析如下: 我们需要获取Android手机或Pad的屏幕的物理尺寸,以便于界面的设计或是其他功能的实现。下面就介绍讲一讲如何获取屏幕的物理尺寸 下面的代码即
    android获取屏幕高度和宽度的实现方法
  • Android自定义popupwindow实例代码
    先来看看效果图:一、布局
  • Android第一次实验
    一、实验原理 1.1实验目标 编程实现用户名与密码的存储与调用。 1.2实验要求 设计用户登录界面、登录成功界面、用户注册界面,用户注册时,将其用户名、密码保存到SharedPreference中,登录时输入用户名、密码,读取SharedP
    Android第一次实验

目录