Android仿百度壁纸客户端之搭建主框架(一)

这是个不错的教程,自己学完了之后就拿出来分享了,本来想一个帖子写完,但是发现这样对自己写博客的效率有点出入,为了让大家看的舒服点,所以分开来写,我们先开看下百度壁纸的客户端是什么样子的

我们先来写个主页的框架,我们新建一个项目——BaiDuWallPaper

写个Item
layout_tab_item

<?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="match_parent">

 <RelativeLayout
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:layout_centerInParent="true">

 <ImageView
 android:id="@+id/tabImg"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:layout_centerHorizontal="true" />

 <TextView
 android:id="@+id/tabText"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:layout_below="@+id/tabImg"
 android:layout_centerHorizontal="true"
 android:text="@string/app_name"
 android:textColor="@android:color/white"
 android:textSize="16sp" />

 </RelativeLayout>

</RelativeLayout>

然后我们再写个布局

<?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="70dp"
 android:orientation="horizontal">

 <include
 android:id="@+id/homeLayout"
 layout="@layout/layout_tab_item"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:layout_weight="1" />

 <include
 android:id="@+id/selectLayout"
 layout="@layout/layout_tab_item"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:layout_weight="1" />

 <include
 android:id="@+id/searchLayout"
 layout="@layout/layout_tab_item"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:layout_weight="1" />

 <include
 android:id="@+id/locationLayout"
 layout="@layout/layout_tab_item"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:layout_weight="1" />

 <include
 android:id="@+id/settingLayout"
 layout="@layout/layout_tab_item"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:layout_weight="1" />

</LinearLayout>

这样我们就可以自定义组合控件了
 MyBottomLayout

package com.lgl.baiduwallpaper.view;

import android.content.Context;
import android.graphics.Color;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.LinearLayout;
import android.widget.RelativeLayout;
import android.widget.TextView;

import com.lgl.baiduwallpaper.R;

/**
 * 底部布局
 * Created by lgl on 16/3/31.
 */
public class MyBottomLayout extends LinearLayout {

 //跟布局是RelativeLayout
 private RelativeLayout homeLayout, selectLayout, searchLayout, locationLayout, settingLayout;
 //布局加载
 private LayoutInflater inflater;

 //构造方法
 public MyBottomLayout(Context context, AttributeSet attrs) {
 super(context, attrs);

 initView();
 }

 /**
 * 初始化
 */
 private void initView() {
 inflater = LayoutInflater.from(getContext());
 View view = inflater.inflate(R.layout.layout_bottom, this);
 findView(view);
 initData();
 setonClick();
 }

 /**
 * 初始化数据
 */
 private void initData() {
 homeLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_home_down);
 TextView tvHome = (TextView) homeLayout.findViewById(R.id.tabText);
 tvHome.setText("首页");
 tvHome.setTextColor(Color.BLUE);

 selectLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_search);
 TextView tvSelect = (TextView) selectLayout.findViewById(R.id.tabText);
 tvSelect.setText("精选");
 tvSelect.setTextColor(Color.WHITE);

 searchLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_find);
 TextView tvSearch = (TextView) searchLayout.findViewById(R.id.tabText);
 tvSearch.setText("搜索");
 tvSearch.setTextColor(Color.WHITE);

 locationLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_manage);
 TextView tvLoaction = (TextView) locationLayout.findViewById(R.id.tabText);
 tvLoaction.setText("本地");
 tvLoaction.setTextColor(Color.WHITE);

 settingLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_more);
 TextView tvSetting = (TextView) settingLayout.findViewById(R.id.tabText);
 tvSetting.setText("设置");
 tvSetting.setTextColor(Color.WHITE);
 }

 /**
 * 找到控件的方法
 *
 * @param view
 */
 private void findView(View view) {
 homeLayout = (RelativeLayout) view.findViewById(R.id.homeLayout);
 selectLayout = (RelativeLayout) view.findViewById(R.id.selectLayout);
 searchLayout = (RelativeLayout) view.findViewById(R.id.searchLayout);
 locationLayout = (RelativeLayout) view.findViewById(R.id.locationLayout);
 settingLayout = (RelativeLayout) view.findViewById(R.id.settingLayout);
 }

 /**
 * 控件的点击事件
 */
 private void setonClick() {
 homeLayout.setOnClickListener(new lister());
 selectLayout.setOnClickListener(new lister());
 searchLayout.setOnClickListener(new lister());
 locationLayout.setOnClickListener(new lister());
 settingLayout.setOnClickListener(new lister());
 }

 /**
 * 点击接口
 */
 private class lister implements OnClickListener {

 /**
 * 点击后改变点击状态
 * 切换页面
 *
 * @param v
 */
 @Override
 public void onClick(View v) {
 switch (v.getId()) {
 case R.id.homeLayout:
  initPix(0);
  break;
 case R.id.selectLayout:
  initPix(1);
  break;
 case R.id.searchLayout:
  initPix(2);
  break;
 case R.id.locationLayout:
  initPix(3);
  break;
 case R.id.settingLayout:
  initPix(4);
  break;
 }
 iCallbackListener.clic(v.getId());
 }
 }

 /**
 * 切换卡的位置
 */
 public void initPix(int i) {
 switch (i) {
 case 0:
 homeLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_home_down);
 TextView tvHome0 = (TextView) homeLayout.findViewById(R.id.tabText);
 tvHome0.setTextColor(Color.BLUE);

 selectLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_search);
 TextView tvSelect0 = (TextView) selectLayout.findViewById(R.id.tabText);
 tvSelect0.setTextColor(Color.WHITE);

 searchLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_find);
 TextView tvSearch0 = (TextView) searchLayout.findViewById(R.id.tabText);
 tvSearch0.setTextColor(Color.WHITE);

 locationLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_manage);
 TextView tvLocation0 = (TextView) locationLayout.findViewById(R.id.tabText);
 tvLocation0.setTextColor(Color.WHITE);

 settingLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_more);
 TextView tvSetting0 = (TextView) settingLayout.findViewById(R.id.tabText);
 tvSetting0.setTextColor(Color.WHITE);

 break;
 case 1:

 homeLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_home);
 TextView tvHome1 = (TextView) homeLayout.findViewById(R.id.tabText);
 tvHome1.setTextColor(Color.WHITE);

 selectLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_search_down);
 TextView tvSelect1 = (TextView) selectLayout.findViewById(R.id.tabText);
 tvSelect1.setTextColor(Color.BLUE);

 searchLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_find);
 TextView tvSearch1 = (TextView) searchLayout.findViewById(R.id.tabText);
 tvSearch1.setTextColor(Color.WHITE);

 locationLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_manage);
 TextView tvLocation1 = (TextView) locationLayout.findViewById(R.id.tabText);
 tvLocation1.setTextColor(Color.WHITE);

 settingLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_more);
 TextView tvSetting1 = (TextView) settingLayout.findViewById(R.id.tabText);
 tvSetting1.setTextColor(Color.WHITE);

 break;
 case 2:

 homeLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_home);
 TextView tvHome2 = (TextView) homeLayout.findViewById(R.id.tabText);
 tvHome2.setTextColor(Color.WHITE);

 selectLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_search);
 TextView tvSelect2 = (TextView) selectLayout.findViewById(R.id.tabText);
 tvSelect2.setTextColor(Color.WHITE);

 searchLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_find_down);
 TextView tvSearch2 = (TextView) searchLayout.findViewById(R.id.tabText);
 tvSearch2.setTextColor(Color.BLUE);

 locationLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_manage);
 TextView tvLocation2 = (TextView) locationLayout.findViewById(R.id.tabText);
 tvLocation2.setTextColor(Color.WHITE);

 settingLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_more);
 TextView tvSetting2 = (TextView) settingLayout.findViewById(R.id.tabText);
 tvSetting2.setTextColor(Color.WHITE);

 break;
 case 3:

 homeLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_home);
 TextView tvHome3 = (TextView) homeLayout.findViewById(R.id.tabText);
 tvHome3.setTextColor(Color.WHITE);

 selectLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_search);
 TextView tvSelect3 = (TextView) selectLayout.findViewById(R.id.tabText);
 tvSelect3.setTextColor(Color.WHITE);

 searchLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_find);
 TextView tvSearch3 = (TextView) searchLayout.findViewById(R.id.tabText);
 tvSearch3.setTextColor(Color.WHITE);

 locationLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_manage_down);
 TextView tvLocation3 = (TextView) locationLayout.findViewById(R.id.tabText);
 tvLocation3.setTextColor(Color.BLUE);

 settingLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_more);
 TextView tvSetting3 = (TextView) settingLayout.findViewById(R.id.tabText);
 tvSetting3.setTextColor(Color.WHITE);

 break;
 case 4:

 homeLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_home);
 TextView tvHome4 = (TextView) homeLayout.findViewById(R.id.tabText);
 tvHome4.setTextColor(Color.WHITE);

 selectLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_search);
 TextView tvSelect4 = (TextView) selectLayout.findViewById(R.id.tabText);
 tvSelect4.setTextColor(Color.WHITE);

 searchLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_find);
 TextView tvSearch4 = (TextView) searchLayout.findViewById(R.id.tabText);
 tvSearch4.setTextColor(Color.WHITE);

 locationLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_manage);
 TextView tvLocation4 = (TextView) locationLayout.findViewById(R.id.tabText);
 tvLocation4.setTextColor(Color.WHITE);

 settingLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_more_down);
 TextView tvSetting4 = (TextView) settingLayout.findViewById(R.id.tabText);
 tvSetting4.setTextColor(Color.BLUE);

 break;
 }
 }
}

