<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/ll_grid_item" android ...
分类:
其他好文 时间:
2016-06-18 06:39:55
阅读次数:
420
Android原生控件只有横向进度条一种,而且没法变换样式,比如原生rom的样子很丑是吧,当伟大的产品设计要求更换前背景,甚至纵向,甚至圆弧状的,咋办,比如ok,我们开始吧: 一)变换前背景 先来看看progressbar的属性: 1. <ProgressBar 2. android:id="@+i ...
分类:
其他好文 时间:
2016-06-13 22:06:42
阅读次数:
248
效果图如下:布局文件:<?xmlversion="1.0"encoding="utf-8"?>
<android.support.v4.widget.SwipeRefreshLayoutxmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/swipe"
android:layout_..
分类:
其他好文 时间:
2016-06-07 16:40:51
阅读次数:
279
<com.example.android.softkeyboard.LatinKeyboardView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/keyboard"
android:layout_alignParentBottom="true...
分类:
移动开发 时间:
2016-06-07 13:10:38
阅读次数:
252
如果要让后退按钮显示出来,需要在后台添加如下的代码 当然添加这行代码后仅仅是出现一个后退的箭头而已,点击后并没反应,需要继续添加监听事件才行,默认添加的按钮id是固定的,android.R.id.home,在onOptionsItemSelected中再添加如下的监听事件 其实这样并不是真正意义上的 ...
分类:
移动开发 时间:
2016-06-04 19:20:11
阅读次数:
217
一.WorkSpace是什么
前面已经介绍了一个WorkSpace包含了多个CellLayout,再回忆下之前画过的图
WorkSpace是一个ViewGroup,它的布局如下
<com.android.launcher3.Workspace
android:id="@+id/workspace"
android:layout...
分类:
移动开发 时间:
2016-06-03 19:14:18
阅读次数:
503
<ImageView android:id="@+id/singleimage" android:layout_width="@dimen/magin_corner70" android:layout_height="@dimen/magin_corner70" android:layout_ali ...
分类:
编程语言 时间:
2016-06-01 12:58:56
阅读次数:
439
第一种用法:效果图如下:
1.三个布局文件:
main.xml 注意: android:id="@id/android:list"不能写自己的
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/...
分类:
其他好文 时间:
2016-05-27 12:38:45
阅读次数:
176
布局定义custom_notification.xml<?xmlversion="1.0"encoding="utf-8"?>
<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+..
分类:
其他好文 时间:
2016-05-25 19:04:49
阅读次数:
438
1、减少View树的高度(多层嵌套) 2、使用<include>重用layout 3、使用<ViewStub>实现View的延迟加载 作用范围:当这个布局在初始化加载时候,不需要显示出来。 如何使用: xml <ViewStub android:id="@+id/main_vs" android:l ...
分类:
移动开发 时间:
2016-05-22 15:20:43
阅读次数:
212