随笔分类 - 安卓APP开发
摘要:最近在用模拟器调试android项目时,频繁出现以下错误提示: Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGEPlease check logcat output for more details.Launch canceled! 也知
阅读全文
摘要:、、 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match
阅读全文
摘要:<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_par
阅读全文
摘要:@Override是Java5的元数据,自动加上去的一个标志,告诉你说下面这个方法是从父类/接口 继承过来的,需要你重写一次,这样就可以方便你阅读,也不怕会忘记 @Override是伪代码,表示重写(当然不写也可以),不过写上有如下好处: 1>可以当注释用,方便阅读 2>编译器可以给你验证@Over
阅读全文
摘要:https://blog.csdn.net/qq_29440353/article/details/89327485
阅读全文
摘要:package com.example.sl3_3; import android.app.Activity; import android.os.Bundle; import android.view.Menu; import android.view.MenuItem; import andro
阅读全文
摘要:package com.example.sl3_2a; import android.app.Activity; import android.app.AlertDialog; import android.content.DialogInterface; import android.graphi
阅读全文
摘要:eclipse如何新建安卓app项目程序 eclipse如何新建安卓app项目程序 <?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/androi
阅读全文
摘要:安卓app2022-02-10 20:03:09 - sl3_1] E:\Users\t\workspace\sl3_1\res\layout\activity_main.xml:8: error: Error: No resource found that matches the given na
阅读全文
摘要:Android ADT 下载 ( ADT-23.0.7 ) https://www.androiddevtools.cn/ https://dl.google.com/android/ADT-23.0.7.ziphttps://dl.google.com/android/ADT-23.0.6.zip
阅读全文
摘要:导入如下信息 import android.widget.FrameLayout;import android.widget.FrameLayout.LayoutParams; LayoutParams params = new LayoutParams( ViewGroup.LayoutParam
阅读全文