㈠ 如何自定義安卓手機QQ2012的登陸桌面
你好,QQ2012V3.1.1登陸界面是沒辦法自定義的,聊天背景和你的名片可以自定義背景。
㈡ android如何把QQ登錄界面和自定義對話框結合起來
1、在Android打開設置找到模擬器。
2、在模擬器中輸入qq賬號不輸入密碼,點擊登錄按鈕會顯示提醒對話框。
2、登陸qq後在對話框內輸入賬號和密碼,qq登錄的界面和自定義對話框就會結合起來。
㈢ android studio怎樣做qq登錄界面
在qq裡面設置,他才可以登錄方式
㈣ 如何用android項目開發qq郵箱網頁版登錄界面
你是要在手機上實現QQ郵箱網頁版登錄還是仿那個郵箱登錄界面做個UI?
如果是直接載入QQ郵箱網頁版登錄界面的話,之前樓上答的很正確,用webview載入URL,頂多做點界面適配,讓網頁適配手機大小,字體大小做點設置什麼的
如果是仿UI,讓美工切圖,自己寫一下布局就可以了,具體登錄邏輯估計要配合後端服務才能形成一整套系統
㈤ Android QQ登陸頁面中的 "上、下箭頭切換是如何實現的"
用Edittext的焦點事件
獲取焦點和失去焦點的時候,就切換那個ImageView的圖片
㈥ 怎樣設計一個個性的QQ登陸界面。
最簡單的,就只用換兩張圖片首先說明一下QQ界面圖片的格式為bmp大圖片的大小為324×167 小圖片的大小為324×47 以下以修改QQ2005正式版為例:1.下載修改軟體「eXeScope650漢化版」安裝安裝時按默認設置安裝就可以了,軟體是漢化破解版,是免費軟體軟體下載地址QQ登陸界面下載地址(更多的QQ登陸界面圖片可以到我QQ空間的日誌里下載)2.安裝軟體後右鍵點擊QQ目錄下的「LoginCtrl.dll」文件選擇「用 exeScope 編輯資源「菜單(注意:如果你正在運行QQ的話先把QQ關閉或者復制QQ目錄下的「LoginCtrl.dll「文件到其他目錄單獨修改)否則會提示「拒絕寫入,以只讀模式打開」選擇後彈出「exeScope」界面,分別展開「資源」-「點陣圖」分支,選中「963」分支(如下圖)然後按鍵盤快捷鍵「F4」導入小圖片(格式bmp 大小324×47)(如下圖)導入後按鍵盤快捷鍵「Ctrl+s」保存,(如下圖)以上面的方法選中「16050「分支,導入大圖片(如下圖),然後保存保存後關閉「修改軟體「,然後打開QQ看看,這樣就成功修改了QQ登陸界面最後修改QQ界面按鈕的位置,分別展開「資源」-「對話框」選取中「450」分支,改裡面的坐標就可以了
㈦ Android如何實現類似於QQ登錄的界面,求大神!
首先程序進入SplashActivity,就是啟動頁面。
xml布局文件就是一個全屏的圖片,要注意的是設置android:scaleType ="matrix"這個屬性。不然不會全屏。
過1秒之後轉入登陸頁面,從圖片我們可以看出,騰訊的UI做的還是相當美觀漂亮的,既簡潔又不失美觀。先分析一下這個登錄界面,從整體可以看出,根布局的
背景色是藍色的,而那個QQ Android其實是一個圖片背景色和根布局的背景色一樣,這樣就不會有視覺偏差。
㈧ 如何用android設計qq登陸界面步驟
自己寫一個layout即可,這里有個簡單模仿微信的示例源代碼,解壓可以運行。
㈨ android怎麼做動態的登陸界面
設計android的登錄界面的方法:
UI實現的代碼如下:
1、背景設置圖片:
background_login.xml
<?xmlversion="1.0"encoding="utf-8"?>
<shapexmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:startColor="#FFACDAE5"
android:endColor="#FF72CAE1"
android:angle="45"
/>
</shape>
2、圓角白框
效果圖上面的並不是白框,其實框是白色的,只是設置了透明值,也是靠一個xml文件實現的。
background_login_div.xml
<?xmlversion="1.0"encoding="UTF-8"?>
<shapexmlns:android="http://schemas.android.com/apk/res/android">
<solidandroid:color="#55FFFFFF"/>
<!--設置圓角
注意:bottomRightRadius是左下角而不是右下角bottomLeftRadius右下角-->
<cornersandroid:topLeftRadius="10dp"android:topRightRadius="10dp"
android:bottomRightRadius="10dp"android:bottomLeftRadius="10dp"/>
</shape>
3、界面布局:
login.xml
<?xmlversion="1.0"encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background_login">
<!--padding內邊距layout_margin外邊距
android:layout_alignParentTop布局的位置是否處於頂部-->
<RelativeLayout
android:id="@+id/login_div"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="15dip"
android:layout_margin="15dip"
android:background="@drawable/background_login_div_bg">
<!--賬號-->
<TextView
android:id="@+id/login_user_input"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginTop="5dp"
android:text="@string/login_label_username"
style="@style/normalText"/>
<EditText
android:id="@+id/username_edit"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/login_username_hint"
android:layout_below="@id/login_user_input"
android:singleLine="true"
android:inputType="text"/>
<!--密碼text-->
<TextView
android:id="@+id/login_password_input"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/username_edit"
android:layout_marginTop="3dp"
android:text="@string/login_label_password"
style="@style/normalText"/>
<EditText
android:id="@+id/password_edit"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/login_password_input"
android:password="true"
android:singleLine="true"
android:inputType="textPassword"/>
<!--登錄button-->
<Button
android:id="@+id/signin_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/password_edit"
android:layout_alignRight="@id/password_edit"
android:text="@string/login_label_signin"
android:background="@drawable/blue_button"/>
</RelativeLayout>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextViewandroid:id="@+id/register_link"
android:text="@string/login_register_link"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:textColor="#888"
android:textColorLink="#FF0066CC"/>
<ImageViewandroid:id="@+id/miniTwitter_logo"
android:src="@drawable/cat"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
android:layout_marginRight="25dp"
android:layout_marginLeft="10dp"
android:layout_marginBottom="25dp"/>
<ImageViewandroid:src="@drawable/logo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toLeftOf="@id/miniTwitter_logo"
android:layout_alignBottom="@id/miniTwitter_logo"
android:paddingBottom="8dp"/>
</RelativeLayout>
</LinearLayout>
4、java源代碼,Java源文件比較簡單,只是實例化Activity,去掉標題欄。
packagecom.mytwitter.acitivity;
importandroid.app.Activity;
importandroid.os.Bundle;
importandroid.view.Window;
{
@Override
publicvoidonCreate(BundlesavedInstanceState){
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.login);
}
}
5、實現效果如下: