- 浏览: 228370 次
- 性别:
- 来自: 北京
最新评论
-
qq452739204:
如果构造的报文大于mtu值,是否需要分片之后再发送出去列?
Linux内核构造数据包并发送(二)(dev_queue_xmit方式) -
xingzengmou:
你好,我搞的原理跟你差不多,但播放的时候有papapa的声音, ...
AudioRecord和AudioTrack类的使用 -
wenjiefeng:
楼主,你有录制pcm格式和播放pcm格式的录音器的demo吗, ...
AudioRecord和AudioTrack类的使用 -
lovepeakingA:
...
AudioRecord和AudioTrack类的使用 -
ZaneLee007:
假的,不学无术
Android禁用键盘的所有按键
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
发表评论
-
从assets文件夹中读取txt文件
2010-08-23 14:37 2650Android除了提供/res目录存放资源文件外,在/asse ... -
AndroidManifest.xml文件综合详解
2010-08-18 09:59 1051一,重要性AndroidManifest. ... -
总结Content Provider的使用
2010-08-18 09:47 1698Android中的Content provider机制可支持在 ... -
Android动态创建一个个组件
2010-08-12 00:11 2938Android 界面编程有两种基本的方法,一种是在代码中,动态 ... -
LinearLayout+EditText+Button+AlertDialog简单应用
2010-08-11 22:08 2259这个简单的例子是EditText中默认有个字符串text,单击 ... -
Android permission 访问权限大全
2010-08-11 20:41 1007androidmanifest.xml中声明相关权限请求, 完 ... -
Android的几种布局方式
2010-08-11 20:27 4951通常我们开发的应用程序都是需要具有友好的用户界面,那么Andr ... -
Android的系统架构
2010-08-11 20:10 1559Android的系统架构是怎么样的呢?从下图我们可以从整体上有 ... -
Android响应按钮的程序结构
2010-08-11 20:07 1936图形界面的按钮是最普通的控件,Android响应按钮的程序结构 ... -
AudioRecord和AudioTrack类的使用
2010-08-11 20:06 14890AudioRecord和AudioTrack类 ... -
Android资源文件
2010-08-10 10:34 1359资源是您在代码中使用 ... -
SMS Messaging in Android(接1)
2010-08-09 00:12 1087就是它了!测试应用程序,按下F11。为每个Android模拟器 ... -
SMS Messaging in Android(1)
2010-08-08 23:54 1755可以安全的说,在过去的近20年里卖的每一款移动电话都拥有SMS ... -
Android sms 发送、接收及格式
2010-08-08 21:49 2185一、 android sms所要的权限 Java代码 ... -
Android Button按钮控件美化方法
2010-08-08 21:11 2801对于Android自带的Button按钮控件很多网友感觉不是很 ... -
Android布局之AbsoluteLayout
2010-08-08 18:34 1829AbsoluteLayout也就是绝对布局,又称坐标布局,在布 ... -
Android移植: wifi设计原理(源码分析)
2010-08-08 02:22 2337初始化在 SystemServer 启动的时候,会生成一个 ... -
Android禁用键盘的所有按键
2010-08-07 23:52 4242KeyguardManager keyguardManager ...
相关推荐
本示例代码展示了如何在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)**:...