从接口的定义方面来说,接口其实就是类和类之间的一种协定,一种约束.拿一个例子来说.所有继承了一个接口的类中必需实现接口定义的方法.那么从用户(使用类的用户)的角度来说,如果他知道了某个类是继承于这个接口,那么他就可以放心大胆的调用接口中的方法,而不用管方法怎么具体实现。
用接口目的是方便统一管理.另一个是方便调用.当然了,不使用接口一样可以达到目的.只不过这样的话,这种约束就不那么明显,如果这样类还有Duck类等等,比较多的时候难免有人会漏掉这样方法.所以说还是通过接口更可靠一些,约束力更强一些.
下面用一个安卓的例子来实现接口
这是一个关于回家方案选择的一个接口
package com.example.gohome; public interface ToHome { public String goHome(); }
下面是 接口的实现
package com.example.gohome; public class ByBus implements ToHome { @Override public String goHome() { return "time = 24min ; money = 0.4"; } }
package com.example.gohome; public class ByAirplane implements ToHome { @Override public String goHome() { return "time = 5min ; money = 998"; } }
还有 2种差不多 就不例举了。
然后我们看下如何定义安卓的单选按钮
<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: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" > <TextView android:id="@+id/TextView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/hello_world" /> <RadioGroup android:id="@+id/RadioGroup01" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical" android:layout_x="3dp" android:layout_y="54dp" > <RadioButton android:id="@+id/RadioButton1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/RadioButton1" /> <RadioButton android:id="@+id/RadioButton2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/RadioButton2" /> <RadioButton android:id="@+id/RadioButton3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/RadioButton3" /> <RadioButton android:id="@+id/RadioButton4" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/RadioButton4" /> </RadioGroup> </LinearLayout>
关于单选按钮这个会在下篇博客中具体说明,先了解下如何定义
最后看下如何使用接口定义的类
package com.example.gohome; import java.security.PublicKey; import android.app.Activity; import android.os.Bundle; import android.view.Gravity; import android.view.Menu; import android.widget.RadioButton; import android.widget.RadioGroup; import android.widget.TextView; import android.widget.Toast; public class MainActivity extends Activity { static ToHome mytohome; TextView m_TextView; RadioGroup m_RadioGroup; RadioButton m_Radio1,m_Radio2,m_Radio3,m_Radio4; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); m_TextView = (TextView)findViewById(R.id.TextView1); m_RadioGroup = (RadioGroup)findViewById(R.id.RadioGroup01); m_Radio1 = (RadioButton)findViewById(R.id.RadioButton1); m_Radio2 = (RadioButton)findViewById(R.id.RadioButton2); m_Radio3 = (RadioButton)findViewById(R.id.RadioButton3); m_Radio4 = (RadioButton)findViewById(R.id.RadioButton4); m_RadioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener(){ @Override public void onCheckedChanged(RadioGroup group, int checkedId) { if(checkedId == m_Radio1.getId()) { mytohome = new ByFoot(); System.out.println(mytohome.goHome()); DisplayToast(mytohome.goHome()); } if(checkedId == m_Radio2.getId()) { mytohome = new ByBus(); System.out.println(mytohome.goHome()); DisplayToast(mytohome.goHome()); } if(checkedId == m_Radio3.getId()) { mytohome = new BySubway(); System.out.println(mytohome.goHome()); DisplayToast(mytohome.goHome()); } if(checkedId == m_Radio4.getId()) { mytohome = new ByAirplane(); System.out.println(mytohome.goHome()); DisplayToast(mytohome.goHome()); } } }); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.main, menu); return true; } private void DisplayToast(String str) { Toast toast = Toast.makeText(this, str, Toast.LENGTH_SHORT); toast.setGravity(Gravity.TOP,0,220); toast.show(); } }
相关推荐
总的来说,通过灵活地使用布局管理器和`RadioGroup`的特性,我们可以实现复杂的单选按钮组设计,为用户提供更优质的交互体验。这不仅涉及到基本的XML布局知识,还包括对Android事件处理机制的理解,以及对不同布局...
在Android开发中,创建自定义的用户界面是提高应用程序用户体验的关键步骤之一。本文将深入探讨如何构建一个自定义的单选和多选对话框,这是一个适用于各种应用场景的强大UI模板。通过对给定的代码资源(f8df685caf...
除了单个按钮的点击事件,Android还支持多按钮的点击事件处理,如使用RadioGroup配合RadioButton实现单选按钮组,或使用CheckBox实现多选。此外,还可以利用Button的setOnLongClickListener()来处理长按事件。 在...
在Android开发中,UI设计是不可或缺的一部分,而单选按钮(RadioButton)、复选框(CheckBox)、状态开关(Switch)和时钟控件(Chronometer)是常用的交互元素,它们为用户提供了一种简单直观的方式来选择、切换和...
在Android程序开发中,单选按钮(RadioGroup)是一种常用的组件,用于提供用户只能选择一个选项的交互方式。RadioGroup通常包含一组RadioButton,用户在这些选项之间进行单选。下面将详细介绍如何在Android中使用...
通常,Android原生的RadioGroup控件只支持横向或纵向排列的单选按钮,但在这个工程中,开发者通过自定义布局和逻辑,成功地实现了元素的自动换行和多行单选功能,这在设计复杂的表格界面时非常有用。 1. 单选框...
在Android开发中,单选按钮对话框(Radio Button Dialog)是一种常见的用户交互方式,它允许用户从一组预设选项中选择一个。本实例分析将详细讲解如何创建和使用这种对话框,包括布局文件的配置、数组资源的定义以及...
但在这个场景下,可能需要在侧滑出来的操作区域内加入一个单选按钮。实现步骤如下: 1. **设计单选按钮布局**: 在侧滑出来的副视图中,添加一个RadioGroup,并设置其方向为垂直(如果需要多个选项)。 2. **设置...
接下来,我们将详细讨论如何在Android应用中使用`RadioGroup`来实现单选及默认选中的功能。 ### 1. `RadioGroup`的基本使用 首先,我们需要在XML布局文件中添加`RadioGroup`,并在此基础上嵌套多个`RadioButton`。...
然而,在某些场景下,如简单的单选或多选列表,使用FlexboxLayout可以提供更简洁且高效的解决方案。本文将深入探讨如何利用Kotlin语言实现FlexboxLayout来替代RecyclerView,并实现单选和多选功能。 首先,我们要...
在实际应用中,我们常常需要实现RecyclerView的单选或多选功能,比如在选择联系人、设置偏好等场景。本教程将深入探讨如何在RecyclerView中实现这两种选择模式。 ### 单选实现 单选通常用于用户只能选择一个选项的...
6. **事件处理**:使用`OnClickListener`或`OnCheckedChangeListener`等接口来处理用户交互,比如点击按钮开始计时、提交答案、查看错题等。 7. **文件操作**:项目中包含一个名为“123.xlsx”的文件,这可能是试题...
在Android开发中,RecyclerView是一种非常常用的视图组件,用于展示大量可滚动的数据列表。实现RecyclerView的多选、单选、全选、反选以及批量删除功能对于提高用户体验至关重要。以下将详细阐述如何实现这些功能。 ...
总的来说,"Android-像RelativeLayout一样的RadioGroup"为开发者提供了一个更强大、更灵活的单选按钮管理工具,使得在保持单选逻辑的同时,能够实现更复杂的界面设计和交互体验。这对于追求个性化和用户体验的...
在Android开发中,实现高效的通讯录搜索功能是提升用户体验的关键环节。本文将深入探讨如何构建一个功能完善的通讯录搜索系统,包括输入框实时搜索、侧边ListView滚动搜索、以及单选、全选和反选功能。 一、输入框...
在这个话题中,我们将深入探讨如何在GridView中实现无缝的单选或多选功能。 首先,理解GridView的基本概念是至关重要的。GridView继承自AdapterView,它会根据Adapter提供的数据项生成一列列的视图。每个数据项都会...
总的来说,Android提供的`AlertDialog.Builder`为我们提供了简单易用的接口来构建各种类型的对话框,包括单选和多选。通过灵活运用这些API,开发者可以创建符合用户需求的对话框,提高应用的交互性和用户体验。记得...
这个实例生动地展示了如何在Android应用中实现单选按钮的功能,并通过互动的方式增加了用户体验。 1. 单选按钮组件:`RadioButton`是Android SDK中的一个视图类,继承自`CompoundButton`。它可以显示一个圆形的选中...
"Android-ImageSelector图片的单选多选拍照裁剪预览"是一个专为这些需求设计的库,它提供了丰富的功能,方便开发者在项目中集成。下面将详细介绍这个库的主要知识点。 1. **图片选择模式**: - 单选模式:在某些...