android初级
代码s贝多芬的音符
这个作者很懒,什么都没留下…
展开
-
The project uses Gradle version which is incompatible with Studio running on Java 10 or newer
The project uses Gradle version which is incompatible with Studio running on Java 10 or newerlog日志提示你把gradle改成什么,你就改成什么。原创 2022-05-16 16:21:59 · 2118 阅读 · 0 评论 -
Inconsistency detected.Invalid item position android.support.v7.widget.RecyclerView
java.lang.IndexOutOfBoundsException: Inconsistency detected. Invalid item position 6(offset:6).state:9 at android.support.v7.widget.RecyclerView$Recycler.getViewForPosition(RecyclerView.java) at android.support.v7.widget.RecyclerView$Recycler.getViewF...原创 2022-04-09 09:41:26 · 2970 阅读 · 0 评论 -
INSTALL_FAILED_CONFLICTING_PROVIDER 解决
AndroidManifest.xml修改android:name=“com.s.kaoping.AppFileProvider”android:authorities=“com.s.kaoping.fileprovider” <provider android:name="com.s.kaoping.AppFileProvider" android:authorities="com.s.kaoping.fileprovider"原创 2022-03-26 11:29:10 · 263 阅读 · 0 评论 -
android java 最新判断手机号码 包含虚拟号
/** * 验证手机号是否合法 * @return */ public static boolean isMobileNO(String mobile){ if (mobile.length() != 11) { return false; }else{ /** ...原创 2022-03-19 11:38:32 · 1393 阅读 · 0 评论 -
Required type: android.support.v4.app.Fragment Provided: android.app.Fragment
1 android.support.v4.app.,而且必须是getSupportFragmentManager();2 android.app.Fragment.,而且必须是getFragmentManager();原创 2022-03-08 17:13:56 · 3028 阅读 · 0 评论 -
android自定义广播BroadcastReceiver
1 注册广播 注销广播 IntentFilter intentFilter = new IntentFilter("com.sbas.android.GM_ACTION"); registerReceiver(mBroadcastReceiver, intentFilter); unregisterReceiver(mBroadcastReceiver);2 接收广播 private BroadcastReceiver mBroadcastReceiver原创 2022-03-05 17:01:30 · 2308 阅读 · 0 评论 -
cause: duplicate entry: meta-inf/maven pom.xml
cause: duplicate entry: meta-inf/maven pom.xml升级Android Gradle 插件与Gradle版本gradle-wrapper对应关系原创 2021-12-15 14:04:37 · 2244 阅读 · 0 评论 -
android studio Could not determine java version from ‘11.0.8‘.
Could not determine java version from ‘11.0.8’.升级gradle插件与gradle版本对应表原创 2021-12-15 14:03:16 · 1587 阅读 · 0 评论 -
Android Studio 闪退 看不到logcat ,如何显示出来
把Show only selected application下拉框,选择No filters 就可以看到了原创 2021-09-24 17:30:22 · 513 阅读 · 1 评论 -
Could not get resource ‘https://dl.google.com/dl/android/maven2/ AS使用过代理导致
C:\Users\Administrator.gradle\gradle.properties## For more details on how to configure your build environment visit# http://www.gradle.org/docs/current/userguide/build_environment.html## Specifies the JVM arguments used for the daemon process.# The se原创 2021-09-03 15:18:28 · 319 阅读 · 1 评论 -
Could not resolve com.android.tools.build:gradle:4.2.2
加上maven { url ‘http://maven.aliyun.com/nexus/content/repositories/google’ }maven { url “http://maven.aliyun.com/nexus/content/groups/public/” }原创 2021-09-03 10:23:33 · 3916 阅读 · 0 评论 -
Could not install Gradle distribution from ‘https://services.gradle.org/distributions/gradle-6.7.1-b
把https://services.gradle.org/distributions/gradle-6.7.1-bin.zip复制,去浏览器下载。复制到C:\Users\Administrator.gradle\wrapper\dists\gradle-6.7.1-bin\bwlcbys1h7rz3272sye1xwiv6原创 2021-09-03 09:13:58 · 217 阅读 · 0 评论 -
Unable to determine application id: com.android.tools.idea.run.ApkProvisionException: No outputs for
Unable to determine application id: com.android.tools.idea.run.ApkProvisionException: No outputs for the main artifact of variant: debug选择Edit Configurations选择 Nothing OK了...原创 2020-03-06 18:17:42 · 18298 阅读 · 10 评论 -
android google map V2画圆
1. 项目必须先导入 /extras/google/google_play_services/libproject/google-play-services_lib 自行百度mMap.addCircle(new CircleOptions() .center(new LatLng(location.getLatitude(), location.getLo原创 2015-04-29 11:26:13 · 2203 阅读 · 0 评论 -
android soap协议 Java soap协议
// 命名空间 String nameSpace = "http://WebXml.com.cn/"; // 调用方法的名称 String methodName = "getMobileCodeInfo"; // EndPoint原创 2015-04-21 13:31:45 · 688 阅读 · 0 评论 -
android两个fragment GoogleMap覆盖问题。
android:id="@+id/tmap_parent" android:layout_width="match_parent" android:layout_height="match_parent" > android:id="@+id/map" android:name="c原创 2015-04-23 08:37:47 · 2660 阅读 · 0 评论 -
java android格林威治时间转成本地时间
private String GTMToLocal(String GTMDate) {int tIndex = GTMDate.indexOf("T");String dateTemp = GTMDate.substring(0, tIndex);String timeTemp = GTMDate.substring(tIndex + 1, GTMDate.length() -原创 2015-04-22 08:03:28 · 3660 阅读 · 0 评论 -
android本地时间转成转成格林威治时间 java本地时间转成转成格林威治时间
/**** 转成格林威治时间* * @param LocalDate 2015-03-23 12:12:12* @return*/private String LocalToGTM("2015-03-23 12:12:12") {SimpleDateFormat format;format = new SimpleDateFormat原创 2015-04-22 07:59:34 · 4083 阅读 · 0 评论 -
今天和大家讲解一下SimpleDateFormat这个类,和TextView
从文档上看 SimpleDateFormat可以转化成一下的格式。 yyyy-MM-dd 1969-12-31 yyyy-MM-dd 1970-01-01 yyyy-MM-dd HH:mm 1969-12-31 16:00 yyyy-MM-dd HH:mm 1970-原创 2011-06-29 17:19:00 · 2043 阅读 · 1 评论 -
今天和大家讲一下怎么样简单的把壁纸作为背景,在中间加一个textview效果图如下
<activity android:name="MainActivity" android:theme="@style/Theme.Wallpaper" > Activity的配置如上。。重点就是加了一个样式。。。网页有CSS/D原创 2011-07-10 12:07:56 · 2039 阅读 · 0 评论 -
在屏幕上直接加一个TextView 还是利用样式
最关键的就是activity的配置文件了 <activity android:name="MainActivity" android:theme="@style/Theme.Translucent" > 使用样式android:t原创 2011-07-10 14:50:57 · 688 阅读 · 0 评论 -
显示自定义的对话框
public class DialogActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCr原创 2011-07-08 16:33:27 · 829 阅读 · 0 评论 -
如何在android中实现链接,下面四种方式告诉你
绿色字体都是链接 strings.xml kelly text1: This is some text. In this text are some things that are actionable. For instance, yo原创 2011-07-10 16:03:52 · 1379 阅读 · 0 评论 -
今天和大家讲一下怎么实现秒表这个功能Chronometer。很多地方都要用到秒表这个功能,比如视频录制,游戏(1)
今天和大家讲的是Chronometer这个控件实现秒表功能 ,当然也可以用Handler实现。handler实现这里暂时不说 。接下来的一篇就是用handler实现。 用Chronometer很简单 直接上代码main.xml<!-- Copyright (C)原创 2011-07-13 10:44:07 · 1682 阅读 · 0 评论 -
今天和大家讲一下TabHost的使用 (1)
activity.javapackage com.android.test.login;import android.app.Activity;import android.app.TabActivity;import android.media.ThumbnailUt原创 2011-07-14 22:49:50 · 1038 阅读 · 0 评论 -
今天和大家讲一下RatingBar和这个控件的OnRatingBarChangeListener监听
xml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:paddingLeft="1原创 2011-07-17 00:33:30 · 3873 阅读 · 1 评论 -
今天和大家讲解一下,标题栏显示进度条,使用setProgressBarIndeterminateVisibility()
setProgressBarIndeterminateVisibility()方法就是在activity的标题栏显示进度条的作用。使用方法很简单。效果图如上。。 @Override protected void onCreate(Bundle savedInstanceS原创 2011-07-17 13:33:14 · 14863 阅读 · 3 评论 -
Animation的简单讲解(1)
首先看API文档 http://developer.android.com/guide/topics/resources/animation-resource.html file location:res/anim/filename.xml文档上说 文件建在res/ani原创 2011-07-26 00:32:22 · 922 阅读 · 0 评论 -
今天和大家讲一下WindowManager这个类,这个类就是窗口管理员。
首先看API ,API上是这么说The interface that apps use to talk to the window manager.Use Context.getSystemService(Context.WINDOW_SERVICE) to get one o原创 2011-07-18 22:06:28 · 2816 阅读 · 0 评论 -
Intent 传递基本类型的数据的两种方式(不是Serializable,Parcelable)
Intent intent = new Intent(MainActivity.this, OtherActivity.class); //第一种方式 //intent.putExtra("name", "csdn"); //intent.putExtra("age",原创 2011-10-27 10:39:06 · 1190 阅读 · 0 评论 -
通过一个网页获取ip地址城市名称
public static String getCityName(){try {String path="http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js";URL url = new URL(path);//get //postHttpURLConnection conn = (HttpURLCo原创 2012-08-15 17:06:19 · 2241 阅读 · 0 评论 -
android字体颜色选择器
primary_text_yellow.xml Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a co原创 2012-11-22 16:00:49 · 4844 阅读 · 0 评论 -
java android计算两个时间间隔
public static int daysBetween(Date startDate, Date endDate)throws java.text.ParseException {SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");startDate = sdf.parse(sdf.format(st原创 2015-04-22 08:45:23 · 7826 阅读 · 0 评论 -
webview显示进度条
经过看webkit源码得知。package com.test.activity;import android.app.Activity;import android.graphics.Color;import android.os.Bundle;import android.util.Log;import android.view.Gravity;imp转载 2011-06-20 09:54:00 · 9110 阅读 · 6 评论