android左右侧滑菜单实例代码介绍

来源:爱站网时间:2022-12-05编辑:网友分享
本篇文章主要讲解的是android左右侧滑菜单实例代码内容,文章内容用图文和代码形式来给大家进行了讲解,如果感兴趣,那就来了解了解,希望爱站技术频道网站所分享的资料对你有帮助。

在android开发中,左右侧滑菜单的开发已成为我们现在开发的必备技术之一,再次之前,我没有做过相类似的demo,但是项目的开发有要求有这样的效果,而且大家都知道,虽然网上由开源的代码,但是不仅种类多,看着一个头两个大,而且代码不好分离。因此我们无法简化成自己的demo,为此,还查阅了很多别人的资料,最后做出了自己想要的效果,具体效果如下所示:

图1 左边菜单

这里写图片描述 

图2 右边菜单

这里写图片描述

今天要做的是把两个效果结合在一起,左右侧滑菜单

话不多说,直接上代码:

activity_main.xml:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

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" >

 

 android.support.v4.widget.DrawerLayout

 android:id="@+id/dl"

 android:layout_width="match_parent"

 android:layout_height="match_parent"

 android:layout_above="@+id/tv" >

 

 

 FrameLayout

  android:id="@+id/fl"

  android:layout_width="match_parent"

  android:layout_height="match_parent" >

 FrameLayout>

 

 ListView

  android:id="@+id/lv"

  android:layout_width="match_parent"

  android:layout_height="match_parent"

  android:background="#ff0"

  android:layout_gravity="left" >

 ListView>

 

 LinearLayout

  android:id="@+id/ll"

  android:layout_width="200dp"

  android:layout_height="match_parent"

  android:layout_gravity="right"

  android:background="#0ff"

  android:orientation="vertical" >

 

  ImageView

  android:layout_width="100dp"

  android:layout_height="100dp"

  android:src="@drawable/ic_launcher" />

 

  TextView

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  android:layout_margin="20dp"

  android:text="呵呵呵" />

 LinearLayout>

 android.support.v4.widget.DrawerLayout>

 

LinearLayout>


frag_main.xml:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

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:gravity="center"

 android:orientation="vertical" >

 

 TextView

 android:id="@+id/tv_title"

 android:layout_width="wrap_content"

 android:layout_height="wrap_content"

 android:layout_margin="20dp"

 android:text="标题" />

 

 

 ImageView

 android:id="@+id/iv"

 android:layout_width="100dp"

 android:layout_height="100dp"

 android:src="@drawable/ic_launcher" />

 

LinearLayout>

MainActivity.java:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117     

118

119

120

121

122

123

124

125

import java.util.ArrayList;

import java.util.List;

 

import com.example.day12drawerlayout1.fragment.MainFragment;

 

import android.os.Bundle;

import android.support.v4.app.FragmentActivity;

import android.support.v4.app.FragmentTransaction;

import android.support.v4.widget.DrawerLayout;

import android.support.v4.widget.DrawerLayout.DrawerListener;

import android.util.Log;

import android.view.Gravity;

import android.view.View;

import android.widget.AdapterView;

import android.widget.AdapterView.OnItemClickListener;

import android.widget.ArrayAdapter;

import android.widget.ListView;

 

/**

 * 1、静态和动态Fragment的使用

 * 静态 直接在布局中使用

 * 动态 使用管理器 得到一个事务 然后使用事务调用replace方法 把一个Fragment对象替换到指定id的FramLayout帧布局中

 * @author Administrator

 *

 */

public class MainActivity extends FragmentActivity {

 

 DrawerLayout dl;

 ListView lv;

 

 @Override

