等了一个多月,终于把一台MC207CH/A型号的macbook拿到手了,本来想买15寸的,不过厂家一直都缺货,说是现在全部的生产线都在生成iPad了,只好作罢。浪费了一个下午,总算拿到一台崭新的白色macbook,苹果的产品都很酷,整部手提清洁溜溜的,usb都只有两个,不像现在的手提恨不得全身都是孔。然后它的盒子也是清洁溜溜,除了手提就是充电器,连个鼠标都没有,搞得我要提着箱子回去。说说几个感想:
1 贵,真tm的贵,价格都快超过品牌手提一倍了,厂家那里也是维修处,一个兄弟丢了1个螺丝,想过来配一个,这位说一搬十几个螺丝配套卖,一百来块钱,听得我眼珠子都快掉出来了。苹果连螺丝钉都很有个性,不是十字,而是x,象征mac的版本,不是专用的螺丝刀都不能开,看看人家这手段,螺丝都能卖出天价。
2 怪异,不知道应该说是苹果的怪癖还是我们被微软圈养出来的习惯,很多地方苹果就是和别人格格不入的,硬盘不给分区,能同时安装windows,但是进windows也只能用一个分区,这让习惯了把工作、娱乐和系统分离的我很不习惯。删除程序只要把图标丢到垃圾桶就可以了。人家都搞开放、通用化,苹果偏要反向而行,不论mp3,iphone全部都要通过他的iTune才能用,iPhone有蓝牙,可丫就不给你传文件,只能用来视屏。想搞iPhone开发,装我的mac,windows?linux?一边凉快着去。
3 独特,整部苹果手提充斥着其独特的风格,别人的变压器都是在中间,它的变压器也插头连在一起,链接电脑的接口是附带磁铁,而且插头附带指示灯,还是双面的,设计相当贴心。触摸板没有右键,一开始相当不习惯,学习了多点触摸后就觉得很好用了。LED背面的苹果图标在开机时是会亮的,当室内关闭灯光时,白色的外壳搭配发光和苹果让人有一直圣洁的感觉,很酷!
如果使用locale 可以进行语言转换,但是好像不能马上进行转换,要重新启动才开始
如果想马上实现效果 resource.updateConfiguration()更新一下
如果更新后还想做一写什么
android:configChanges="locale"
@Override
public void onConfigurationChanged(Configuration newConfig) {
// 更新一下吧
super.onConfigurationChanged(newConfig);
}
2.
AlertDialog.Builder builder;
AlertDialog alertDialog;
Context mContext = getApplicationContext();
LayoutInflater inflater = (LayoutInflater)
mContext.getSystemService(LAYOUT_INFLATER_SERVICE);
View layout = inflater.inflate(R.layout.custom_dialog,
(ViewGroup) findViewById(R.id.layout_root));
TextView text = (TextView) layout.findViewById(R.id.text);
text.setText("Hello, this is a custom dialog!");
ImageView image = (ImageView) layout.findViewById(R.id.image);
image.setImageResource(R.drawable.android);
builder = new AlertDialog.Builder(mContext);
builder.setView(layout);
alertDialog = builder.create();
用ConnectivityManager可以判断现在的网络是wifi还是GPRS~
package com.et.TestNetWork; import android.app.Activity; import android.content.Context; import android.net.ConnectivityManager; import android.net.NetworkInfo; import android.os.Bundle; import android.widget.TextView; public class TestNetWork extends Activity { /** Called when the activity is first created. */ private TextView text; public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); text = (TextView) findViewById(R.id.text); ConnectivityManager connec = (ConnectivityManager)getSystemService(Context.CONNECTIVITY_SERVICE); if (connec.getNetworkInfo(1).getState() == NetworkInfo.State.CONNECTED) text.setText("wifi方式连接"); if (connec.getNetworkInfo(0).getState() == NetworkInfo.State.CONNECTED) text.setText("GPRS方式连接"); } }