Android Fragment应用实战(音乐播放器界面)

当下很多手机应用都会有一个非常类似的功能,即屏幕的下方显示一行Tab标签选项,点击不同的标签就可以切换到不同的界面,如以下几个应用所示:

以上底部这四个标签,每一个分别对应一个Fragment,这种底部标签式的布局策略真的非常常见,那么话说回来,这种效果到底是如何的呢?熟悉Android的朋友一定都会知道,很简单嘛,使用TabHost就OK了!但是殊不知,TabHost并非是那么的简单,它的可扩展性非常的差,不能随意地定制Tab项显示的内容,而且运行还要依赖于ActivityGroup。ActivityGroup原本主要是用于为每一个TabHost的子项管理一个单独的Activity,但目前已经被废弃了。为什么呢?当然就是因为Fragment的出现了!

下面就开始真正的编程吧!

打开或者新建一个xml文件作为程序的主布局文件,这里直接采用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"
    tools:context=".MainActivity" >

    <FrameLayout
        android:id="@+id/Content"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1" >

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="#eee" >

            <android.support.v4.view.ViewPager
                android:id="@+id/discover_music_view_pager"
                android:layout_width="match_parent"
                android:layout_height="match_parent" />
        </RelativeLayout>
    </FrameLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="60dp"
        android:background="#ffffff" >

        <RelativeLayout
            android:id="@+id/discover_layout"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1" >

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_centerVertical="true"
                android:orientation="vertical" >

                <ImageView
                    android:id="@+id/discover_image"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center_horizontal"
                    android:src="@drawable/ic_launcher" />

                <TextView
                    android:id="@+id/discover_text"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center_horizontal"
                    android:text="发现音乐"
                    android:textColor="#82858b" />
            </LinearLayout>
        </RelativeLayout>

        <RelativeLayout
            android:id="@+id/my_layout"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1" >

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_centerVertical="true"
                android:orientation="vertical" >

                <ImageView
                    android:id="@+id/my_image"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center_horizontal"
                    android:src="@drawable/ic_launcher" />

                <TextView
                    android:id="@+id/my_text"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center_horizontal"
                    android:text="我的音乐"
                    android:textColor="#82858b" />
            </LinearLayout>
        </RelativeLayout>

        <RelativeLayout
            android:id="@+id/friends_layout"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1" >

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_centerVertical="true"
                android:orientation="vertical" >

                <ImageView
                    android:id="@+id/friends_image"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center_horizontal"
                    android:src="@drawable/ic_launcher" />

                <TextView
                    android:id="@+id/friends_text"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center_horizontal"
                    android:text="朋友"
                    android:textColor="#82858b" />
            </LinearLayout>
        </RelativeLayout>

        <RelativeLayout
            android:id="@+id/account_layout"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1" >

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_centerVertical="true"
                android:orientation="vertical" >

                <ImageView
                    android:id="@+id/account_image"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center_horizontal"
                    android:src="@drawable/ic_launcher" />

                <TextView
                    android:id="@+id/account_text"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center_horizontal"
                    android:text="账号"
                    android:textColor="#82858b" />
            </LinearLayout>
        </RelativeLayout>
    </LinearLayout>

</LinearLayout>

大家看这代码比较难以理解,但其实主要就分为两部分。第一个部分就是FrameLayout,这里只是给FrameLayout的id设置为Content,并没有在里面添加任何具体的内容,因为具体的内容是要在后面动态进行添加的。第二个部分就是FrameLayout下面的LinearLayout,这个LinearLayout中包含的就是整个类似于TabHost的布局。可以看到,我们将这个LinearLayout又等分成了四份,每一份中都会显示一个ImageView和一个TextView。ImageView用于显示当前Tab的图标,TextView用于显示当前Tab的标题,这个效果就会和QQ非常得类似。

