做移动端页面时,又想用伪元素做真实1像素边框,又想有边角时,会发现只加一个border-radius时出来的效果边款并没有变成圆角,解决办法是加两个border-radius 图中边框用了真实1px,在pc端看可能不太明显 ...
分类:
移动开发 时间:
2017-07-31 17:52:42
阅读次数:
169
今天在做项目的一个新功能的时候,从网上查找资源,发现android2.2中出现的MATCH_PARENT感到不明确。过去仅仅有FILL_PARENT和WRAP_CONTENT那么match_parent究竟是什么类型呢? 经过一番研究发现,从Android 2.2開始FILL_PARENT改名为MA ...
分类:
移动开发 时间:
2017-07-26 20:28:54
阅读次数:
210
UI_常用组件之 Spinner(下拉列表)与适配器模式 <Spinner android:id="@+id/spinner1" android:layout_width="142dp" android:layout_height="wrap_content" android:entries="@a ...
分类:
其他好文 时间:
2017-07-22 09:50:10
阅读次数:
127
1.改成21+可以,如果不行,就使用第2或第3个解决方案 2.对每个item的inflate,传入两个参数,第二个参数设置为null,而不是使用3个参数(第二个parent,第三个false) 3.item的根部局高度不要设置为相对的(match_parent或wrap_content),要设置为具 ...
分类:
其他好文 时间:
2017-07-16 00:04:12
阅读次数:
167
1.XML文件布局<Button
android:id="@+id/bt1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="doClick"
android:text="XML添加doClick"
android:layout_above="@+id/bt2"
android:layout_marginBottom="47dp"
/>
<Butt..
分类:
其他好文 时间:
2017-07-11 14:42:59
阅读次数:
234
注意rating_background图片做出来的图片最好和图片四周有一定的空隙。不然会造成图片底部被拉伸的情况。 <RatingBar android:layout_width="wrap_content" android:layout_height="wrap_content" android: ...
分类:
移动开发 时间:
2017-06-26 10:24:02
阅读次数:
224
今天发现设置viewpager高度为wrap_content时并没作用。stackoverflow给出了解决方式,就是自己定义viewpager,重写onMesure()方法: public class WrapContentHeightViewPager extends ViewPager { / ...
分类:
移动开发 时间:
2017-06-21 11:53:31
阅读次数:
326
1,mobile_signal_group.xml ..... <FrameLayout android:id="@+id/mobile_combo" android:layout_width="wrap_content" android:layout_height="wrap_content" > ...
分类:
移动开发 时间:
2017-06-17 16:05:58
阅读次数:
301
这是xml文件的代码。 <TextView android:id="@+id/main_tv" android:textSize="25sp" android:layout_width="wrap_content" android:layout_height="wrap_content" andro ...
分类:
其他好文 时间:
2017-06-14 11:38:04
阅读次数:
220
在组件中增加<requestFocus />能够首先获得焦点 以TextView为例: 例如以下: <TextView android:layout_width="100dp" android:layout_height="wrap_content" android:background="#ffc ...
分类:
移动开发 时间:
2017-06-09 15:19:24
阅读次数:
176