首页 > 代码库 > 11月28号
11月28号
文本再XML里面编辑
android:text="@string/xihu"
文本在Activlty中编辑
获取TextView对象再进行 setText(“”)
<!-- 日期 -->
<DatePicker
android:id="@+id/dp_date"
android:layout_height="wrap_content"
android:layout_width="wrap_content"/>
<!-- 时间 -->
<TimePicker
android:layout_below="@+id/dp_date"
android:layout_height="wrap_content"
android:layout_width="wrap_content"/>
<Spinner
android:id="@+id/sp_grade"
android:layout_width="wrap_content"
android:layout_height="40dp"
android:layout_marginLeft="30dp"
android:entries="@array/grade"
android:prompt="@string/tsgrade" />
人品计算机
byte[] bt=name.getBytes();
int result =0;
for (byte b : bt) {
result += b%0xff; //byte转化为十进制数字
}
result=result%100;
result=Math.abs(result);//绝对值
ss = getResult(result);
System.out.println("reslut:"+result);
tv.setText(ss);
个人简历(运用各种组件,布局的嵌套)
11月28号