By admin, 10 二月, 2015

SharedPreferences prefs = this.getSharedPreferences(
      "com.example.app", Context.MODE_PRIVATE);

读取设置:

String dateTimeKey = "com.example.app.datetime";

// use a default value using new Date()
long l = prefs.getLong(dateTimeKey, new Date().getTime()); 

编辑保存设置:

Date dt = getSomeDate();
prefs.edit().putLong(dateTimeKey, dt.getTime()).apply();

标签

By admin, 10 二月, 2015

public boolean isOnline() {
    ConnectivityManager cm =
        (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
    NetworkInfo netInfo = cm.getActiveNetworkInfo();
    return netInfo != null && netInfo.isConnectedOrConnecting();
}

在AndroidManifest.xml中添加下面权限:

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

标签

By admin, 10 二月, 2015

AndroidManifest.xml的activity里添加android:screenOrientation="portrait"

<activity android:name=".SomeActivity" android:label="@string/app_name" android:screenOrientation="portrait">

标签

By admin, 10 二月, 2015

<TextView  
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:gravity="center"
    android:text="@string/**yourtextstring**"
/>

标签