1.我们在开发APP的时候,需要将一个控件放到屏幕最下方,那么我们就需要一个属性:
android:layout_alignParentBottom="true"
当然,前提是你的布局是用RelativeLayout,否则这个属性没有用。
2.点击改变字体颜色
textView.setTextColor(Color.parseColor("#1a7557"));
3.图片的改变
ImageView.setImageDrawable(getResources().getDrawable(R.drawable.bg_speed_three));
4.背景图的改变:
RelativeLayout.setBackgroundResource(R.drawable.bg_qian);
5.改变字体大小:
motionNewNumber.setTextSize(12);
5.设置TextView的行间距和字的间距
设置字的间距 android:textScaleX="1.5"
设置行间距 android:lineSpacingMultiplier="2"
6.点击EditText先直接让软键盘显示为数字的俩种方式
(1)android:inputType="number"
(2)android:phoneNumber="true"