- 浏览: 5818439 次
- 性别:
- 来自: 上海
文章分类
- 全部博客 (890)
- WindowsPhone (0)
- android (88)
- android快速迭代 (17)
- android基础 (34)
- android进阶 (172)
- android高级 (0)
- android拾遗 (85)
- android动画&效果 (68)
- Material Design (13)
- LUA (5)
- j2me (32)
- jQuery (39)
- spring (26)
- hibernate (20)
- struts (26)
- tomcat (9)
- javascript+css+html (62)
- jsp+servlet+javabean (14)
- java (37)
- velocity+FCKeditor (13)
- linux+批处理 (9)
- mysql (19)
- MyEclipse (9)
- ajax (7)
- wap (8)
- j2ee+apache (24)
- 其他 (13)
- phonegap (35)
最新评论
-
Memories_NC:
本地lua脚本终于执行成功了,虽然不是通过redis
java中调用lua脚本语言1 -
ZHOU452840622:
大神://处理返回的接收状态 这个好像没有监听到 遇 ...
android 发送短信的两种方式 -
PXY:
拦截部分地址,怎么写的for(int i=0;i<lis ...
判断是否登录的拦截器SessionFilter -
maotou1988:
Android控件之带清空按钮(功能)的AutoComplet ...
自定义AutoCompleteTextView -
yangmaolinpl:
希望有表例子更好。。。,不过也看明白了。
浅谈onInterceptTouchEvent、onTouchEvent与onTouch
在上一个版本基础上添加两个Activity: EffectsActivity&TabLayoutActivity
EffectsActivity测试了一种效果;
TabLayoutActivity中使用的控件:
android.support.design.widget.TabLayout
android.support.v4.widget.NestedScrollView
android.support.design.widget.TextInputLayout
EffectsActivity测试了一种效果;
TabLayoutActivity中使用的控件:
android.support.design.widget.TabLayout
android.support.v4.widget.NestedScrollView
android.support.design.widget.TextInputLayout
import android.animation.Animator; import android.animation.AnimatorListenerAdapter; import android.animation.AnimatorSet; import android.animation.ObjectAnimator; import android.content.Context; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.view.ViewTreeObserver.OnGlobalLayoutListener; import android.widget.Button; import android.widget.LinearLayout; public class EffectsActivity extends AppCompatActivity implements View.OnClickListener{ private Context context; private LinearLayout main_view; private LinearLayout pop_view; private int main_view_height; private int pop_view_height; private Button btn_show; private Button btn_hide; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_test); context=this; main_view = (LinearLayout)findViewById(R.id.main_view); pop_view = (LinearLayout)findViewById(R.id.pop_view); btn_show = (Button)findViewById(R.id.btn_show); btn_hide = (Button)findViewById(R.id.btn_hide); btn_show.setOnClickListener(this); btn_hide.setOnClickListener(this); main_view.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() { @Override public void onGlobalLayout() { main_view_height = main_view.getHeight(); main_view.getViewTreeObserver().removeGlobalOnLayoutListener(this); } }); pop_view.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() { @Override public void onGlobalLayout() { pop_view_height = pop_view.getHeight(); pop_view.getViewTreeObserver().removeGlobalOnLayoutListener(this); } }); } @Override public void onClick(View v) { // TODO Auto-generated method stub switch (v.getId()) { case R.id.btn_show: show(); break; case R.id.btn_hide: hide(); break; default: break; } } private void show(){ ObjectAnimator fViewScaleXAnim=ObjectAnimator.ofFloat(main_view,"scaleX",1.0f,0.8f); fViewScaleXAnim.setDuration(350); ObjectAnimator fViewScaleYAnim=ObjectAnimator.ofFloat(main_view,"scaleY",1.0f,0.8f); fViewScaleYAnim.setDuration(350); ObjectAnimator fViewAlphaAnim=ObjectAnimator.ofFloat(main_view,"alpha",1.0f,0.5f); fViewAlphaAnim.setDuration(350); ObjectAnimator fViewRotationXAnim = ObjectAnimator.ofFloat(main_view, "rotationX", 0f, 10f); fViewRotationXAnim.setDuration(200); ObjectAnimator fViewResumeAnim = ObjectAnimator.ofFloat(main_view, "rotationX", 10f, 0f); fViewResumeAnim.setDuration(150); fViewResumeAnim.setStartDelay(200); ObjectAnimator fViewTransYAnim=ObjectAnimator.ofFloat(main_view,"translationY",0,-0.1f* main_view_height); fViewTransYAnim.setDuration(350); ObjectAnimator sViewTransYAnim=ObjectAnimator.ofFloat(pop_view,"translationY",pop_view_height,0); sViewTransYAnim.setDuration(350); sViewTransYAnim.addListener(new AnimatorListenerAdapter() { @Override public void onAnimationStart(Animator animation) { super.onAnimationStart(animation); pop_view.setVisibility(View.VISIBLE); btn_show.setEnabled(!pop_view.isShown()); } }); AnimatorSet showAnim=new AnimatorSet(); showAnim.playTogether(fViewScaleXAnim,fViewRotationXAnim,fViewResumeAnim,fViewTransYAnim,fViewAlphaAnim,fViewScaleYAnim,sViewTransYAnim); showAnim.start(); } private void hide(){ ObjectAnimator fViewScaleXAnim=ObjectAnimator.ofFloat(main_view,"scaleX",0.8f,1.0f); fViewScaleXAnim.setDuration(350); ObjectAnimator fViewScaleYAnim=ObjectAnimator.ofFloat(main_view,"scaleY",0.8f,1.0f); fViewScaleYAnim.setDuration(350); ObjectAnimator fViewAlphaAnim=ObjectAnimator.ofFloat(main_view,"alpha",0.5f,1.0f); fViewAlphaAnim.setDuration(350); ObjectAnimator fViewRotationXAnim = ObjectAnimator.ofFloat(main_view, "rotationX", 0f, 10f); fViewRotationXAnim.setDuration(200); ObjectAnimator fViewResumeAnim = ObjectAnimator.ofFloat(main_view, "rotationX", 10f, 0f); fViewResumeAnim.setDuration(150); fViewResumeAnim.setStartDelay(200); ObjectAnimator fViewTransYAnim=ObjectAnimator.ofFloat(main_view,"translationY",-0.1f* main_view_height,0); fViewTransYAnim.setDuration(350); ObjectAnimator sViewTransYAnim=ObjectAnimator.ofFloat(pop_view,"translationY",0,pop_view_height); sViewTransYAnim.setDuration(350); sViewTransYAnim.addListener(new AnimatorListenerAdapter() { @Override public void onAnimationEnd(Animator animation) { super.onAnimationEnd(animation); pop_view.setVisibility(View.INVISIBLE); btn_show.setEnabled(!pop_view.isShown()); } }); AnimatorSet showAnim=new AnimatorSet(); showAnim.playTogether(fViewScaleXAnim,fViewRotationXAnim,fViewResumeAnim,fViewTransYAnim,fViewAlphaAnim,fViewScaleYAnim,sViewTransYAnim); showAnim.start(); } public boolean isShown(){ return pop_view.isShown(); } @Override public void onBackPressed() { // TODO Auto-generated method stub if(isShown()){ hide(); }else{ super.onBackPressed(); } } }
import android.animation.Animator; import android.animation.AnimatorListenerAdapter; import android.animation.AnimatorSet; import android.animation.ObjectAnimator; import android.content.Context; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.view.ViewTreeObserver.OnGlobalLayoutListener; import android.widget.Button; import android.widget.LinearLayout; public class EffectsActivity extends AppCompatActivity implements View.OnClickListener{ private Context context; private LinearLayout main_view; private LinearLayout pop_view; private int main_view_height; private int pop_view_height; private Button btn_show; private Button btn_hide; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_effects); context=this; main_view = (LinearLayout)findViewById(R.id.main_view); pop_view = (LinearLayout)findViewById(R.id.pop_view); btn_show = (Button)findViewById(R.id.btn_show); btn_hide = (Button)findViewById(R.id.btn_hide); btn_show.setOnClickListener(this); btn_hide.setOnClickListener(this); main_view.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() { @Override public void onGlobalLayout() { main_view_height = main_view.getHeight(); main_view.getViewTreeObserver().removeGlobalOnLayoutListener(this); } }); pop_view.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() { @Override public void onGlobalLayout() { pop_view_height = pop_view.getHeight(); pop_view.getViewTreeObserver().removeGlobalOnLayoutListener(this); } }); } @Override public void onClick(View v) { // TODO Auto-generated method stub switch (v.getId()) { case R.id.btn_show: show(); break; case R.id.btn_hide: hide(); break; default: break; } } private void show(){ ObjectAnimator fViewScaleXAnim=ObjectAnimator.ofFloat(main_view,"scaleX",1.0f,0.8f); fViewScaleXAnim.setDuration(350); ObjectAnimator fViewScaleYAnim=ObjectAnimator.ofFloat(main_view,"scaleY",1.0f,0.8f); fViewScaleYAnim.setDuration(350); ObjectAnimator fViewAlphaAnim=ObjectAnimator.ofFloat(main_view,"alpha",1.0f,0.5f); fViewAlphaAnim.setDuration(350); ObjectAnimator fViewRotationXAnim = ObjectAnimator.ofFloat(main_view, "rotationX", 0f, 10f); fViewRotationXAnim.setDuration(200); ObjectAnimator fViewResumeAnim = ObjectAnimator.ofFloat(main_view, "rotationX", 10f, 0f); fViewResumeAnim.setDuration(150); fViewResumeAnim.setStartDelay(200); ObjectAnimator fViewTransYAnim=ObjectAnimator.ofFloat(main_view,"translationY",0,-0.1f* main_view_height); fViewTransYAnim.setDuration(350); ObjectAnimator sViewTransYAnim=ObjectAnimator.ofFloat(pop_view,"translationY",pop_view_height,0); sViewTransYAnim.setDuration(350); sViewTransYAnim.addListener(new AnimatorListenerAdapter() { @Override public void onAnimationStart(Animator animation) { super.onAnimationStart(animation); pop_view.setVisibility(View.VISIBLE); btn_show.setEnabled(!pop_view.isShown()); } }); AnimatorSet showAnim=new AnimatorSet(); showAnim.playTogether(fViewScaleXAnim,fViewRotationXAnim,fViewResumeAnim,fViewTransYAnim,fViewAlphaAnim,fViewScaleYAnim,sViewTransYAnim); showAnim.start(); } private void hide(){ ObjectAnimator fViewScaleXAnim=ObjectAnimator.ofFloat(main_view,"scaleX",0.8f,1.0f); fViewScaleXAnim.setDuration(350); ObjectAnimator fViewScaleYAnim=ObjectAnimator.ofFloat(main_view,"scaleY",0.8f,1.0f); fViewScaleYAnim.setDuration(350); ObjectAnimator fViewAlphaAnim=ObjectAnimator.ofFloat(main_view,"alpha",0.5f,1.0f); fViewAlphaAnim.setDuration(350); ObjectAnimator fViewRotationXAnim = ObjectAnimator.ofFloat(main_view, "rotationX", 0f, 10f); fViewRotationXAnim.setDuration(200); ObjectAnimator fViewResumeAnim = ObjectAnimator.ofFloat(main_view, "rotationX", 10f, 0f); fViewResumeAnim.setDuration(150); fViewResumeAnim.setStartDelay(200); ObjectAnimator fViewTransYAnim=ObjectAnimator.ofFloat(main_view,"translationY",-0.1f* main_view_height,0); fViewTransYAnim.setDuration(350); ObjectAnimator sViewTransYAnim=ObjectAnimator.ofFloat(pop_view,"translationY",0,pop_view_height); sViewTransYAnim.setDuration(350); sViewTransYAnim.addListener(new AnimatorListenerAdapter() { @Override public void onAnimationEnd(Animator animation) { super.onAnimationEnd(animation); pop_view.setVisibility(View.INVISIBLE); btn_show.setEnabled(!pop_view.isShown()); } }); AnimatorSet showAnim=new AnimatorSet(); showAnim.playTogether(fViewScaleXAnim,fViewRotationXAnim,fViewResumeAnim,fViewTransYAnim,fViewAlphaAnim,fViewScaleYAnim,sViewTransYAnim); showAnim.start(); } public boolean isShown(){ return pop_view.isShown(); } @Override public void onBackPressed() { // TODO Auto-generated method stub if(isShown()){ hide(); }else{ super.onBackPressed(); } } }
import android.content.Context; import android.os.Bundle; import android.support.design.widget.TabLayout; import android.support.v7.app.AppCompatActivity; import android.support.v7.widget.Toolbar; import android.view.View; public class TabLayoutActivity extends AppCompatActivity implements View.OnClickListener { private Context context; private TabLayout tabLayout; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_tablayout); context = this; Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); //使用了ActionBarDrawerToggle之后,下面的设置可以不用 // App Logo // toolbar.setLogo(R.drawable.ic_launcher); // Title toolbar.setTitle("TabLayout"); // Sub Title toolbar.setSubtitle("only a test"); //Navigation Icon // toolbar.setNavigationIcon(R.drawable.ic_launcher);//不设置,默认是返回箭头 setSupportActionBar(toolbar); //需要将setSupportActionBar(toolbar)放在setNavigationOnClickListener()之前设置才会响应click event toolbar.setNavigationOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub finish(); } }); getSupportActionBar().setDisplayHomeAsUpEnabled(true); tabLayout = (TabLayout) findViewById(R.id.tabLayout); tabLayout.addTab(tabLayout.newTab().setText("Tab 1")); tabLayout.addTab(tabLayout.newTab().setText("Tab 2")); tabLayout.addTab(tabLayout.newTab().setText("Tab 3")); tabLayout.addTab(tabLayout.newTab().setText("Tab 4")); } @Override public void onClick(View v) { // TODO Auto-generated method stub } }
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/coordinatorLayout" android:layout_width="match_parent" android:layout_height="match_parent" android:fitsSystemWindows="true" tools:context=".MainActivity" > <!-- AppBarLayout目前必须是第一个嵌套在CoordinatorLayout里面的子view --> <!-- AppBarLayout里面定义的view只要设置了app:layout_scrollFlags属性,就可以在RecyclerView滚动事件发生的时候被触发: --> <!-- app:layout_scrollFlags属性里面必须至少启用scroll这个flag,这样这个view才会滚动出屏幕,否则它将一直固定在顶部。 --> <!-- 可以使用的其他flag有: enterAlways: 一旦向上滚动这个view就可见。 enterAlwaysCollapsed: 顾名思义,这个flag定义的是何时进入(已经消失之后何时再次显示)。假设你定义了一个最小高度(minHeight)同时enterAlways也定义了,那么view将在到达这个最小高度的时候开始显示,并且从这个时候开始慢慢展开,当滚动到顶部的时候展开完。 exitUntilCollapsed: 同样顾名思义,这个flag时定义何时退出,当你定义了一个minHeight,这个view将在滚动到达这个最小高度的时候消失。 --> <!-- 记住,要把带有scroll flag的view放在前面,这样收回的view才能让正常退出,而固定的view继续留在顶部。 --> <android.support.design.widget.AppBarLayout android:id="@+id/appbar" android:layout_width="match_parent" android:layout_height="wrap_content" android:fitsSystemWindows="true" android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" > <android.support.v7.widget.Toolbar android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" app:layout_scrollFlags="scroll|enterAlways" app:popupTheme="@style/ThemeOverlay.AppCompat.Dark" app:titleTextAppearance="@style/TextAppearance.AppCompat.Headline" /> <!-- 如果想要 TabLayout从屏幕上消失,只需要给 TabLayout属性app:layout_scrollFlags="scroll|enterAlways" --> <!-- 如果你屏幕上显示只有少数 tab 的时候,可以设置tabMode="fixed",若很多需要拖动,则设置tabMode="scroll" --> <!-- 如果 tabMode 设置成 scrollable 的,则tabGravity属性将会被忽略 --> <android.support.design.widget.TabLayout android:id="@+id/tabLayout" android:layout_width="match_parent" android:layout_height="wrap_content" app:tabGravity="fill" app:tabMode="fixed" app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" /> </android.support.design.widget.AppBarLayout> <android.support.v4.widget.NestedScrollView android:layout_width="match_parent" android:layout_height="match_parent" app:layout_behavior="@string/appbar_scrolling_view_behavior" > <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <android.support.design.widget.TextInputLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="16dp" > <EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="Username" /> </android.support.design.widget.TextInputLayout> <android.support.design.widget.TextInputLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="16dp" > <EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="Password" /> </android.support.design.widget.TextInputLayout> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="test" /> </LinearLayout> </android.support.v4.widget.NestedScrollView> </android.support.design.widget.CoordinatorLayout>
- Test.rar (4.4 MB)
- 描述: android5.1.1编译,需要v7-appcompat,design等扩展包
- 下载次数: 0
发表评论
-
TabLayout和ViewPager结合使用
2015-09-10 10:54 9734TabLayout是android design包内的控件; ... -
AppBarLayout.OnOffsetChangedListener的使用
2015-09-01 14:08 8986如果没听说过AppBarLayout.OnOffsetChan ... -
Design各控件的搭配使用3
2015-08-28 11:35 1878在上一个版本基础上新增: 对RecyclerView的操作(线 ... -
Design各控件的搭配使用2
2015-08-25 15:16 1989在上个版本的基础上增加个几个控件: DrawerLayout+ ... -
Design各控件的搭配使用
2015-08-25 13:48 2849PS:使用design包需要在design项目中导入appco ... -
ItemTouchHelper之SwipeDismiss
2015-08-25 10:11 1972引用This is a utility class to ad ... -
CoordinatorLayout之Behavior使用
2015-08-18 10:27 2296import android.animation.An ... -
support.v4之SlidingPaneLayout简单使用
2015-08-13 13:10 2458简单的布局 <android.support.v4. ... -
android5.0之CardView
2015-08-11 17:24 2054CardView继承至FrameLayout类,可以在一个卡片 ... -
ToolBar&DrawerLayout基本结构
2015-08-03 15:22 2030快速迭代用 使用到了 1:ToolBar + ShareAc ... -
android5.0之RecyclerView
2015-07-31 13:55 2527早就听说RecyclerView有多少多少XX 但是直到今天才 ... -
RecylerView相关文章
2015-04-10 12:03 2049RecylerView用于替代ListView,因为它比Lis ...
相关推荐
"Design各控件的搭配使用"这一主题着重探讨了如何在Android 5.1.1版本中有效地组合和利用Design库中的各种控件,以创建出美观且功能丰富的用户界面。这篇博文(可通过链接https://gundumw100.iteye.com/blog/2237850...
10. **依赖库的添加**: 在Android项目中使用这些Design控件,需要在build.gradle文件中添加相应的依赖,如v7-appcompat和design库。 通过深入理解和熟练运用这些控件,开发者可以构建出符合Material Design原则,...
"Design各控件的搭配使用2"这一主题主要聚焦于如何在Android 5.1.1版本中有效地组合和利用各种设计控件来创建用户友好的界面。这篇博客文章(可以通过链接访问)可能涵盖了多个方面的内容,包括但不限于以下几点: ...
"Material_Design控件Demo"是专门为展示如何使用Material Design组件而设计的,特别是聚焦在AppBarLayout、CollapsingToolbarLayout、NestedScrollView和CoordinatorLayout这四个关键组件的整合上。 AppBarLayout是...
在Eclipse这个强大的Java开发环境中,使用Design库可以极大地提升Android应用界面的开发效率和美观度。Design库是由Google提供的一套UI工具包,它包含了众多现代化的Android设计组件,如Snackbar、...
Material Design控件需要配合Material主题使用,所以在styles.xml文件中,将应用的主题设置为Material主题: ```xml <!-- Customize your theme here. --> ``` 如果希望使用暗色主题,可以将父主题改为`...
接下来,我们来探讨一些常见的Material Design控件及其用法: 1. **Button**: Material Button提供了丰富的样式和动画效果,包括凸起、扁平、图标按钮等。通过设置`app:cornerRadius`属性可以改变按钮的圆角,`...
在Android开发中,`design`库是一个非常重要的组件,它包含了一系列用于构建现代Material Design界面的控件和工具。这个库是由Google提供的,目的是让开发者能够轻松地在应用中实现与官方设计指南相一致的用户体验。...
4. **Switch**:开关控件在Material Design中是用于切换两种状态的,如开启/关闭。它的设计注重触感和视觉过渡效果,使得操作更加直观。 5. **Snackbar**:这是一种轻量级的通知方式,用于显示简短的信息或者操作...
本教程将深入探讨Design Support Library v28中的关键控件及其使用方法。 1. **CoordinatorLayout**: 这是一个高级布局,可以协调其子视图的行为,特别是在滚动事件发生时。例如,它可以用于实现...
TabLayout是Material Design组件库中的一个重要控件,用于创建可滑动的标签页,通常与ViewPager结合使用,以便在有限的空间内展示多个视图。下面我们将详细探讨TabLayout的使用方法以及如何与ViewPager集成。 1. ...
在这个"android UI控件MaterialDesign"的主题中,我们将深入探讨如何在Android应用中使用Material Design组件来提升UI的质量。 1. **Material Design组件库** Google为开发者提供了`Material Components for ...
在这个"Material Design新的控件示例代码"中,我们将关注一个关键组件——`CoordinatorLayout`,以及与之相关的`AppBarLayout`。 `CoordinatorLayout`是Android支持库中的一个高级布局容器,它被设计用来实现更复杂...
在Android开发中,Material Design通过一系列控件和组件,让开发者可以轻松创建符合现代设计规范的应用。现在我们来详细探讨一下标题和描述中提到的几个关键控件: 1. **CardView** CardView是Material Design中的...
它可以作为根布局来组织和管理其他视图,特别是与`AppBarLayout`、`CollapsingToolbarLayout`、`FloatingActionButton`等配合使用时,可以创建出富有动态感的用户界面。 ### 使用步骤 1. **引入库**:首先,在项目...
下面将详细介绍Android MD风格控件的经典使用方法,以及透明状态栏的实现策略。 1. **Material Design风格控件**: Android MD风格控件是Google推出的全新设计语言,旨在提供统一、直观的用户体验。它包括一系列...
我们将深入理解TabLayout的工作原理,以及如何与ViewPager配合使用,为用户提供流畅的导航体验。 TabLayout是Google在Android Design Support Library中引入的一个新控件,它旨在帮助开发者轻松实现 Material ...
TabLayout是Android Design Support Library中引入的一个新控件,它帮助开发者快速实现滑动标签页,为用户提供清晰、直观的导航方式。本文将深入探讨TabLayout的基本用法、自定义以及与其他组件的配合使用,助你轻松...