摘要:
android下应用程序的路径和javase不同,应用程序的数据要保存自己的文件夹里面> > getFileDir(); 获取自己的文件夹 /data/data/包名(应用程序的名字)/files> getCacheDir(); ... 阅读全文
摘要:
package com.itheima.logcat;import android.os.Bundle;import android.app.Activity;import android.util.Log;import android.view.Menu;//logCat是环形缓冲区(内存),一旦... 阅读全文
摘要:
import android.os.Bundle;import android.app.Activity;import android.telephony.SmsManager;import android.view.Menu;public class MainActivity extends Ac... 阅读全文
摘要:
##常见的布局* LinearLayout 线性布局线性布局往左右拉是拉不动的,> 线性布局的朝向 vertical|horizontal> 线性布局的权重 weight 和 0dip一起使用 垂直排列,里面的内容垂直排列 水平排列,不用权重则多的将会挤出去, ... 阅读全文
摘要:
LayoutInflater作用是将layout的xml布局文件实例化为View类对象。获取LayoutInflater的方法有如下三种:LayoutInflater inflater=(LayoutInflater)context.getSystemService(Context.LAYOUT_I... 阅读全文
摘要:
贴一下显示效果图,仅作参考:代码如下:1、自定义DialogpublicclassSelectDialogextendsAlertDialog{publicSelectDialog(Contextcontext,inttheme){super(context,theme);}publicSelect... 阅读全文