 protected void onCreate(Bundle savedInstanceState) {

 super.onCreate(savedInstanceState);

 setContentView(R.layout.activity_main);

 

 dl = (DrawerLayout) findViewById(R.id.dl);

 // FrameLayout fl = (FrameLayout) findViewById(R.id.fl);

 // fl.setOnClickListener(new OnClickListener() {

 // 

 //  @Override

 //  public void onClick(View v) {

 //  // TODO Auto-generated method stub

 //  dl.openDrawer(Gravity.RIGHT);

 //  }

 // });

 

 /**

  * set 一般是只有一个 如果再次调用会把前面的覆盖掉

  * 和

  * add 把数据添加进去 不会覆盖之前的内容

  */

 dl.addDrawerListener(new DrawerListener() {

 

  //滑动状态发生改变的时候 会调用该方法

  @Override

  public void onDrawerStateChanged(int arg0) {

  // TODO Auto-generated method stub

  Log.i("===============================", "StateChanged" + arg0);

  }

 

  //监听滑动过程中 边界的位置

  @Override

  public void onDrawerSlide(View arg0, float arg1) {

  // TODO Auto-generated method stub

  Log.i("===============================", "DrawerSlide" + arg1);

  }

 

  //监听侧拉是否完全展开

  @Override

  public void onDrawerOpened(View arg0) {

  // TODO Auto-generated method stub

  Log.i("===============================", "DrawerOpened");

  }

 

  //监听侧拉是否被关闭

  @Override

  public void onDrawerClosed(View arg0) {

  // TODO Auto-generated method stub

  Log.i("===============================", "DrawerClosed");

  }

 });

 

 showMain();

 showLV();

 }

 

 public DrawerLayout getDL(){

 return dl;

 }

 

 private void showLV() {

 lv = (ListView) findViewById(R.id.lv);

 final List list = new ArrayList();

 for (int i = 1; i 30; i++) {

  list.add("条目"+i);

 }

 ArrayAdapter adapter = new ArrayAdapter(this, android.R.layout.simple_list_item_1, list);

 lv.setAdapter(adapter);

 

 lv.setOnItemClickListener(new OnItemClickListener() {

 

  @Override

  public void onItemClick(AdapterView> parent, View view,

   int position, long id) {

  // TODO Auto-generated method stub

  dl.closeDrawer(Gravity.LEFT);

  //把点击的listview控件中的值 赋值到主Fragment对象中

  MainFragment fragment = (MainFragment) getSupportFragmentManager().findFragmentByTag("main");

  fragment.setData(list.get(position));

  }

 });

 }

 

 /**

 * 在侧拉效果的页面中 用来显示主页面的效果

 */

 private void showMain() {

 //动态加载Fragment

 FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();

 //参数1:FramLayout控件的id, 要替换的Fragment对象

 transaction.replace(R.id.fl, new MainFragment(), "main");

 transaction.commit();

 }

 

}

MainFragment.java:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

import android.os.Bundle;

import android.support.annotation.Nullable;

import android.support.v4.app.Fragment;

import android.view.Gravity;

import android.view.LayoutInflater;

import android.view.View;

import android.view.View.OnClickListener;

import android.view.ViewGroup;

import android.widget.ImageView;

import android.widget.TextView;

 

import com.example.day12drawerlayout1.MainActivity;

import com.example.day12drawerlayout1.R;

 

public class MainFragment extends Fragment{

 TextView tv;

 ImageView iv;

 

 @Override

 @Nullable

 public View onCreateView(LayoutInflater inflater,

  @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {

 

 View view = View.inflate(getActivity(), R.layout.frag_main, null);

 

 tv = (TextView) view.findViewById(R.id.tv_title);

 iv = (ImageView) view.findViewById(R.id.iv);

 

 iv.setOnClickListener(new OnClickListener() {

 

  @Override

  public void onClick(View v) {

  // TODO Auto-generated method stub

  MainActivity activity = (MainActivity) getActivity();

  activity.getDL().openDrawer(Gravity.RIGHT);

  }

 });

 

 return view;

 }

 

 public void setData(String str){

 tv.setText(str);

 }

}

android左右侧滑菜单实例代码介绍不知道你看懂了没有,想要获取更多关于android开发这方面的资料,可以来js.aizhan.com平台寻找查阅,小编每天都会更新不一样的内容给你们看。

上一篇:Android实时搜索框的实例代码

下一篇:Android开发之地理定位的实例代码

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载