Android实现QQ新用户注册界面遇到问题及解决方法

在上篇文章给大家介绍了Android实现QQ登录界面遇到问题及解决方法,本篇文章继续给大家介绍有关android qq界面知识。

先给大家展示下效果图:

问题:

1、下拉列表(因为还没看到这里...)

2、标题栏显示问题

3、按钮的 Enable 设置  

以下是代码:

布局 fragment_main(问题1)

<RelativeLayout 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:focusable="true" android:focusableInTouchMode="true" android:background="#F7F7F9" tools:context="com.dragon.android.qqregist.MainActivity$PlaceholderFragment" > <Button android:id="@+id/button2" android:layout_width="wrap_content" android:layout_height="50dp" android:layout_alignParentTop="true" android:background="#ffffff" android:drawableLeft="@drawable/aa" android:text="@string/button2" android:textColor="#1CBAF5" /> <TextView android:id="@+id/textView2" android:layout_width="match_parent" android:layout_height="50dp" android:layout_alignBaseline="@+id/button2" android:layout_alignBottom="@+id/button2" android:background="#ffffff" android:gravity="center" android:text="@string/pagename" android:textColor="#1CBAF5" /> <LinearLayout android:id="@+id/linear" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" android:layout_below="@id/button2" android:paddingTop="30dp" android:paddingBottom="20dp" > <Spinner android:id="@+id/spinner1" android:layout_width="0dp" android:layout_height="wrap_content" android:background="@drawable/bg_spinner" android:layout_weight="1" android:entries="@array/country"/> <EditText android:id="@+id/editText1" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="2" android:background="@drawable/bg_edittext" android:ems="10" android:inputType="phone" android:hint="@string/innum" android:color="#000000" android:textSize="15sp" > </EditText> </LinearLayout> <Button android:id="@+id/button1" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="10dp" android:layout_marginRight="10dp" android:layout_below="@id/linear" android:enabled="false" android:background="@drawable/bg_button" android:text="@string/button" android:gravity="center" android:textColor="#FFFFFF" /> <CheckBox android:id="@+id/checkBox1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="10dp" android:layout_marginLeft="10dp" android:layout_below="@id/button1" android:text="@string/sure" android:textSize="12sp" android:textColor="#A6A6A7" /> <TextView android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignBaseline="@+id/checkBox1" android:layout_alignBottom="@+id/checkBox1" android:layout_marginLeft="10dp" android:layout_toRightOf="@+id/checkBox1" android:autoLink="all" android:text="@string/protocol" android:textSize="12sp" /> </RelativeLayout> fragment_main

EditText、Spinner 以及 Button 修改前后的背景

<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" > <stroke android:width="1px" android:color="#BEBEBE"/> <solid android:color="#FFFFFF" /> <padding android:left="10dp" android:top="10dp" android:bottom="10dp"/> </shape> bg_edittext <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" > <stroke android:width="1px" android:color="#BEBEBE"/> <solid android:color="#FFFFFF" /> <padding android:left="10dp" android:top="10dp" android:bottom="10dp"/> </shape> bg_spinner <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" > <solid android:color="#808080"/> <corners android:radius="10dp"/> <padding android:top="10dp" android:bottom="10dp"/> </shape> bg_button <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" > <solid android:color="#1CBAF5"/> <corners android:radius="10dp"/> <padding android:top="10dp" android:bottom="10dp"/> </shape> bg_buttin_change

Spinner 的下拉数据 arrays

<?xml version="1.0" encoding="utf-8"?> <resources> <string-array name="country"> <item >中国 +86</item> <item >香港 +852</item> <item >澳门 +853</item> <item >台湾 +886</item> <item >日本 +81</item> <item >美国 +1</item> <item >英国 +44</item> </string-array> </resources> arrays

标题栏的背景(问题2 -- 放弃)

<?xml version="1.0" encoding="utf-8"?> <resources xmlns:android="http://schemas.android.com/apk/res/android"> <style name="bg_title" parent="android:Theme"> <item name="android:windowTitleBackgroundStyle">@style/Titleground</item> <item name="android:windowTitleStyle">@style/windowTitleStyle</item> <item name="android:windowTitleSize">40dp</item> </style> <style name="Titleground"> <item name="android:background">#FFFFFF</item> </style> <style name="windowTitleStyle"> <item name="android:text">@string/pagename</item> <item name="android:textColor">#1CBAF5</item> <item name="android:paddingTop">2dp</item> <item name="android:paddingBottom">2dp</item> <item name="android:textSize">20sp</item> </style> </resources> bg_titile

问题2替换方法:隐藏标题栏 -- 在 AndroidManifest 中添加 -- android:theme="@android:style/Theme.NoTitleBar" >

MainActivity (问题3)

