Android
adnap7
这个作者很懒,什么都没留下…
展开
-
android设置事件监听器的方法总结
一、内部匿名类作为事件监听器 代码示例:button.setOnClickListener(new View.OnClickListener() { public void onClick(View view) { textView.setText("Button按钮"); }});imageButton.setOnClickListener(new View.OnClick...原创 2018-04-14 15:16:06 · 1166 阅读 · 0 评论 -
ListView的创建及遇到的问题
我要总结一下关于ListView(用于垂直显示的列表控件的问题,这是我创建android控件中遇到的最难的一个,同时老师给的代码一堆坑,只能不断自己搜资料解决问题,花了一堆时间才大致理清ListView,累的不行。运行结果图: 贴上源码: 这是activity_main.xml的代码:<RelativeLayout xmlns:android="http://s...原创 2018-04-12 08:40:54 · 907 阅读 · 0 评论 -
关于使用内部类作为监听器出现的问题The type MainActivity.ButtonListener must implement the inherited abstract method D
这是源代码:package com.example.test44; import android.app.Activity; import android.os.Bundle;import android.view.Menu;import android.view.MenuItem;import android.view.View;import android.content.Di...原创 2018-04-12 11:50:41 · 14664 阅读 · 2 评论 -
android关于RadioButton和RadioGroup的二三事
做SharedPreferences的实验时,在这上面摔了一个大跟头,浪费了很多时间,现在总结一下。1.radiobutton的xml中的android:checked="true"是设置radiobutton的默认值的,不管有没有在xml中设置默认 ,在代码中radiobutton.setChecked(true/false)都有效。2.但是radiobutton.setChecked()只能改...原创 2018-05-10 22:34:39 · 407 阅读 · 0 评论 -
android:Service Intent must be explicit: Intent { act=com.example.localservicedemo.MyLocalService }
做android后台服务时遇到了一个问题: 05-04 11:25:10.656: E/AndroidRuntime(1393): java.lang.IllegalArgumentException: Service Intent must be explicit: Intent { act=com.example.localservicedemo.MyLocalService }Mar...原创 2018-05-31 14:12:24 · 1808 阅读 · 0 评论 -
android常见错误
1.eclipse导入android项目时报错,项目上有红叉 一般这样就好了,如果还不行,点击Java Build Path,移除掉那个 Unable to get system library for the project的库 然后add Library ,选择Android Classpath Container 来添加android 5.0的那个库就可以了 ...原创 2018-06-19 19:30:06 · 224 阅读 · 0 评论