设置组件在指定组件的右边
android:layout_toRightOf="@id/tv1"
设置在指定组件的下边
android:layout_below="@id/tv1"
设置右对齐父元素
android:layout_alignParentRight="true"
设置与指定组件右对齐
android:layout_alignRight="@id/tv1"
1 <?xml version="1.0" encoding="utf-8"?> 2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:layout_width="match_parent" 4 android:layout_height="match_parent" > 5 6 <Button 7 android:id="@+id/center" 8 android:layout_width="100dp" 9 android:layout_height="50dp" 10 android:text="中间" 11 android:layout_centerInParent="true" 12 /> 13 <Button 14 android:layout_width="wrap_content" 15 android:layout_height="wrap_content" 16 android:text="上边" 17 android:layout_above="@id/center" 18 android:layout_alignRight="@id/center" 19 android:layout_alignLeft="@id/center" 20 /> 21 <Button 22 android:layout_width="wrap_content" 23 android:layout_height="wrap_content" 24 android:text="下边" 25 android:layout_below="@id/center" 26 android:layout_alignRight="@id/center" 27 android:layout_alignLeft="@id/center" 28 /> 29 <Button 30 android:layout_width="match_parent" 31 android:layout_height="wrap_content" 32 android:text="左边" 33 android:layout_toLeftOf="@id/center" 34 android:layout_alignTop="@id/center" 35 android:layout_alignBottom="@id/center" 36 /> 37 <Button 38 android:layout_width="wrap_content" 39 android:layout_height="wrap_content" 40 android:text="右边" 41 android:layout_toRightOf="@id/center" 42 android:layout_alignTop="@id/center" 43 android:layout_alignBottom="@id/center" 44 android:layout_alignParentRight="true" 45 /> 46 47 <Button 48 android:layout_width="match_parent" 49 android:layout_height="wrap_content" 50 android:text="左上" 51 android:layout_above="@id/center" 52 android:layout_toLeftOf="@id/center" 53 /> 54 <Button 55 android:layout_width="match_parent" 56 android:layout_height="wrap_content" 57 android:text="右上" 58 android:layout_above="@id/center" 59 android:layout_toRightOf="@id/center" 60 /> 61 <Button 62 android:layout_width="match_parent" 63 android:layout_height="wrap_content" 64 android:text="左下" 65 android:layout_below="@id/center" 66 android:layout_toLeftOf="@id/center" 67 /> 68 <Button 69 android:layout_width="match_parent" 70 android:layout_height="wrap_content" 71 android:text="右下" 72 android:layout_below="@id/center" 73 android:layout_toRightOf="@id/center" 74 /> 75 </RelativeLayout>
指定各个节点的排列方向
android:orientation="horizontal"
设置右对齐
android:layout_gravity="right"
线性布局非常重要的一个属性:权重
android:layout_weight="1"
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <LinearLayout android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" android:orientation="horizontal" > <TextView android:layout_weight="1" android:layout_width="0dp" android:layout_height="match_parent" android:background="#ff0000" /> <TextView android:layout_weight="1" android:layout_width="0dp" android:layout_height="match_parent" android:background="#ffffff" /> <TextView android:layout_weight="1" android:layout_width="0dp" android:layout_height="match_parent" android:background="#000000" /> <TextView android:layout_weight="1" android:layout_width="0dp" android:layout_height="match_parent" android:background="@android:color/darker_gray" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" android:orientation="vertical" > <TextView android:layout_weight="1" android:layout_width="match_parent" android:layout_height="0dp" android:background="#00ff00" /> <TextView android:layout_weight="1" android:layout_width="match_parent" android:layout_height="0dp" android:background="#aaa" /> <TextView android:layout_weight="1" android:layout_width="match_parent" android:layout_height="0dp" android:background="#000000" /> <TextView android:layout_weight="1" android:layout_width="match_parent" android:layout_height="0dp" android:background="#ffff4444" /> </LinearLayout> </LinearLayout>
可以更改对齐方式
android:layout_gravity="bottom"
1 <?xml version="1.0" encoding="utf-8"?> 2 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:layout_width="match_parent" 4 android:layout_height="match_parent" > 5 6 <TextView 7 android:layout_width="240dp" 8 android:layout_height="240dp" 9 android:background="#ff0000" 10 android:layout_gravity="center" 11 /> 12 13 14 <TextView 15 android:layout_width="200dp" 16 android:layout_height="200dp" 17 android:background="#00ff00" 18 android:layout_gravity="center" 19 /> 20 21 22 <TextView 23 android:layout_width="160dp" 24 android:layout_height="160dp" 25 android:background="#0000ff" 26 android:layout_gravity="center" 27 /> 28 29 30 <TextView 31 android:layout_width="120dp" 32 android:layout_height="120dp" 33 android:background="#ffff00" 34 android:layout_gravity="center" 35 /> 36 37 <TextView 38 android:layout_width="80dp" 39 android:layout_height="80dp" 40 android:background="#ff00ff" 41 android:layout_gravity="center" 42 /> 43 <TextView 44 android:layout_width="40dp" 45 android:layout_height="40dp" 46 android:background="#ffffff" 47 android:layout_gravity="center" 48 /> 49 50 </FrameLayout>
表格布局中的节点可以不设置宽高,因为设置了也无效
根节点中可以设置以下属性,表示让第1列拉伸填满屏幕宽度的剩余空间
android:stretchColumns="1"
小案例:
1 <?xml version="1.0" encoding="utf-8"?> 2 <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:layout_width="match_parent" 4 android:layout_height="match_parent" 5 android:stretchColumns="1" 6 > 7 <TableRow > 8 <TextView 9 android:layout_column="1" 10 android:text="Open" 11 /> 12 <TextView 13 android:text="Ctrl-O" 14 android:gravity="right" 15 /> 16 </TableRow> 17 <TableRow > 18 <TextView 19 android:layout_column="1" 20 android:text="Save" 21 /> 22 <TextView 23 android:text="Ctrl-S" 24 android:gravity="right" 25 /> 26 </TableRow> 27 <TableRow > 28 <TextView 29 android:layout_column="1" 30 android:text="Save AS" 31 /> 32 <TextView 33 android:text="Shift-Ctrl-S" 34 /> 35 </TableRow> 36 <TextView 37 android:layout_height="1dp" 38 android:background="#000000" 39 /> 40 <TableRow > 41 <TextView 42 android:text="X" 43 /> 44 <TextView 45 android:layout_span="2" 46 android:text="Import" 47 /> 48 </TableRow> 49 <TableRow > 50 <TextView 51 android:text="X" 52 /> 53 <TextView 54 android:text="Export" 55 /> 56 <TextView 57 android:text="Ctrl-E" 58 android:gravity="right" 59 /> 60 </TableRow> 61 <TextView 62 android:layout_height="1dp" 63 android:background="#000000" 64 /> 65 <TableRow > 66 <TextView 67 android:layout_column="1" 68 android:layout_span="2" 69 android:text="Quit" 70 /> 71 </TableRow> 72 73 </TableLayout>
直接指定组件的x、y坐标
android:layout_x="144dp"
android:layout_y="154dp"
Android提供的日志输出api
Log.v(TAG, "加油吧,童鞋们");
Log.d(TAG, "加油吧,童鞋们");
Log.i(TAG, "加油吧,童鞋们");
Log.w(TAG, "加油吧,童鞋们");
Log.e(TAG, "加油吧,童鞋们");
小案例:用户输入账号密码,勾选“记住账号密码”,点击登录按钮,登录的同时持久化保存账号和密码
弹土司提示用户登录成功
Toast.makeText(this, "登录成功", Toast.LENGTH_SHORT).show();
判断用户是否勾选保存账号密码
CheckBox cb = (CheckBox) findViewById(R.id.cb);
if(cb.isChecked()){
}
直接开启文件输出流写数据
//持久化保存数据
File file = new File("data/data/com.itheima.rwinrom/info.txt");
FileOutputStream fos = new FileOutputStream(file);
fos.write((name + "##" + pass).getBytes());
fos.close();
读取数据前先检测文件是否存在
if(file.exists())
读取保存的数据,也是直接开文件输入流读取
File file = new File("data/data/com.itheima.rwinrom/info.txt");
FileInputStream fis = new FileInputStream(file);
//把字节流转换成字符流
BufferedReader br = new BufferedReader(new InputStreamReader(fis));
String text = br.readLine();
String[] s = text.split("##");
读取到数据之后,回显至输入框
et_name.setText(s[0]);
et_pass.setText(s[1]);
getCacheDir()得到的file对象的路径是data/data/com.itheima.rwinrom2/cache
系统管理应用界面的清除缓存,会清除cache文件夹下的东西,清除数据,会清除整个包名目录下的东西
storage/sdcard:4.3之后的sd卡路径
最简单的打开sd卡的方式
File file = new File("sdcard/info.txt");
写sd卡需要权限
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
读sd卡,在4.0之前不需要权限,4.0之后可以设置为需要
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
使用api获得sd卡的真实路径,部分手机品牌会更改sd卡的路径
Environment.getExternalStorageDirectory()
判断sd卡是否准备就绪
if(Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED))
查找“可用空间”得到
<string name="memory_available" msgid="418542433817289474">"可用空间"</string>
查找"memory_available",得到
<Preference android:key="memory_sd_avail"
style="?android:attr/preferenceInformationStyle"
android:title="@string/memory_available"
android:summary="00"/>
查找"memorysdavail",得到
//这个字符串就是sd卡剩余容量
formatSize(availableBlocks * blockSize) + readOnly
//这两个参数相乘,得到sd卡以字节为单位的剩余容量
availableBlocks * blockSize
存储设备会被分为若干个区块,每个区块有固定的大小
用SharedPreference存储账号密码
往SharedPreference里写数据
//拿到一个SharedPreference对象
SharedPreferences sp = getSharedPreferences("config", MODE_PRIVATE);
//拿到编辑器
Editor ed = sp.edit();
//写数据
ed.putBoolean("name", name);
ed.commit();
从SharedPreference里取数据
SharedPreferences sp = getSharedPreferences("config", MODE_PRIVATE);
//从SharedPreference里取数据
String name = sp.getBoolean("name", "");
remove:没有插sd卡 unmount:sd卡已插,但是没有挂载 CHECKING:sd卡正在被系统遍历 MOUNTED:sd卡可以读写 MOUNTEDREADONLY:sd卡可用,但是只读
d rwx rwx rwx
第一个rwx:决定owner用户对此文件有什么权限
第二个rwx:决定grouper用户对此文件有什么权限