編輯:關於Android編程
布局代碼:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<!-- 用戶名的布局 -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/view_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/text_name" />
<EditText
android:id="@+id/edit_name"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:inputType="textPersonName" >
<requestFocus />
</EditText>
</LinearLayout>
<!-- 密碼布局 -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/view_pass"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/text_pass" />
<EditText
android:id="@+id/edit_pass"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:inputType="textPassword" >
<requestFocus />
</EditText>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/btn_login"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="0dp"
android:text="@string/text_login" />
<CheckBox
android:id="@+id/cbx_rember"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="100dp"
android:text="@string/text_rember" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<RadioGroup
android:id="@+id/rg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
tools:ignore="UselessParent" >
<RadioButton
android:id="@+id/radio_rom"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="@string/rom" />
<RadioButton
android:id="@+id/radio_sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/sp" />
<RadioButton
android:id="@+id/radio_sd"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/sd" />
</RadioGroup>
</LinearLayout>
</LinearLayout>
String。Xml的值裡面的代碼:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">用戶登錄三種數據存儲方式</string>
<string name="action_settings">Settings</string>
<string name="hello_world">Hello world!</string>
<string name="text_name">用戶名:</string>
<string name="text_pass">密碼:</string>
<string name="text_login">登陸</string>
<string name="text_rember">記住密碼</string>
<string name="rom">rom存儲</string>
<string name="sp">sp存儲</string>
<string name="sd">sd存儲</string>
</resources>
FileService 服務層的代碼:
package www.csdn.net.service;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import www.csdn.net.tools.StreamTools;
import android.content.Context;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
import android.os.Environment;
import android.widget.Toast;
public class FileService {
// 上下文的對象
public Context context;
public FileService(Context context) {
this.context = context;
}
/**
* 往手機內存上存儲用戶名與密碼的操作
*
* @param name
* @param pass
* @param fileName
* @return
* @throws IOException
*/
public boolean saveToRom(String name, String pass, String fileName)
throws IOException {
try {
// 通過openFileOutput()方法獲取一個文件的輸出流對象
FileOutputStream fos = context.openFileOutput(fileName,
Context.MODE_PRIVATE);
// 拼接用戶名與密碼
String result = name + ":" + pass;
fos.write(result.getBytes());
fos.flush();
fos.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
return false;
}
return true;
}
/**
* 追加模式
*
* @param name
* @param pass
* @param fileName
* @return
*/
public boolean saveToRomAppend(String name, String pass, String fileName) {
// MODE_PRIVATE :私有的模式
// 為默認操作模式
try {
// 通過openFileOutput()方法獲取一個文件的輸出流對象
FileOutputStream fos = context.openFileOutput(fileName,
Context.MODE_APPEND);
// 拼接用戶名與密碼
String result = name + ":" + pass;
// 寫入
fos.write(result.getBytes());
fos.flush();
fos.close();
} catch (Exception e) {
e.printStackTrace();
return false;
}
return true;
}
/**
* 可讀模式
*
* @param name
* @param pass
* @param fileName
* @return
*/
public boolean saveToRomReadable(String name, String pass, String fileName) {
// MODE_PRIVATE :私有的模式
// 為默認操作模式
try {
// 通過openFileOutput()方法獲取一個文件的輸出流對象
FileOutputStream fos = context.openFileOutput(fileName,
Context.MODE_WORLD_READABLE);
// 拼接用戶名與密碼
String result = name + ":" + pass;
// 寫入
fos.write(result.getBytes());
fos.flush();
fos.close();
} catch (Exception e) {
e.printStackTrace();
return false;
}
return true;
}
/**
* 可以寫的模式
*
* @param name
* @param pass
* @param fileName
* @return
*/
public boolean saveToRomWritable(String name, String pass, String fileName) {
// MODE_PRIVATE :私有的模式
// 為默認操作模式
try {
// 通過openFileOutput()方法獲取一個文件的輸出流對象
FileOutputStream fos = context.openFileOutput(fileName,
Context.MODE_WORLD_WRITEABLE);
// 拼接用戶名與密碼
String result = name + ":" + pass;
// 寫入
fos.write(result.getBytes());
fos.flush();
fos.close();
} catch (Exception e) {
e.printStackTrace();
return false;
}
return true;
}
// 讀取數據
public Map<String, String> readFile(String fileName) throws IOException {
Map<String, String> map = null;// new HashMap<String, String>();
try {
FileInputStream fis = context.openFileInput(fileName);
String value = StreamTools.getValue(fis);
String values[] = value.split(":");
// 判斷map集合
if (values.length > 0) {
map = new HashMap<String, String>();
map.put("name", values[0]);
map.put("pass", values[1]);
}
} catch (FileNotFoundException e) {
e.printStackTrace();
}
return map;
}
/**
* 采用SharedPreferences存儲數據的操作
*
* @param name
* @param pass
* @param fileName
* @return
*/
public boolean saveBytsp(String name, String pass, String fileName) {
// 通過上下文獲取Sharepreferences對象
SharedPreferences preferences = context.getSharedPreferences(fileName,
context.MODE_PRIVATE);
// 返回Editor對象
Editor editor = preferences.edit();
editor.putString("name", name);
editor.putString("pass", pass);
editor.putInt("age", 8);
editor.putBoolean("flag", true);
// 提交
return editor.commit();
}
public boolean saveToSDCard(String name, String pass, String fileName) {
// 首先判斷是否擁有SDcard
if (Environment.getExternalStorageDirectory().equals(
Environment.MEDIA_MOUNTED)) {
// SDCard寫入數據
// 首先要獲取SDCard目錄
File sdCardDir = Environment.getExternalStorageDirectory();
File file = new File(sdCardDir, fileName);// 根據目錄及創建文件的名稱 創建文件
try {
FileOutputStream fos = new FileOutputStream(file);
String result = name + ":" + pass;
fos.write(result.getBytes());
fos.flush();
fos.close();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
return false;
}
} else {
Toast.makeText(context, "手機不擁有SDCard", Toast.LENGTH_LONG).show();
}
return true;
}
// 讀取數據
public Map<String, String> readFileSDcard(String fileName) {
Map<String, String> map = null;// new HashMap<String, String>();
try {
// 第一步:獲取SDcard目錄文件
File sdcardDir = Environment.getExternalStorageDirectory();
// 第二步:根據sdcard目錄及文件名稱 創建文件對象
File file = new File(sdcardDir, fileName);
// 第三步:根據文件對象創建文件的輸入流
FileInputStream fis = new FileInputStream(file);
// 第四步:利用StreamTools工具 獲取文件中的內容
String value = StreamTools.getValue(fis);
// 根據規則拆分
String values[] = value.split(":");
//
if (values.length > 0) {
map = new HashMap<String, String>();
map.put("name", values[0]);
map.put("pass", values[1]);
}
} catch (Exception e) {
e.printStackTrace();
}
return map;
}
}
這裡用到的一個工具:
package www.csdn.net.tools;
import java.io.ByteArrayOutputStream;
import java.io.FileInputStream;
import java.io.IOException;
public class StreamTools {
public static String getValue(FileInputStream fis) throws IOException{
//字節的輸出流對象
ByteArrayOutputStream stream = new ByteArrayOutputStream();
byte [] buffer = new byte[1024];
int length=1;
while ((length = fis.read(buffer)) != -1) {
stream.write(buffer, 0, length);
}
stream.flush();
stream.close();
String value= stream.toString();
return value;
}
}
最主要的代碼: Activity
package com.example.file;
import java.io.IOException;
import java.util.Map;
import www.csdn.net.service.FileService;
import android.app.Activity;
import android.os.Bundle;
import android.text.TextUtils;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.EditText;
import android.widget.RadioButton;
import android.widget.Toast;
public class LoginActivity extends Activity {
// 聲明 獲取的用戶名與密碼的組件
public EditText edit_name, edit_pass;
// 聲明登陸按鈕對象
public Button btn_login;
// 聲明CheckBox組件對象
public CheckBox box_remember;
//創建業務對象
public FileService fileService;
// 聲明出單選的組件
public RadioButton radio_rom, radio_sp, radio_sd;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// 設置顯示視圖
setContentView(R.layout.activity_login);
//實例化業務對象
fileService = new FileService(this);
// 根據id名稱獲取相應組件對象
edit_name = (EditText) findViewById(R.id.edit_name);
edit_pass = (EditText) findViewById(R.id.edit_pass);
btn_login = (Button) findViewById(R.id.btn_login);
box_remember = (CheckBox) findViewById(R.id.cbx_rember);
// 給按鈕注冊事件
btn_login.setOnClickListener(new MyOnClickListener());
radio_rom = (RadioButton) findViewById(R.id.radio_rom);
radio_sp = (RadioButton) findViewById(R.id.radio_sp);
radio_sd = (RadioButton) findViewById(R.id.radio_sd);
// 采用SharedPreferences實現數據回顯
// 根據上下文的api獲取SharedPreferences對象
/*
SharedPreferences preferences =
this.getSharedPreferences("li",Context.MODE_PRIVATE);
edit_name.setText(preferences.getString("name", "csdn"));
edit_pass.setText(preferences.getString("pass", "csdn"));
*/
// 采用sdcard數據進行實現數據回顯
// 獲取map集合對象
//回顯數據
Map<String, String> map = fileService.readFileSDcard("csdnsdcard.txt");
if(map!=null){
edit_name.setText(map.get("name"));
edit_pass.setText(map.get("pass"));
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.login, menu);
return true;
}
// 內部類
class MyOnClickListener implements View.OnClickListener {
@Override
public void onClick(View v) {
int id = v.getId();
switch (id) {
case R.id.btn_login:
// 獲取用戶名與密碼
String name = edit_name.getText().toString();
String pass = edit_pass.getText().toString();
// 判斷用戶名與密碼是否為空
if (TextUtils.isEmpty(name) || TextUtils.isEmpty(pass)) {
Toast.makeText(LoginActivity.this, "用戶名或者密碼不能為空",
Toast.LENGTH_LONG).show();
return;
} else {
// 首先 判斷 是否記住密碼
if (box_remember.isChecked()) {
// 判斷采用什麼方式保存
if (radio_rom.isChecked()) {
// 采用rom保存
} else if (radio_sp.isChecked()) {
// 采用SharedPreferences
boolean flag = fileService.saveBytsp(name, pass,
"csdn");
if (flag) {
Toast.makeText(LoginActivity.this, "保存成功",
Toast.LENGTH_LONG).show();
} else {
Toast.makeText(LoginActivity.this, "保存失敗",
Toast.LENGTH_LONG).show();
}
} else if (radio_sd.isChecked()) {
// sd卡保存
boolean flag = fileService.saveToSDCard(name, pass,
"csdnsdcard.txt");
if (flag) {
Toast.makeText(LoginActivity.this, "保存成功",
Toast.LENGTH_LONG).show();
} else {
Toast.makeText(LoginActivity.this, "保存失敗",
Toast.LENGTH_LONG).show();
}
}
}
}
break;
default:
break;
}
}
}
}
在進行sdcard存儲的時候要有權限:
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<!-- 創建與刪除文件的權限 -->
<uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/>
<!-- 寫入數據的權限 -->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
存放的數據在/data/data/<package name>/files目錄應用私有的文件,以txt的形式顯示。
隨著現在手機硬件不斷的提升,分辨率提高手機的安裝包也是越來越大了。當年NOKIA,MOTO時代,一個手機APP如果有1MB那都是算大的,2MB已經不得了了。雖然網
本文實例為大家分享了閃耀字體效果的具體代碼,供大家參考,具體內容如下import android.content.Context;import android.graph
Android基礎入門教程——7.6.2 基於TCP協議的Socket通信(1)標簽(空格分隔): Android基礎入門教程本節引言: 上一節的
先來看下要實現效果圖:查閱資料後,發現網上大部分都是用這種方法實現的:多寫一個和需要懸浮的部分一模一樣的layout,先把浮動區域的可見性設置為gone。當浮動區域滑動到