我们运行一下

接下来我们让他可以切换选项卡,我们定义一个接口

 /**
 * 切换页面的接口
 */
 public interface ICallbackListener {
 public void clic(int id);
 }

 ICallbackListener iCallbackListener = null;

 public void setonCallbackListener(ICallbackListener iCallbackListener) {
 this.iCallbackListener = iCallbackListener;
 }

接着初始化数据

 /**
 * 设置默认的第一页数据
 */
 private void initPagerContent(android.app.Fragment fragment) {
 FragmentManager manager = getFragmentManager();
 android.app.FragmentTransaction ft = manager.beginTransaction();
 ft.replace(R.id.myContent,fragment);
 ft.commit();
 }

然后我们引用的时候就可以直接new了

 /**
 * 切换接口
 */
 private class MyCallbackListener implements MyBottomLayout.ICallbackListener {

 @Override
 public void clic(int id) {
 switch (id) {
 case R.id.homeLayout:
  initPagerContent(new HomeFragment());

  break;
 case R.id.selectLayout:
  initPagerContent(new SelectFragment());

  break;
 case R.id.searchLayout:
  initPagerContent(new SearchFragment());

  break;
 case R.id.locationLayout:
  initPagerContent(new LoactionFragment());

  break;
 case R.id.settingLayout:
  initPagerContent(new SettingFragment());

  break;

 }
 }
 }

我们在运行一下

但是有一点我们要知道,我们还要实现滑动,这样的话,我们就要使用viewpager了
 layout_main.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="match_parent">

 <android.support.v4.view.ViewPager
 android:id="@+id/myViewPager"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:layout_above="@+id/myBottomLayout" />

 <com.lgl.baiduwallpaper.view.MyBottomLayout
 android:id="@+id/myBottomLayout"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:layout_alignParentBottom="true"
 android:background="@mipmap/image_titlebar_background" />
</RelativeLayout>

具体的,我就直接把MainActivity的代码贴上吧

 package com.lgl.baiduwallpaper;

import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentPagerAdapter;
import android.support.v4.view.ViewPager;