package com.dragon.android.qqregist; import android.annotation.SuppressLint; import android.app.Activity; import android.graphics.Color; import android.os.Bundle; import android.view.View; import android.widget.AdapterView; import android.widget.AdapterView.OnItemSelectedListener; import android.widget.Button; import android.widget.CheckBox; import android.widget.CompoundButton; import android.widget.CompoundButton.OnCheckedChangeListener; import android.widget.EditText; import android.widget.Spinner; import android.widget.Toast; public class MainActivity extends Activity { private Spinner spinner = null; private EditText editText1; private Button button2; private Button button1; private CheckBox checkBox1; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.fragment_main); spinner = (Spinner) findViewById(R.id.spinner1); spinner.setSelection(0); editText1 = (EditText) findViewById(R.id.editText1); editText1.setHintTextColor(Color.GRAY); button2 = (Button) findViewById(R.id.button2); // 设置空间置顶 button2.bringToFront(); button1 = (Button) findViewById(R.id.button1); // spinner 选择监听事件 spinner.setOnItemSelectedListener(new OnItemSelectedListener() { @Override // parent当前spinner pos/id选中的值所在位置/行 public void onItemSelected(AdapterView<?> parent, View view, int pos, long id) { // 得到string-array String[] country = getResources().getStringArray( R.array.country); Toast.makeText(MainActivity.this, "你选择的是:" + country[pos], Toast.LENGTH_SHORT).show(); } @Override public void onNothingSelected(AdapterView<?> parent) { // Another interface callback } }); checkBox1 = (CheckBox) findViewById(R.id.checkBox1); checkBox1.setOnCheckedChangeListener(new OnCheckedChangeListener() { @Override @SuppressLint("NewApi") public void onCheckedChanged(CompoundButton view, boolean inChecked) { button1.setEnabled(inChecked); if (!inChecked) { // 设置按钮的背景 button1.setBackground(getResources().getDrawable( R.drawable.bg_button)); } else { button1.setBackground(getResources().getDrawable( R.drawable.bg_button_change)); } } }); } }

以上所述是小编给大家介绍的Android实现QQ新用户注册界面遇到问题及解决方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

时间: 2024-09-20 06:05:31

Android实现QQ新用户注册界面遇到问题及解决方法的相关文章

Android实现QQ新用户注册界面遇到问题及解决方法_Android

在上篇文章给大家介绍了Android实现QQ登录界面遇到问题及解决方法,本篇文章继续给大家介绍有关android qq界面知识. 先给大家展示下效果图: 问题: 1.下拉列表(因为还没看到这里...) 2.标题栏显示问题 3.按钮的 Enable 设置 以下是代码: 布局 fragment_main(问题1) <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools

Android QQ新用户注册界面绘制_Android

先看看效果图: 问题:  1.下拉列表(因为还没看到这里...)  2.标题栏显示问题  3.按钮的 Enable 设置   ..........  以下是代码:  布局 fragment_main(问题1) <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" andro

Android实现QQ登录界面遇到问题及解决方法_Android

先给大家炫下效果图: 首先过程中碰到的几个问题: 1.对 EditText 进行自定义背景 2.运行时自动 EditText 自动获得焦点 3.在获得焦点时即清空 hint ,而不是输入后清空 4.清空按钮的出现时机(在得到焦点并且有输入内容时) ......... --- 这些问题都有一一解决 --- 以下是代码: 布局 fragment_main(问题2) <!-- android:focusable="true" android:focusableInTouchMode=&

我想做一个这样新用户注册界面,可是我不会把权限和姓名也写进数据库,求好心人赐一个完整代码

问题描述 我想做一个这样新用户注册界面,可是我不会把权限和姓名也写进数据库,求好心人赐一个完整代码 解决方案 看看这些http://download.csdn.net/detail/aimonhai/1480222http://download.csdn.net/download/bkzhw3/5975209http://download.csdn.net/download/fanhongwei601/4353841http://download.csdn.net/detail/qq223857

Android仿QQ空间动态界面分享功能

先看看效果: 用极少的代码实现了 动态详情 及 二级评论 的 数据获取与处理 和 UI显示与交互,并且高解耦.高复用.高灵活. 动态列表界面MomentListFragment支持 下拉刷新与上拉加载 和 模糊搜索,反复快速滑动仍然非常流畅. 缓存机制使得数据可在启动界面后瞬间加载完成. 动态详情界面MomentActivity支持 (取消)点赞.(删除)评论.点击姓名跳到个人详情 等. 只有1张图片时图片放大显示,超过1张则按九宫格显示. 用到的CommentContainerView和Mom

Win8.1系统安装QQ时提示“安装路径无效”的解决方法

  Win8.1系统安装QQ时提示"安装路径无效"的解决方法          解决方法一:更改安装路径 在QQ安装界面,点击"自定义"然后浏览到一个非C盘,如D盘的文件夹来安装. 解决方法二:使用管理员方式运行安装程序 针对安装QQ没有权限可以右键点击QQ安装程序,然后以管理员身份运行,然后看能不能安装.

win7登录不上qq显示登录超时的两种解决方法

  win7登录不上qq显示登录超时的两种解决方法 1.检查下防火墙设置.方法是进入控制面板,点击系统和安全,点击Windows防火墙; 2.双击开后点击左侧的打开或关闭防火墙这一项; 3.在家庭和工作网络位置和公共网络位置选项下全部选择关闭防火墙.设置完后运行QQ试试. 解决方法二: 1.打开QQ登录界面,点击右上角的设置; 2.点开后进入高级设置,这里可以看到可进行网络类型设置和登录服务器类型设置; 3.先进行网络类型设置,如果以前使用代理,现在选不使用代理,如果不使用代理也不行,选择使用浏

Android程序启动时出现黑屏问题的解决方法_Android

本文实例讲述了Android程序启动时出现黑屏问题的解决方法.分享给大家供大家参考,具体如下: 关于黑屏: 默认的情况下,程序启动时,会有一个黑屏的时期,原因是,首个activity会加载一些数据,比如初始化列表数据.向服务器发送请求获取数据等等. 去除方法: 1.在style里面添加一个style: <style name="ContentOverlay"parent="@android:style/Theme.Light"> <itemname

Android程序启动时出现黑屏问题的解决方法

本文实例讲述了Android程序启动时出现黑屏问题的解决方法.分享给大家供大家参考,具体如下: 关于黑屏: 默认的情况下,程序启动时,会有一个黑屏的时期,原因是,首个activity会加载一些数据,比如初始化列表数据.向服务器发送请求获取数据等等. 去除方法: 1.在style里面添加一个style: <style name="ContentOverlay"parent="@android:style/Theme.Light"> <itemname