- Oct 23 Thu 2014 21:57
How to Make a Domain User the Local Administrator for all PCs
- Oct 18 Sat 2014 10:18
解決 PHP/mySQL 資料庫讀取中文顯示亂碼或問號
- Sep 13 Sat 2014 09:14
Linux 中用戶切換:su 和 su- 的使用 環境變量詳解
大部分Linux發行版的默認賬戶是普通用戶,而更改系統文件或者執行某些命令,需要root身份才能進行,這就需要從當前用戶切換到root用戶,Linux中切換用戶的命令是su或su -,下面就su命令和su -命令最大的本質區別給大家詳解一下:
前者只是切換了root身份,但Shell環境仍然是普通用戶的Shell;而後者連用戶和Shell環境一起切換成root身份了。只有切換了Shell環境才不會出現PATH環境變量錯誤。su切換成root用戶以後,pwd一下,發現工作目錄仍然是普通用戶的工作目錄;而用su -命令切換以後,工作目錄變成root的工作目錄了。用echo $PATH命令看一下su和su - 以後的環境變量有何不同。以此類推,要從當前用戶切換到其它用戶也一樣,應該使用su -命令。
打個比方:在普通用戶下輸入:
- Sep 11 Thu 2014 19:37
linux系統下,安裝phpmyadmin顯示一片空白
linux下打印錯誤報告 sudo tail /var/log/httpd/error_log
顯示如下錯誤:phpMyAdmin\libraries\php-gettext\gettext.inc on line 177Fatal error:
- Sep 11 Thu 2014 17:15
解決:配置虛擬主機,重啟apache,[warn] _default_ VirtualHost overlap on port 80, the first has precedence
在配置第一個虛擬主機的時候,重啟apache的時候,都可能會遇到下面的問題:
- Aug 30 Sat 2014 12:52
佈局管理器 動態產生佈局 Layout
為了更好的管理Android應用的用戶界面裡的個組件,Android提供了佈局管理器,通過佈局管理器,Android應用的圖形用戶界面具有良好的平台無關性。這裡什麼叫平台的無關性呢?就是說不同手機。我們知道不同手機它們的屏幕的分辨率、尺寸並不完全相同,而Android的佈局管理器可以根據運行平台來調整組件的大小,而我們所需要做的就是選擇合適的佈局管理器。
與Swing編程不同的是,Android的佈局管理器本身就是一個UI組件,所有的佈局管理器都是ViewGroup的子類:
- Aug 30 Sat 2014 12:02
Android 利用 addView 讓 Activity 動態加入多個 View 物件
在 Android 中,
你可以利用排版 View 的 addView 函數,
將動態產生的 View 物件加入到排版 View 中,
範例如下 :
<LinearLayout
android:id="@+id/viewObj"
- Aug 30 Sat 2014 10:17
Android 元件佈局 RelativeLayout
上一篇介紹過如何使用LinearLayout進行元件佈局,但是單靠一種排版方式,設計出來的介面並不豐富,所以Android也有提供其它的排版方式,本篇將介紹如何使用RelativeLayout(相對佈局)進行排版。其它的排版方式會陸陸續續的介紹!!
- 使用RelativeLayout進行元件佈局
跟上一篇不同的地方是將包覆元件的容器改成RelativeLayout,本範例使用一個RelativeLayout來包覆4個Button元件,並定義一些元件屬性完成元件佈局.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<Button
android:id="@+id/Button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button1"
/>
<Button
android:id="@+id/Button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button2"
android:layout_below="@+id/Button1"
android:layout_toRightOf="@+id/Button1"
/>
<Button
android:id="@+id/Button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button3"
android:layout_toRightOf="@+id/Button2"
android:layout_above="@+id/Button2"
/>
<Button
android:id="@+id/Button4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button4"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
/>
</RelativeLayout>
- Aug 30 Sat 2014 10:14
[Android UI 設計] 版面布局Layout-LinearLayout
- Aug 30 Sat 2014 08:33
Android 從媒體櫃Gallery 選擇圖片
To fetch images on SD Card.Uri will be
android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI
onActivityResult method: