menu 在 android中是个非常常用的控件,以前自己做项目的时候通常都是将系统的menu相关方法在activity中直接删去,并且将主题换为fullscreen,然后再在layout中引入自己画好的新的标题栏。
实际上有更好的方法。
并不需要将系统方法删去,只需要将系统menu加上自己的图片,例如:
<item
android:id="@+id/menu_...
分类:
移动开发 时间:
2014-08-07 03:06:38
阅读次数:
228
先上图:
把这些表示观点的view放在一个LinearLayout里:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/repost_vote_tag_list"
android:l...
分类:
移动开发 时间:
2014-08-04 08:19:46
阅读次数:
383
无聊之作,只是从布局文件中提取出定义了android:id属性的控件名称,方便在编写class文件的时候能够跟layout文件保持一致。原理很简单,直接上代码:1、swing主界面代码 1 package com.zhyy.layoutparser; 2 3 import javax.swi...
分类:
移动开发 时间:
2014-08-02 17:47:13
阅读次数:
357
先看如下布局 : 上图中,按钮的大小为屏幕的一半,然后居中显示在布局中央,每个人心中都有自己的答案,看看我的方法吧,布局布局xml如下 :
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main_layout"
android:layout_wi...
分类:
移动开发 时间:
2014-07-31 17:16:46
阅读次数:
224
定义的getView执行多次的ListView布局:
<ListView
android:id="@+id/lv_messages"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParent...
分类:
移动开发 时间:
2014-07-30 20:58:54
阅读次数:
256
问题描述R cannot be resolved to a variable问题原因android:id="@+id/15" 定义id时命名不规范导致了编译错误,不能使用数字,须使用英文字母切记不能再犯。另外,可能导致R cannot be resolved to a variable的还有其他原因...
分类:
移动开发 时间:
2014-07-30 00:21:22
阅读次数:
278
android:id 为控件指定相应的ID。 android:text 指定控件当中显示的文字,需要注意的是,这里尽量使用strings.xml文件当中的字符串。 android:textSize 指定控件当中字体的大小。 android:background 指定该控件所...
分类:
移动开发 时间:
2014-07-29 16:11:39
阅读次数:
397
※效果
※简介
显示进度的按钮,可用于数据的提交,系统登录等,动画效果很棒,提高用户体验。
※使用说明
Declare button inside your layout XML file:
android:id="@+id/btnWithText"
android:layout_width="196dp"
android:la...
分类:
移动开发 时间:
2014-07-23 13:25:56
阅读次数:
250
android的ViewPager是一个可以支持手势来切换View的控件,很适合来做用户引导的页面:
如果有4张图,那么我们这样来写Layout:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/whats_new_main_view"
andr...
分类:
移动开发 时间:
2014-07-16 10:07:52
阅读次数:
304
创建Fragment添加Fragment 1、1 6 android:id=findFragmentById 7 8 android:tag=findFragmentByTag />
分类:
其他好文 时间:
2014-07-12 15:31:34
阅读次数:
167