import com.lgl.baiduwallpaper.fragment.HomeFragment;
import com.lgl.baiduwallpaper.fragment.LoactionFragment;
import com.lgl.baiduwallpaper.fragment.SearchFragment;
import com.lgl.baiduwallpaper.fragment.SelectFragment;
import com.lgl.baiduwallpaper.fragment.SettingFragment;
import com.lgl.baiduwallpaper.view.MyBottomLayout;

/**
 * 主界面
 */
public class MainActivity extends FragmentActivity {

 private MyBottomLayout myBottomLayout;
 private ViewPager viewpager;

 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_main);

 initView();
 }

 /**
 * 初始化
 */
 private void initView() {
// initPagerContent(new HomeFragment());
 findView();
 setOnclick();
 }

// /**
// * 设置默认的第一页数据
// */
// private void initPagerContent(android.app.Fragment fragment) {
// FragmentManager manager = getFragmentManager();
// android.app.FragmentTransaction ft = manager.beginTransaction();
// ft.replace(R.id.myContent,fragment);
// ft.commit();
// }

 /**
 * 点击事件
 */
 private void setOnclick() {
 myBottomLayout.setonCallbackListener(new MyCallbackListener());
 }

 /**
 * 找寻控件
 */
 private void findView() {
 myBottomLayout = (MyBottomLayout) findViewById(R.id.myBottomLayout);

 viewpager = (ViewPager) findViewById(R.id.myViewPager);
 viewpager.setAdapter(new MyFragmentAdapter(getSupportFragmentManager()));
 //页面监听
 viewpager.setOnPageChangeListener(new ViewPager.OnPageChangeListener() {
 @Override
 public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {

 }

 @Override
 public void onPageSelected(int position) {
 myBottomLayout.initPix(position);
 }

 @Override
 public void onPageScrollStateChanged(int state) {

 }
 });
 }

 /**
 * 切换接口
 */
 private class MyCallbackListener implements MyBottomLayout.ICallbackListener {

 @Override
 public void clic(int id) {
 switch (id) {
 case R.id.homeLayout:
//  initPagerContent(new HomeFragment());
  viewpager.setCurrentItem(0);
  break;
 case R.id.selectLayout:
//  initPagerContent(new SelectFragment());
  viewpager.setCurrentItem(1);
  break;
 case R.id.searchLayout:
//  initPagerContent(new SearchFragment());
  viewpager.setCurrentItem(2);
  break;
 case R.id.locationLayout:
//  initPagerContent(new LoactionFragment());
  viewpager.setCurrentItem(3);
  break;
 case R.id.settingLayout:
//  initPagerContent(new SettingFragment());
  viewpager.setCurrentItem(4);
  break;

 }
 }
 }

 /**
 * viewpager的adapter
 */
 private class MyFragmentAdapter extends FragmentPagerAdapter {

 public MyFragmentAdapter(FragmentManager fm) {
 super(fm);
 }

 @Override
 public Fragment getItem(int position) {
 switch (position) {
 case 0:
  return new HomeFragment();
 case 1:
  return new SelectFragment();
 case 2:
  return new SearchFragment();
 case 3:
  return new LoactionFragment();
 case 4:
  return new SettingFragment();
 }
 return null;
 }

 @Override
 public int getCount() {
 //5个页面
 return 5;
 }
 }
}

主要是你切换的时候setCurrentItem(id);同时监听viewpager的滑动,就可以自由切换了,我们运行一下

