有网友表示对于很多工程中的MATCH_PARENT出现在layout中感到不明白,过去只有FILL_PARENT和WRAP_CONTENT那么 match_parent到底是什么类型呢? 其实从Android 2.2开始FILL_PARENT改名为MATCH_PARENT ,从API Level为8开始我们可以直接用MATCH_PARENT来代替FILL_PARENT,最后Android123提醒大家,他们的定义本质是一样均为 -1,只是换了个别名,可能为了更准确些,比如最终在SDK中的定义为:
fill_parent -1 The view should be as big as its parent (minus padding). This constant is deprecated starting from API Level 8 and is replaced by match_parent.
match_parent -1 The view should be as big as its parent (minus padding). Introduced in API Level 8.
wrap_content -2 The view should be only big enough to enclose its content (plus padding).
Android中的组件需要用一个int类型的值来表示,这个值就是组件标签中的id属性值。
id属性只能接受资源类型的值,也就是必须以@开头的值,例如,@id/abc、@+id/xyz等。
如果在@后面使用“+”,表示当修改完某个布局文件并保存后,系统会自动在R.java文件中
生成相应的int类型变量。变量名就是“/”后面的值,例如,@+id/xyz会在R.java文件中生成
int xyz = value,其中value是一个十六进制的数。如果xyz在R.java中已经存在同名的变量,
就不再生成新的变量,而该组件会使用这个已存在的变量的值。
既然组件的id属性是一个资源id就可以,那么自然可以设置任何已经存在的资源id值,例如,@drawable/icon、
@string/ok、@+string/you等。也可以设置android系统中已存在的资源id,例如@id/android:list,
那么,这个android是什么意思呢,实际上,这个android就是系统的R类(在R.java文件中)所在的package。
我们可以在Java代码编辑区输入android.R.id.,就会列出相应的资源id,例如,也可以设置id属性值为@id/android:message。
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
还有另外一种方法查看系统中定义的id,进入\platforms\android-1.5\data\res\values目录,找到ids.xml文件,打开后,内容如下:
false
false
若在ids.xml中定义了ID,则在layout中可如下定义@id/price_edit,否则@+id/price_edit
@+id和@id是有区别的,@+id/xxx是指:如果xxx变量没有声明那么在class id中声明该变量,如果已经声明,那么就应用该变量!而@id只能引用该变量,如果变量不存在就会报错!
|
简单来讲:
@+id 新增一个资源id@id和android:id,引用现有的资源id
相关推荐
android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <!-- 或者 "vertical" --> ... ``` 接着,我们添加`RadioButton`到`RadioGroup`中。每个`...
android:layout_height="match_parent" android:orientation="vertical" android:background="#C0C0C0"> android:id="@+id/textView1" android:layout_width="fill_parent" android:layout_height="wrap_...
android:layout_height="match_parent" android:transcriptMode="alwaysScroll" /> ``` 同时,为了保证滚动条始终可见,还需要设置`fadeScrollbars`属性为`false`: ```xml android:id="@+id/listView" ...
android:layout_width="match_parent" android:layout_height="match_parent" android:background="#F0EFF5" > android:id="@+id/sayit_rl_tab" android:layout_width="fill_parent" android:layout_...
android:layout_height="fill_parent" android:background="@drawable/handle"/> ``` Android 中的层 在 Android 中,有几层结构组成。第一层是壁纸,第二层是应用的 Activity,第三层是容器(ViewGroup 及其子类...
android:layout_height="fill_parent" android:handle="@+id/handle" android:content="@+id/content" android:orientation="vertical" android:id="@+id/slidingdrawer"> android:id="@id/handle" ...
android:layout_height="fill_parent" android:orientation="vertical"> android:id="@+id/downloadview" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="下载...
android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal"> android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height=...
android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical"> android:id="@+id/radioButton1" android:layout_width="wrap_content" android:layout_...
android:layout_height="fill_parent" android:orientation="vertical" > android:id="@+id/tv" android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" android:...
android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/autocompletetextview" /> ``` 2. 在代码中初始化并设置数据源: ```java static final String[] myStr = {"aaa...
android:layout_width="fill_parent" android:layout_height="fill_parent"> android:text="button" android:layout_width="fill_parent" android:layout_height="wrap_content" /> android:text=...
android:layout_height="fill_parent" android:weightSum="1"> android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/hello" /> android:layout_width="match...
- `GridView`用于显示底部菜单,初始状态为隐藏(`android:visibility="gone"`), 宽度填满屏幕(`android:layout_width="fill_parent"`), 且位于屏幕底部(`android:layout_alignParentBottom="true"`). - `...
android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:layout_marginTop="2dp" android:text="猜猜是哪张" android:textSize="20sp" />...
android:layout_width="match_parent" android:layout_height="match_parent" /> ``` 接着,为了提供`ViewPager`需要的数据源,我们需要创建一个`FragmentPagerAdapter`或`FragmentStatePagerAdapter`的子类。这...
android:layout_width="match_parent" android:layout_height="match_parent"> android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> android:...
android:layout_height="fill_parent"> android:id="@+id/txt" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="Hello World"/> ``` #### 四、进阶实例:让 ...
android:layout_width="match_parent" android:layout_height="match_parent"> ``` 2. **添加TabWidget和FrameLayout**:在TabHost内,添加TabWidget和FrameLayout。TabWidget用于显示Tab,而FrameLayout用于...
android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/editText1"> <!-- layout2.xml --> <LinearLayout xmlns:android=...