昨天qq该小组被要求类别似QQ聊天窗口是如何实现的抖动效果。在这里,我只是意识到了什么,贴上代码: final View decorView = ((ViewGroup) findViewById(android.R.id.content)).getChildAt(0)...
分类:
移动开发 时间:
2015-06-22 22:09:54
阅读次数:
148
先上代码:
布局文件
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/id_drawerlayo...
分类:
其他好文 时间:
2015-06-20 09:18:38
阅读次数:
156
第一种方法 图片自动依次轮播,第一轮轮播完,重新回到第一张轮播,但是界面不会后退去定位到第一张图片
main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rl"
android:layout_width="fill_parent"...
分类:
其他好文 时间:
2015-06-18 13:42:14
阅读次数:
166
//首先在XML文件中配置一下
<TextView
android:id="@+id/textViewId"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="数据"
/>
<Button
android:id="@+id/butid"
android:layout_width="match_parent"
android:layout..
分类:
移动开发 时间:
2015-06-18 11:45:13
阅读次数:
176
方法一:返回的是作为唯一64位十六进制字符串的Android设备ID。import android.provider.Settings.Secure;private String android_id = Secure.getString(getContext().getContentResolver(), S...
分类:
移动开发 时间:
2015-06-16 11:09:36
阅读次数:
144
<EditText
android:id="@+id/et_endeValue"
android:textSize="20pt"
android:minLines="2"
android:maxLines="3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="请在这里输入内容"
android:text=""/>
android:id@+id是在R...
分类:
移动开发 时间:
2015-06-15 16:45:51
阅读次数:
118
1. xml
<com.torv.lijian.touchclickdemo.MyRelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/rl_root"
...
分类:
其他好文 时间:
2015-06-11 16:59:34
阅读次数:
119
第一步,先写布局文件
<com.main.util.SlideShowView
android:id="@+id/slideshowView"
android:layout_width="fill_parent"
android:layout_height="300dp"
...
分类:
移动开发 时间:
2015-06-11 14:41:43
阅读次数:
153
第一步,布局文件
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@android:id/tabhost"...
分类:
移动开发 时间:
2015-06-11 14:39:00
阅读次数:
118
一般我们应该用"@+id/"来定义一个id,然后用@id来引用一个id,但是现在我发现apps/settings/res/layout/preferenc_progress.xml中有个"@+android:id/title",怎么理解它?怎么用?加上android:表示引用android.R.id...
分类:
移动开发 时间:
2015-06-10 19:25:32
阅读次数:
148