侧滑菜单的使用和监听事件的设置

这段代码实现的功能是通过侧滑菜单来进行事件的改变,好累,今天这段代码真的伤人,本来思路是正确的,结果log打不出来,然后就默默的调试了很久,最后才可以的,言归正传,这里我们需要先下载侧滑菜单的三方框架,http://github.com/jfeinstein10/slidingmenu,这个是下载框架的地址,下载完成后,我们需要进行我们的项目和这个项目的链接,

我们导入这个项目的lib,然后在我们的项目下的perperity下添加库的关联,如果我们的suppeot.v4的包和他的包的版本不同的话,我们最后使用他的support包,这里使用的方法就是在添加关联之前先将support包复制到libs下,大概就这样了,代码如下:

主activity

package com.jk.sliding_menu_fragment;

//这段代码显示的一个通过侧滑菜单来控制activity中显示的侧滑菜单

import java.util.ArrayList;

import com.jeremyfeinstein.slidingmenu.lib.SlidingMenu;

import android.os.Bundle;
import android.app.Activity;
import android.app.Fragment;
import android.app.FragmentManager;
import android.app.FragmentTransaction;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.Toast;

public class MainActivity extends Activity implements OnClickListener {
	// 声明我们的侧滑菜单的view
	View view;
	// 管理我们的策划菜单
	SlidingMenu sm;
	// 三个不同的点击的文件
	Button btn_red, btn_blue, btn_yellow;
	// 定义三个颜色常量
	final int red = 0;
	final int blue = red + 1;
	final int yellow = blue + 1;
	// 设置一个list来放置fragment
	ArrayList<Fragment> list = new ArrayList<Fragment>();

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		// 设置布局
		setContentView(R.layout.activity_main);
		initSlidingMenu();
		initFragment();
	}

	private void initFragment() {
		// 将fragment放入list里面
		list.add(new Red_Fragment());
		list.add(new Blue_Fragment());
		list.add(new Yellow_Fragment());

	}

	private void initSlidingMenu() {
		sm = new SlidingMenu(this);
		sm.setSelectorEnabled(true);

		// 设置从左边划出菜单
		sm.setMode(SlidingMenu.LEFT);
		// 设置划出的触发方式
		sm.setTouchModeAbove(SlidingMenu.TOUCHMODE_FULLSCREEN);

		// 设置弹出宽度
		sm.setBehindWidth(50);

		// 设置高度
		sm.attachToActivity(this, SlidingMenu.SLIDING_CONTENT);

		// 设置SlidingMenu显示的View
		view = LayoutInflater.from(this).inflate(R.layout.menu_btn, sm, false);
		// 为三个按钮添加监听事件
		view.findViewById(R.id.btn_blue).setOnClickListener(this);
		view.findViewById(R.id.btn_red).setOnClickListener(this);
		view.findViewById(R.id.btn_yellow).setOnClickListener(this);
		// 设置显示侧滑菜单视图
		sm.setMenu(view);

	}

	@Override
	public void onClick(View v) {
		// 对不同的按钮设置不同的点击事件
		int id = v.getId();
		switch (id) {
		case R.id.btn_red:
			Toast.makeText(MainActivity.this, "red", Toast.LENGTH_SHORT).show();
			action(red);
			break;
		case R.id.btn_blue:
			Toast.makeText(MainActivity.this, "blue", Toast.LENGTH_SHORT)
					.show();
			action(blue);
			break;
		case R.id.btn_yellow:
			Toast.makeText(MainActivity.this, "yellow", Toast.LENGTH_SHORT)
					.show();
			action(yellow);
			break;

		}

	}

	private void action(int positon) {
		// 设置我们需要显示的fragment
		FragmentTransaction fragmenttransaction = getFragmentManager()
				.beginTransaction();
		fragmenttransaction.replace(R.id.re_content, list.get(positon));
		fragmenttransaction.commit();
		sm.toggle();

	}

}

因为3个fragment基本相同,这里就只贴一个

package com.jk.sliding_menu_fragment;

import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