那么接下来我们要开始实现Fragment和它们的布局了,新建一个discover_music_fragment.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" >

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:orientation="vertical" >

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:src="@drawable/ic_launcher" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:padding="10dp"
            android:text="这是发现音乐界面"
            android:textSize="20sp" />
    </LinearLayout>

</RelativeLayout>

这个布局就是在屏幕的正中央显示一个消息图标以及一段文字。

然后,我们要去创建对应这个布局的Fragment,新建一个DiscoverMusicFragment继承自Fragment,代码如下所示

public class DiscoverMusicFragment extends Fragment {

	@Override
	public View onCreateView(LayoutInflater inflater, ViewGroup container,
			Bundle savedInstanceState) {
		View discover_music_fragment = inflater.inflate(
				R.layout.discover_music_fragment, container, false);
		return discover_music_fragment;
	}

}

后面的都和这个一样,就不一一展示。

这样我们把每一个Fragment以及它们对应的布局文件都创建好了,接下来我们开始写MainActivity里面的内容,代码如下所示:

public class MainActivity extends Activity implements OnClickListener {
	/**
	 * 用于展示‘发现音乐’的Fragment
	 */
	private DiscoverMusicFragment discoverMusicFragment;
	/**
	 * 用于展示‘我的音乐’的Fragment
	 */
	private MyMusicFragment myMusicFragment;
	/**
	 * 用于展示‘朋友’的Fragment
	 */
	private FriendsFragment friendsFragment;
	/**
	 * 用于展示‘账号’的Fragment
	 */
	private AccountFragment accountFragment;
	/**
	 * ‘发现音乐’布局
	 */
	private View discover_music_layout;
	/**
	 * ‘我的音乐’布局
	 */
	private View my_music_layout;
	/**
	 * ‘朋友’布局
	 */
	private View friends_layout;
	/**
	 * ‘账号’布局
	 */
	private View account_layout;
	/**
	 * 在Tab布局上显示‘发现音乐’图标的控件
	 */
	private ImageView discover_music_image;
	/**
	 * 在Tab布局上显示‘我的音乐’图标的控件
	 */
	private ImageView my_music_image;
	/**
	 * 在Tab布局上显示‘朋友’图标的控件
	 */
	private ImageView friends_image;
	/**
	 * 在Tab布局上显示‘账号’图标的控件
	 */
	private ImageView account_image;
	/**
	 * 在Tab布局上显示‘发现音乐’标题的控件
	 */
	private TextView discover_music_text;
	/**
	 * 在Tab布局上显示‘我的音乐’标题的控件
	 */
	private TextView my_music_text;
	/**
	 * 在Tab布局上显示‘朋友’标题的控件
	 */
	private TextView friends_text;
	/**
	 * 在Tab布局上显示‘账号’标题的控件
	 */
	private TextView account_text;
	/**
	 * 用于对Fragment进行管理
	 */
	private FragmentManager fragmentManager;

