AdnRecord主要包含SIM卡中联系人的文件。
我正在开发一个Android应用程序,我希望通过使用AdnRecord类通过此应用程序获得AdnRecord大小,为了更容易理解,我想在按钮点击时获得AdnRecord大小。
AdnRecord类在互联网上作为开源代码提供。我想在点击按钮后让我的JAVA代码调用这个类。
按钮:
<Button
android:id="@+id/third"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignRight="@+id/premier"
android:layout_below="@+id/second"
android:layout_marginTop="25dp"
android:text="contact access"
android:onClick="getAdnRecordsSize" />
我想创建一个方法“getAdnRecordSize”,它调用我保存在同一个包中的AdnRecord类。
有人可以帮帮我吗?提前谢谢你。