public class Blue_Fragment extends Fragment {
	@Override
	public View onCreateView(LayoutInflater inflater, ViewGroup container,
			Bundle savedInstanceState) {

		View view=inflater.inflate(R.layout.fragment_blue, container,false);
		return view;
	}

}

一个fragment的布局

<?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:orientation="vertical"
    android:id="@+id/ll_background"
    android:background="@color/blue" >

</LinearLayout>

主activity

<RelativeLayout 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:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >
<RelativeLayout
    android:id="@+id/re_content"
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    ></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="match_parent"
    android:orientation="vertical" >
    <Button
        android:id="@+id/btn_red"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:text="red"/>
     <Button
        android:id="@+id/btn_blue"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:text="blue"/>
      <Button
        android:id="@+id/btn_yellow"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:text="yellow"/>

</LinearLayout>

自定义颜色的布局

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <color name="red">#FFFF0000</color>
    <color name="blue">#FF0000ff</color>
    <color name="yellow">#FFFFff00</color>
</resources>

时间: 2024-10-11 16:30:19

侧滑菜单的使用和监听事件的设置的相关文章

Android 属性动画监听事件与一个菜单的例子

简单监听事件 package com.example.animation; import android.animation.Animator; import android.animation.Animator.AnimatorListener; import android.animation.AnimatorListenerAdapter; import android.animation.AnimatorSet; import android.animation.ObjectAnimat

Android——监听事件总结1

各种监听事件 1.按钮 Button(1)点击监听 btn_1.setOnClickListener(new View.OnClickListener() { (2)长按监听 btn_1.setOnLongClickListener(new View.OnLongClickListener() { 2.单选框 RadioGroup radio_gp.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() { 3.复选

非专业码农 JAVA学习笔记 用户图形界面设计与实现-所有控件的监听事件

用户图形界面设计与实现-监听事件 System.applet.Applet (一)用户自定义成分 1.绘制图形 Public voit piant(Ghraphics g){  g.drawLine等图形名称(坐标1234);g.file图形名(坐标123)} 2.设置字体-Font类 (1)定义font:Font myfont=new Font(“字体”,”样式”,字号); 例如:Font myfont=new Font(“宋体”,Font.BOLD,12); (2)引用定义的Font:类/容

PopupMenu-使用实例跟监听事件

今天需要给一个控件添加弹出菜单功能.就顺便学习了下popupMenu的使用,记录下来. 它的使用其实也非常的简单,看如下代码 popupMenu = new PopupMenu(MainActivity.this, eText); popupMenu.getMenuInflater().inflate(R.menu.main,popupMenu.getMenu()); Menu menu = popupMenu.getMenu(); menu.findItem(R.id.search).setV

JAVAscript学习笔记 js句柄监听事件 第四节 (原创) 参考js使用表

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>句柄添加监听事件</title> <script type="text/javascript" src="tzy.js"></script> </head> <body>

浅谈postMessage多页面监听事件

最近做了一个Echarts和Highcharts多图多页面连动的效果,就用到postMessage 如下介绍: 最开始在最外围的页面也就是所有页面的父级页面添加postMessage监听事件以便监听下面子级页面的动态,代码: window.parent.addEventListener('message',function(e){ if(e.source != window.parent) return; var names = localStorage.getItem("toName"

ios ---键盘的监听事件

//在view将要出现的时候重载viewWillAppear方法添加通知 监听事件 keyboardWillShow:  keyboardWillHide: - (void)viewWillAppear:(BOOL)animated { [super viewWillAppear:animated]; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:) name:

js html 交互监听事件学习

事件处理程序(handler): HTML事件处理程序: <input type="button" value="Click Here" onclick="showMessage();" /> <script type="text/javascript"> function showMessage() { alert('Clicked!'); } JavaScript指定事件处理程序: <inpu

Android中Button的五种监听事件

简单聊一下Android中Button的五种监听事件: 1.在布局文件中为button添加onClick属性,Activity实现其方法2.匿名内部类作为事件监听器类3.内部类作为监听器4.Activity本身作为事件监听器,实现onClickListener5.外部类作为监听器 ButtonListenerActivity.class public class ButtonListenerActivity extends AppCompatActivity implements View.On