	/**
	 * ‘我的音乐’界面‘下载音乐’
	 */
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		requestWindowFeature(Window.FEATURE_NO_TITLE);
		setContentView(R.layout.activity_main);
		// 初始化布局元素
		initViews();
		fragmentManager = getFragmentManager();
		// 第一次启动时选中第0个tab
		setTabSelection(0);
	}

	private void initViews() {
		// 四个布局
		discover_music_layout = findViewById(R.id.discover_layout);
		my_music_layout = findViewById(R.id.my_layout);
		friends_layout = findViewById(R.id.friends_layout);
		account_layout = findViewById(R.id.account_layout);

		// 四个图片
		discover_music_image = (ImageView) findViewById(R.id.discover_image);
		my_music_image = (ImageView) findViewById(R.id.my_image);
		friends_image = (ImageView) findViewById(R.id.friends_image);
		account_image = (ImageView) findViewById(R.id.account_image);

		// 四个标题
		discover_music_text = (TextView) findViewById(R.id.discover_text);
		my_music_text = (TextView) findViewById(R.id.my_text);
		friends_text = (TextView) findViewById(R.id.friends_text);
		account_text = (TextView) findViewById(R.id.account_text);
		// 设置监听事件
		discover_music_layout.setOnClickListener(this);
		my_music_layout.setOnClickListener(this);
		friends_layout.setOnClickListener(this);
		account_layout.setOnClickListener(this);
	}

	@Override
	public void onClick(View v) {
		switch (v.getId()) {
		case R.id.discover_layout:
			// 当点击了‘发现音乐’tab时,选中第1个tab
			setTabSelection(0);
			break;
		case R.id.my_layout:
			// 当点击了‘我的音乐’tab时,选中第2个tab
			setTabSelection(1);
			break;
		case R.id.friends_layout:
			// 当点击了‘朋友’tab时,选中第3个tab
			setTabSelection(2);
			break;
		case R.id.account_layout:
			// 当点击了‘账号’tab时,选中第4个tab
			setTabSelection(3);
			break;
		default:
			break;

		}

	}

	/**
	 * 根据传入的index参数来设置选中的tab页。
	 *
	 * @param index
	 *            每个tab页对应的下标。0表示发现音乐,1表示我的音乐,2表示朋友,3表示账号。
	 */
	private void setTabSelection(int index) {
		// 每次选中之前要清除掉上次选中的状态
		clearSelection();
		// 开启一个Fragment事务
		FragmentTransaction fragmentTransaction = fragmentManager
				.beginTransaction();
		// 先隐藏掉所有的Fragment,以防止有多个Fragment显示在界面上的情况
		HideFragments(fragmentTransaction);
		switch (index) {
		case 0:// 当点击了‘发现音乐’时,改变文字的颜色
			discover_music_text.setTextColor(Color.BLUE);
			if (discoverMusicFragment == null) {
				// 如果discoverMusicFragment为空,则创建一个并添加到界面上
				discoverMusicFragment = new DiscoverMusicFragment();
				fragmentTransaction.add(R.id.Content, discoverMusicFragment);
			} else {
				// 如果discoverMusicFragment不为空,则将其显示出来
				fragmentTransaction.show(discoverMusicFragment);
			}
			break;
		case 1:// 当点击了‘我的音乐’时,改变文字的颜色
			my_music_text.setTextColor(Color.BLUE);
			if (myMusicFragment == null) {
				// 如果myMusicFragment为空,则创建一个并添加到界面上
				myMusicFragment = new MyMusicFragment();
				fragmentTransaction.add(R.id.Content, myMusicFragment);
			} else {
				// 如果myMusicFragment不为空,则将其显示出来
				fragmentTransaction.show(myMusicFragment);
			}
			break;
		case 2:// 当点击了‘朋友’时,改变文字的颜色
			friends_text.setTextColor(Color.BLUE);
			if (friendsFragment == null) {
				// 如果friendsFragment为空,则创建一个并添加到界面上
				friendsFragment = new FriendsFragment();
				fragmentTransaction.add(R.id.Content, friendsFragment);
			} else {
				// 如果friendsFragment不为空,则将其显示出来
				fragmentTransaction.show(friendsFragment);
			}
			break;
		case 3:// 当点击了‘账号’时,改变文字的颜色
			account_text.setTextColor(Color.BLUE);
			if (accountFragment == null) {
				// 如果accountFragment为空,则创建一个并添加到界面上
				accountFragment = new AccountFragment();
				fragmentTransaction.add(R.id.Content, accountFragment);
			} else {
				// 如果accountFragment不为空,则将其显示出来
				fragmentTransaction.show(accountFragment);
			}
			break;
		default:
			break;
		}
		fragmentTransaction.commit();
	}

	/**
	 * 将所有的Fragment都设置为隐藏状态
	 *
	 * @param fragmentTransaction
	 *            用于对Fragment执行操作的事务
	 */
	private void HideFragments(FragmentTransaction fragmentTransaction) {
		if (discoverMusicFragment != null) {
			fragmentTransaction.hide(discoverMusicFragment);
		}
		if (myMusicFragment != null) {
			fragmentTransaction.hide(myMusicFragment);
		}
		if (friendsFragment != null) {
			fragmentTransaction.hide(friendsFragment);
		}
		if (accountFragment != null) {
			fragmentTransaction.hide(accountFragment);
		}
	}

	/**
	 * 清除掉所有选中状态
	 */
	private void clearSelection() {
		discover_music_text.setTextColor(Color.parseColor("#82858b"));
		my_music_text.setTextColor(Color.parseColor("#82858b"));
		friends_text.setTextColor(Color.parseColor("#82858b"));
		account_text.setTextColor(Color.parseColor("#82858b"));
	}

	@Override
	public boolean onCreateOptionsMenu(Menu menu) {
		// Inflate the menu; this adds items to the action bar if it is present.
		getMenuInflater().inflate(R.menu.main, menu);
		return true;
	}

}

