- 浏览: 682420 次
- 性别:
- 来自: 上海
文章分类
最新评论
-
Hippyqq:
谢谢很有用,
java中遍历MAP的几种方法 -
XSoftlab:
超详细。。。Java map 详解 - 用法、遍历、排序、常用 ...
java中遍历MAP的几种方法 -
bobo22:
importnet.sf.fmj.ui.application ...
java来调用电脑视频摄像头拍照进行截图 -
qq981378640:
#include <stdio.h>
int ...
c语言中unsigned类型和普通类型间的转换 -
qq981378640:
楼主你这样有点复杂了,直接这样写更好更方便
#include ...
c语言中unsigned类型和普通类型间的转换
android程序,许多时候需要菜单栏显示在底部或顶部,但是没有很好的组建供程序员调用,过自定义了一个视图,用来实现底部菜单栏,效果如下图:
实现的主要代码:
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.main);
linearLayout = (LinearLayout) findViewById(R.id.home);
linearLayout.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
linearLayout
.setBackgroundResource(R.drawable.tab_two_highlight);
publish.setBackgroundResource(R.drawable.tab_one_normal);
change.setBackgroundResource(R.drawable.tab_one_normal);
more.setBackgroundResource(R.drawable.tab_one_normal);
}
});
linearLayout
.setBackgroundResource(R.drawable.tab_two_highlight);
publish = (LinearLayout) findViewById(R.id.publish);
publish.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
publish.setBackgroundResource(R.drawable.tab_two_highlight);
linearLayout.setBackgroundResource(R.drawable.tab_one_normal);
change.setBackgroundResource(R.drawable.tab_one_normal);
more.setBackgroundResource(R.drawable.tab_one_normal);
}
});
change = (LinearLayout) findViewById(R.id.change);
change.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
change.setBackgroundResource(R.drawable.tab_two_highlight);
linearLayout.setBackgroundResource(R.drawable.tab_one_normal);
publish.setBackgroundResource(R.drawable.tab_one_normal);
more.setBackgroundResource(R.drawable.tab_one_normal);
}
});
more = (LinearLayout) findViewById(R.id.more);
more.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
more.setBackgroundResource(R.drawable.tab_two_highlight);
linearLayout.setBackgroundResource(R.drawable.tab_one_normal);
publish.setBackgroundResource(R.drawable.tab_one_normal);
change.setBackgroundResource(R.drawable.tab_one_normal);
}
});
}
配置文件实现:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal" android:layout_width="fill_parent"
android:layout_height="wrap_content">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="80px"
android:layout_height="wrap_content" android:id="@+id/home"
android:background="@drawable/tab_one_normal">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="@string/home"
android:gravity="center" android:paddingTop="29px"
android:background="@drawable/home" />
</LinearLayout>
<ImageView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:src="@drawable/line" />
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="80px"
android:layout_height="wrap_content" android:background="@drawable/tab_one_normal"
android:id="@+id/publish">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="@string/publish"
android:gravity="center" android:paddingTop="29px"
android:background="@drawable/publish" />
</LinearLayout>
<ImageView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:src="@drawable/line" />
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="80px" android:id="@+id/change"
android:layout_height="wrap_content" android:background="@drawable/tab_one_normal">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="@string/change"
android:gravity="center" android:paddingTop="29px"
android:background="@drawable/change" />
</LinearLayout>
<ImageView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:src="@drawable/line" />
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="80px" android:id="@+id/more"
android:layout_height="wrap_content" android:background="@drawable/tab_one_normal">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="@string/more"
android:gravity="center" android:paddingTop="29px"
android:background="@drawable/more" />
</LinearLayout>
</LinearLayout>
源代码见:http://easymorse.googlecode.com/svn/trunk/android.bottom
来自http://wangjun.easymorse.com/?p=495
实现的主要代码:
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.main);
linearLayout = (LinearLayout) findViewById(R.id.home);
linearLayout.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
linearLayout
.setBackgroundResource(R.drawable.tab_two_highlight);
publish.setBackgroundResource(R.drawable.tab_one_normal);
change.setBackgroundResource(R.drawable.tab_one_normal);
more.setBackgroundResource(R.drawable.tab_one_normal);
}
});
linearLayout
.setBackgroundResource(R.drawable.tab_two_highlight);
publish = (LinearLayout) findViewById(R.id.publish);
publish.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
publish.setBackgroundResource(R.drawable.tab_two_highlight);
linearLayout.setBackgroundResource(R.drawable.tab_one_normal);
change.setBackgroundResource(R.drawable.tab_one_normal);
more.setBackgroundResource(R.drawable.tab_one_normal);
}
});
change = (LinearLayout) findViewById(R.id.change);
change.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
change.setBackgroundResource(R.drawable.tab_two_highlight);
linearLayout.setBackgroundResource(R.drawable.tab_one_normal);
publish.setBackgroundResource(R.drawable.tab_one_normal);
more.setBackgroundResource(R.drawable.tab_one_normal);
}
});
more = (LinearLayout) findViewById(R.id.more);
more.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
more.setBackgroundResource(R.drawable.tab_two_highlight);
linearLayout.setBackgroundResource(R.drawable.tab_one_normal);
publish.setBackgroundResource(R.drawable.tab_one_normal);
change.setBackgroundResource(R.drawable.tab_one_normal);
}
});
}
配置文件实现:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal" android:layout_width="fill_parent"
android:layout_height="wrap_content">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="80px"
android:layout_height="wrap_content" android:id="@+id/home"
android:background="@drawable/tab_one_normal">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="@string/home"
android:gravity="center" android:paddingTop="29px"
android:background="@drawable/home" />
</LinearLayout>
<ImageView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:src="@drawable/line" />
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="80px"
android:layout_height="wrap_content" android:background="@drawable/tab_one_normal"
android:id="@+id/publish">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="@string/publish"
android:gravity="center" android:paddingTop="29px"
android:background="@drawable/publish" />
</LinearLayout>
<ImageView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:src="@drawable/line" />
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="80px" android:id="@+id/change"
android:layout_height="wrap_content" android:background="@drawable/tab_one_normal">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="@string/change"
android:gravity="center" android:paddingTop="29px"
android:background="@drawable/change" />
</LinearLayout>
<ImageView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:src="@drawable/line" />
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="80px" android:id="@+id/more"
android:layout_height="wrap_content" android:background="@drawable/tab_one_normal">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="@string/more"
android:gravity="center" android:paddingTop="29px"
android:background="@drawable/more" />
</LinearLayout>
</LinearLayout>
源代码见:http://easymorse.googlecode.com/svn/trunk/android.bottom
来自http://wangjun.easymorse.com/?p=495
发表评论
-
android应用 获取本地指定类型文件 的两种最优方法
2013-04-07 16:29 14128刚因为项目有需求,需求移动应用获取本地文件有下面两个 第一个 ... -
android 滚动条
2011-01-17 14:05 2086在ListView中添加属性: android:scrollb ... -
LayoutInflater的使用 android
2010-10-28 15:54 1145在实际开发种LayoutInflater这个类还是非常有用的, ... -
Android虚拟机大屏幕设置(开发平板电脑程序)
2010-08-31 10:33 2942如果使用android进行大屏幕开发,比如开发基于androi ... -
adb shell下使用命令行删除android系统中指定文件和文件夹
2010-08-25 13:07 26302记录一下命令: tools>adb remount t ... -
Android permission 访问权限大全
2010-07-30 23:03 1148androidmanifest.xml中声明相关权限请求, 完 ... -
Android ExpandableListActivity 学习笔记
2010-07-27 21:33 3391An activity that displays an ex ... -
[转]android animation的应用实例
2010-07-20 23:13 1846此文件名为myanimation.xml 位于 res/ani ... -
Android入门第八篇之GridView(九宫图)
2010-07-15 17:32 2520GridView更是实现九宫图的首选!本文就是介绍如何使用Gr ... -
Android入门第五篇之TableLayout (二)//生成10行,8列的表格
2010-07-15 14:02 4175TableLayout添加数据(9宫图也可以用TableLay ... -
Android工具之Hierarchy Viewer--分析应用程序UI布局
2010-07-14 23:37 3668Android SDK提供的Hierarchy Viewer工 ... -
apk打包
2010-07-14 23:27 10379什么是apk文件 APK是Android Package Ki ... -
Android Intent的几种用法全面总结
2010-07-14 18:05 1177Intent, 用法 Intent应该算是Android中特有 ... -
进度条(ProgressBar)拖动条(SeekBar)android
2010-07-12 17:28 16765本文源自http://www.cnblogs.com/Terr ... -
TextView 在xml文件中的解释 android
2010-07-11 19:27 6868包位置:android.widget.TextView X ... -
Activity的跳转与传值
2010-07-05 16:54 3185Activity跳转与传值,主要是通过Intent类来连接多个 ... -
android:属性 layout_alignParentRight android:paddingRight
2010-07-03 22:59 11535android:layout_alignParentRight ... -
android模拟器输入中文
2010-06-29 16:50 2805首先:在设置里,选区域和文本,里面把谷歌拼音输入法复选上,就o ... -
Android Map开发基础知识学习笔记
2010-06-29 11:14 3444注册 Android 地图 API 密钥 运行:keyto ... -
Android MapView 申请apiKey
2010-06-29 11:01 12971. 首先先要获取你的debug keystore位置: 打开 ...
相关推荐
本示例代码展示了如何在Android应用中自定义底部菜单栏并实现切换效果。以下是对这段代码的详细解析: 首先,在`onCreate`方法中,我们调用`super.onCreate(savedInstanceState)`初始化Activity,并使用`...
android底部菜单栏demo
这篇博客"Android--底部菜单栏实现"可能详细介绍了如何在Android项目中实现这样的功能。由于没有直接提供博客的具体内容,我会根据通常的实现方法来讲解这一主题。 首先,底部菜单栏的实现通常涉及到`Bottom...
在Android应用开发中,"Fragment碎片"是一种可重用的UI组件,它可以在Activity的不同部分显示...通过以上步骤,我们就能在Android应用中实现一个功能完整且视觉效果良好的底部菜单栏,让用户在不同功能模块间轻松切换。
这个“Android底部菜单栏”教程是为初学者设计的,旨在帮助他们理解如何在Android应用中实现这一功能。我们将主要探讨TabHost组件,它是Android早期版本中用来实现标签页式导航的一种方式。 首先,我们需要了解底部...
在`GreatWallApp`项目中,可能已经实现了这样的底部菜单,包括消息数提醒功能。消息数提醒通常需要与应用的数据模型相结合,当有新消息时,通过`BadgeView`或者在底部菜单图标上添加一个小红点来显示未读消息的数量...
本教程将详细讲解如何创建一个仿微信底部菜单栏,实现类似微信聊天界面底部菜单的功能,包括菜单字体的显示与隐藏、菜单项的动态缩放等效果。 一、底部菜单栏设计 底部菜单栏(Bottom Navigation Bar)通常包含3到5...
总的来说,创建Android底部菜单栏涉及到布局设计、菜单资源定义、事件监听以及可能的样式定制。开发者需要对Android的UI组件和生命周期有深入理解,才能构建出用户体验良好的底部导航功能。通过不断实践和优化,我们...
在Android应用开发中,底部...通过以上方法,你可以在Android应用中轻松实现底部菜单栏,无论是简单的Fragment切换还是结合ViewPager的复杂场景。记得在实际开发中根据项目需求进行调整和优化,以提供最佳的用户体验。
在Android应用开发中,创建一个底部菜单栏是十分常见的需求,它可以帮助用户在多个功能之间进行切换。本篇文章将深入探讨如何使用`RadioGroup`组件来实现这样的底部导航菜单栏。 `RadioGroup`是Android SDK提供的一...
总之,Android 底部菜单栏的实现是一个结合了RadioGroup和Fragment的重要实践。通过对RadioGroup的选择监听和Fragment的动态管理,我们可以创建出功能强大且美观的底部导航。在实际开发中,应注重用户体验,不断优化...
通过以上步骤和注意事项,你将能够成功地在Android应用中实现底部菜单栏与ViewPager的结合,达到左右滑动切换多个Activity或Fragment的效果。这种设计模式在许多应用中都得到了广泛应用,提高了用户体验和交互性。
本示例中的“android底部凸起导航菜单”是利用`FrameLayout`来实现的,它具有类似`RadioGroup`的交互效果,即点击某个选项时会显示高亮状态,提供清晰的用户反馈。 `FrameLayout`是Android的一种布局容器,它允许子...
总结一下,实现Android底部导航中间菜单凸起效果主要包括以下步骤: 1. 创建`BottomNavigationView`并设置相关属性。 2. 设计自定义的背景选择器,以实现凸起效果。 3. 使用`ObjectAnimator`添加动画效果,使凸起...
标题"底部菜单栏Demo"表明这是一个关于如何在Android应用中实现底部菜单栏的示例项目,而描述中的"FragmentTabhost实现"揭示了实现方式是通过使用`FragmentTabHost`。 `FragmentTabHost`是Android SDK中的一个类,...
总之,“炫酷的底部菜单栏切换效果”是一个结合了Android底部菜单、自定义动画和视图交互设计的实例。开发者需要掌握Android UI组件的使用、动画系统的工作原理以及如何通过编程实现动态效果。通过深入理解这些知识...
本教程将详细讲解两种实现Android底部菜单栏的方法,并提供完整的源码供参考。 一、通过TabWidget实现底部菜单栏 TabWidget是Android SDK中的一个控件,它允许在界面上创建一个可滚动的标签页。以下是如何使用...
在Android应用开发中,创建一个底部菜单是相当常见的需求,它可以帮助用户轻松地在不同的功能模块之间切换。本文将详细讲解如何使用TabHost和RadioButton来实现这样一个底部菜单UI界面。 首先,我们需要理解TabHost...
"高仿微信底部菜单栏"项目,正如标题所言,旨在提供一个无bug、即插即用的解决方案,帮助开发者快速实现类似微信底部导航栏的效果。这个项目主要涵盖了以下知识点: 1. **底部导航栏(Bottom Navigation Bar)**:...