项目接着推进的时候,界面上的金额需要表示如下:500,00,还有100,00.00
解决方案是:
网上的方案如下:
//千分位方法
public static String fmtMicrometer(String text)
{
DecimalFormat df = null;
if(text.indexOf(".") > 0)
{
if(text.length() - text.indexOf(".")-1 == 0)
{
df = new DecimalFormat("###,##0.");
}else if(text.length() - text.indexOf(".")-1 == 1)
{
df = newDecimalFormat("###,##0.0");
}else
{
df = newDecimalFormat("###,##0.00");
}
}else
{
df = new DecimalFormat("###,##0");
}
double number = 0.0;
try {
number = Double.parseDouble(text);
} catch (Exception e) {
number = 0.0;
}
return df.format(number);
}
如果带正负号如String s = -38475000.9098
if(s.startsWith("-")){
Strings=this.fmtMicrometer(strResults.substring(1, strResults.length()));
System.out.println(s);
}
//得到的结果就是-38,475,000.90
//千分位表示:500,00
NumberFormat formatter = new DecimalFormat("###,###");
String d = formatter.format((maps.get(position).get("country")
.toString()))+"";
viewHolder.country.setText(d);
if(Double.parseDouble(maps.get(position).get("country1").toString()) > 0.000001 ){
NumberFormat format = new DecimalFormat("###,##0.00");
String d1 = formatter.format(Double.parseDouble(maps.get(position).
get("country1").toString()))+"";
/*viewHolder.country1.setText(maps.get(position).get("country1")
.toString());*/
viewHolder.country1.setTextColor(0xFF42A881);
}else{
NumberFormat format = new DecimalFormat("###,##0.00");
String d1 = formatter.format(Double.parseDouble(maps.get(position).
get("country1").toString()))+"";
/*viewHolder.country1.setText(maps.get(position).get("country1")
.toString());*/
viewHolder.country1.setTextColor(0xFFFF0000);
}
2.我试过了下列是最简便的方式转换格林尼治时间:
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
String yymmdd = simpleDateFormat.format(trade[i].getOpenTime()); // 2012-08-29 02:45:00
3.界面上使控件之间有间距:android:layout_marginTop="5dp"
4.在界面显示横线:<View
android:layout_width="wrap_content"
android:layout_height="1.2px"
android:background="#FFFFFF"
android:layout_marginTop="10dp"
/>
虽然能显示横线,但长度填满屏幕,需要和按钮一致,解决如下:
<View
android:layout_width="wrap_content"
android:layout_height="1.2px"
android:layout_marginLeft="14dp"
android:layout_marginRight="14dp"
android:layout_marginBottom="5dp"
android:layout_marginTop="5dp"
android:background="@color/white" />
5.遇到这样一个错误,进入软件任意一个界面,点击back键,再次进入主界面,点击该fragment,弹出错误:
弹出的进度框报异常:
我错处的代码是这样的:
progressDialog.show();
private void initProgress() {
progressDialog = DialogManager.showProgressDialog(getActivity().getParent(), "",
"數據加載中...", DialogType.OrderHis);
}
解决方案是:
AlertDialog是属于Acitivity的,当Activity销毁的时候它也必须销毁,所以这里我们指定是Activity的Context。