代码看不懂的大家可以参照上面的注释。

下面我再带大家简单梳理一遍。在onCreate()方法中先是调用了initViews()来获取每个控件的实例,并给相应的控件设置好点击事件,然后调用setTabSelection()方法设置默认的选中项,这里传入的0说明默认选中第1个Tab项。

那么setTabSelection()方法中又是如何处理的呢?可以看到,首先第一步是调用clearSelection()方法来清理掉之前的选中状态,然后开启一个Fragment事务,并隐藏掉所有的Fragment,以防止有多个Fragment显示在界面上。接下来根据传入的index参数判断出选中的是哪一个Tab项,并改变该Tab项的图标和文字颜色,然后将相应的Fragment添加到界面上。这里注意一个细节,我们添加Fragment的时候并没有使用replace()方法,而是会先判断一下该Fragment是否为空,如果是空的则调用add()方法添加一个进来,如果不是空的则直接调用show()方法显示出来即可。那么为什么没有使用replace()方法呢?这是因为replace()方法会将被替换掉的那个Fragment彻底地移除掉,该Fragment的生命周期就结束了。当再次点击刚才那个Tab项的时候,就会让该Fragment的生命周期重新开始,onCreate()、onCreateView()等方法都会重新执行一遍。这显然不是我们想要的,也和ActivityGroup的工作原理不符,因此最好的解决方案就是使用hide()和show()方法来隐藏和显示Fragment,这就不会让Fragment的生命周期重走一遍了。

设置完默认选中项后,我们当然还可以通过点击Tab项来自由地切换界面,这就会进入到onClick()方法中。onClick()方法中的逻辑判断非常简单,当点击了消息标签时就会选中第1个tab项,点击联系人标签时就会选中第2个tab项,点击动态标签时就会选中第3个tab项,点击设置标签时就会选中第4个tab项。都是通过调用setTabSelection()方法来完成的,只是传入了不同的参数。

好了,这样我们就将全部的代码都编写完成了。

大家赶紧去试一下吧!

还有一点,这个效果在横屏的时候也可以的哦!

好了,今天的讲解到此结束,有疑问的朋友请在下面留言!谢谢!

时间: 2024-10-27 19:51:03

Android Fragment应用实战(音乐播放器界面)的相关文章

Android多媒体框架对音乐播放器的支持