源码下载: Android仿百度壁纸客户端

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • Android编程之动态壁纸实例分析

    本文实例讲述了Android编程之动态壁纸.分享给大家供大家参考,具体如下: 从android 2.1版本起引入了动态壁纸的概念,熟悉android的人一定不会陌生.这里解释一个动态壁纸是怎么形成又是怎么工作的. 首先动态桌面的动态体现出这个组件是实时变化的,也就是说有一个后台在不停的刷新这个组件.联想到后台组件首先想到的就是service,从代码角度看,果然如此.每一个动态桌面都继承自WallpaperService,其中必须实现的抽象方法onCreateEngine,返回一个Engine对象

  • Android开发学习之WallPaper设置壁纸详细介绍与实例

    今天和大家分享的是关于在Android中设置壁纸的方法,在Android中设置壁纸的方法有三种,分别是: 1.使用WallpaperManager的setResource(int ResourceID)方法 2.使用WallpaperManager的setBitmap(Bitmap bitmap)方法 3.重写ContextWrapper 类中提供的setWallpaper() 除此之外,我们还需要在应用程序中加入下列权限: <uses-permission android:name="a

  • Android 开发之BottomBar+ViewPager+Fragment实现炫酷的底部导航效果

    BottomBar BottomBar是Github上的一个开源框架,因为从1.3.3开始不支持fragments了,要自己配置,弄了很久,不管是app的fragment还是V4 的程序总是总是闪退.于是就用这种方式实现了,效果还不错.github有详细说明,多余的就不说了. 这个roughike是这个项目的所有者(大神致敬). 我用的是Android studio开发,fragment全部导的V4的包(以为最开始就支持的是v4的,后面也支持了app.fragment). 首先是dependen

  • Android中ViewPager实现滑动指示条及与Fragment的配合

    自主实现滑动指示条 先上效果图: 1.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

  • Android App中使用ViewPager+Fragment实现滑动切换效果

    在android应用中,多屏滑动是一种很常见的风格,没有采用viewpager的代码实现会很长,如果采用ViewPager,代码就会短很多,但是使用ViewPager也有弊端:需要导入android-support-v4.jar.细节无法控制.不过现在情况已经不一样了,android-support-v4中提供了很多实用的功能,以至于现在新建一个android工程默认都会导入这个jar包.那我们就也采用viewpager来做滑动吧.另外一个概念就是Fragment和FragmentActivit

  • Android App中ViewPager与Fragment结合的一些问题解决

    在了解ViewPager的工作原理之前,先回顾ListView的工作原理: ListView只有在需要显示某些列表项时,它才会去申请可用的视图对象:如果为所有的列表项数据创建视图对象,会浪费内存: ListView找谁去申请视图对象呢? 答案是adapter.adapter是一个控制器对象,负责从模型层获取数据,创建并填充必要的视图对象,将准备好的视图对象返回给ListView: 首先,通过调用adapter的getCount()方法,ListView询问数组列表中包含多少个对象(为避免出现数组

  • Android App在ViewPager中使用Fragment的实例讲解

    据说Android最推荐的是在ViewPager中使用FragMent,即ViewPager中的页面不像前面那样用LayoutInflater直接从布局文件加载,而是一个个Fragment.注意这里的Fragment 是android.support.v4.view包里的Fragment,而不是android.app包里的Fragment. 使用v4包里的Fragment的Activity必须继承自FragmentActivity. 其实使用Fragment与前面不使用Fragment非常类似:

  • Android实现手机壁纸改变的方法

    本文实例讲述了Android实现手机壁纸改变的方法.分享给大家供大家参考.具体如下: main.xml布局文件: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" androi

  • Android基于ViewPager Fragment实现选项卡

    先给大家展示效果图: 1.新建TestFragmen继承Fragment public class TestFragment extends Fragment { private static final String TAG = "TestFragment"; private String hello;// = "hello android"; private String defaultHello = "default value"; pri

  • android动态壁纸调用的简单实例

    调用后动态壁纸其实是显示在Activity的后面,而Activity则是透明显示,这样就可以看到下面的动态壁纸,如果Activity不是透明的则什么也看不到. 代码中有用到两个接口 IWallpaperService mService; IWallpaperEngine mEngine; 我们可以看到该目录下面有三个aidl接口,分别是 复制代码 代码如下: interface IWallpaperConnection { void attachEngine(IWallpaperEngine e

随机推荐