下面介绍一下Andriod多媒体框架对开发者提供的支持有哪些. 1. MediaScannerReceiver 这个广播接收者在接收到ACTION_BOOT_COMPLETED.ACTION_MEDIA_MOUNTED或 ACTION_MEDIA_SCANNER_SCAN_FILE 广播时对SD卡中的图片.音乐和视频文件进行了扫描,因为扫描不能影响用户使用,这里启动了一个服务MediaScannerService,扫描的文件类型如下: /* Audio */ addFileType("MP3&q

android 利用 service 实现音乐播放

今天的播放器利用了service,播放音乐在service端,进度条在activity端,因此主要的工作就是activity和service的交互,本文将利用IBinder进行交互,主要是activity可以调用service的函数,可以参考我的这篇博客. 本文关键点:利用利用IBinder实现activity 控制service 实现功能: 1 控制播放进度: activity调用service的函数,对MediaPlayer进行控制.包括启动时的播放和滑动seekbar时,对MediaPla

Android开发---MediaPlayer简单音乐播放器

Android开发-MediaPlayer简单音乐播放器 功能介绍 实现一个简单的播放器,类似网易云音乐形式,功能包括: 播放.暂停,停止,退出功能: 后台播放功能: 进度条显示播放进度.拖动进度条改变进度功能: 播放时图片旋转,显示当前播放时间功能: 界面样式 功能实现 1. MediaPlayer的实现 MediaPlayer常用方法介绍 MediaPlayer的实现包括初始化MediaPlayer,MediaPlayer的功能实现,包括播放.暂停.停止.离开等,具体细节如下: MediaP

音乐播放器界面的原型设计

音乐播放器界面的原型设计 音乐播放器是我们每天都要用到的软件,因此其界面的美观与实用就显得格外重要.结合目前主流的播放器设计理念,我用墨刀画了个小原型. 介绍 或者直接戳 musicplayer 界面 红心 下一曲 主界面 链接 可以点击链接musicplayer 不足之处 好多功能画原型特别麻烦,还是有机会代码实现比较直观,功能也会更加完善一些. 原文地址:https://www.cnblogs.com/luuu/p/9763864.html

蓝懿IOS实战音乐播放器

今天刘国斌老师教了实战的一个demo,仿写音乐播放器 // 1. 如果在viewcontroller里跳转到别的页面里,另一个viewcontroller是storyboard拖出来的,初始化页面需要用self.stroy 再调用方法,instantiateViewControllerWithIdentifier // 2. 但是如果在其他的页面不是viewcontroller里再跳转到另一个页面,那个页面也是用stroyboard拖出来的,那么就要用 UIStoryboard 通过自己的mai

Android MVC实现一个音乐播放器

MVCPlayer 我尝试在android上使用MVC模式来开发一个音乐播放器.GitHub地址:https://github.com/skyhacker2/MVCPlayer 什么是MVC 来自维基百科 控制器 Controller - 负责转发请求,对请求进行处理. 视图 View - 界面设计人员进行图形界面设计. 模型 Model - 程序员编写程序应有的功能(实现算法等等).数据库专家进行数据管理和数据库设计(可以实现具体的功能). 那么在android上,Activity就是Cont

Android基于发展Service音乐播放器

这是一个基于Service组件的音乐播放器,程序的音乐将会由后台的Service组件负责播放,当后台的播放状态改变时,程序将会通过发送广播通知前台Activity更新界面:当用户单击前台Activity的界面button或拖动进度条时,系统通过发送广播通知后台Service来改变播放状态和播放指定音乐. 程序执行效果图:         watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvZmVuZ3l1emhlbmdmYW4=/font/5a6L5L2T/

【黑马Android】(11)音乐播放器/视频播放器/照相机/常见对话框/notification通知/样式和主题/帧动画/传感器/应用程序反编译与安装

音乐播放器api <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:or

Android Fragment应用实战,使用碎片向ActivityGroup说再见

转载请注明出处:http://blog.csdn.net/guolin_blog/article/details/13171191 现在Fragment的应用真的是越来越广泛了,之前Android在3.0版本加入Fragment的时候,主要是为了解决Android Pad屏幕比较大,空间不能充分利用的问题,但现在即使只是在手机上,也有很多的场景可以运用到Fragment了,今天我们就来学习其中一个特别棒的应用技巧. 很多手机应用都会有一个非常类似的功能,即屏幕的下方显示一行Tab标签选项,点击不