- 浏览: 227037 次
- 性别:
- 来自: 广州
文章分类
- 全部博客 (109)
- IOS (15)
- 设计模式 (7)
- XML (1)
- Android (31)
- 面试经 (1)
- J2EE (3)
- android md5 加密 (2)
- android imagebutton文字实现 (1)
- 反射机制 (2)
- 基础知识 (1)
- linux (3)
- java (4)
- java基础 (2)
- 文章 (1)
- myeclipse tomcat (1)
- Hadoop (1)
- ubuntu (2)
- redmine (1)
- python (4)
- jmeter (10)
- xamarin (1)
- selenium (9)
- nexus (1)
- appium (3)
- BDD (1)
- apache2 (1)
- zabbix (2)
- python,webdriver (1)
- ajax (1)
- jmeter,正则表达式,关联 (2)
- 性能测试工具 (1)
- Django (0)
- Intelij (1)
- RAP (0)
- 性能测试 (0)
最新评论
TextView
布局:
Xml代码
<TextView
android:id="@+id/textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:text="@string/hello_world"
tools:context=".MainActivity" />
<TextView
android:id="@+id/textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:text="@string/hello_world"
tools:context=".MainActivity" />
调用:
Java代码
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mTextView=(TextView)findViewById(R.id.textview);获得控件
mTextView.setText("我的第一个文本");设置文本内容
mTextView.setTextColor(Color.GREEN);设置字体颜色
mTextView.setBackgroundColor(color.black);}设置背景 <SPAN style="COLOR: #ff0000">这些也可在xml中设置</SPAN>
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mTextView=(TextView)findViewById(R.id.textview);获得控件
mTextView.setText("我的第一个文本");设置文本内容
mTextView.setTextColor(Color.GREEN);设置字体颜色
mTextView.setBackgroundColor(color.black);}设置背景 这些也可在xml中设置
当出现URL E-mail 电话号码时,可以为TextView设置链接:
四种方法实现:
Xml代码
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<!-- xml属性实现,添加 android:<SPAN style="COLOR: #ff0000">autoLink="all"</SPAN>实现,为所有种类添加链接-->
<TextView
android:id="@+id/tv01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
<SPAN style="COLOR: #ff0000"> android:autoLink="all"</SPAN>
android:text="@string/first_link"
/>
<!--通过<a>标签的string资源文件实现-->
<TextView
android:id="@+id/tv02"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/second_link"
/>
<!-- 通过在java代码中使用html实现 -->
<TextView
android:id="@+id/tv03"
android:layout_width="fill_parent"
android:layout_height="match_parent"
/>
<!-- 通过java代码直接实现 -->
<TextView
android:id="@+id/tv04"
android:layout_width="fill_parent"
android:layout_height="match_parent"
/>
</LinearLayout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<!-- xml属性实现,添加 android:autoLink="all"实现,为所有种类添加链接-->
<TextView
android:id="@+id/tv01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:autoLink="all"
android:text="@string/first_link"
/>
<!--通过<a>标签的string资源文件实现-->
<TextView
android:id="@+id/tv02"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/second_link"
/>
<!-- 通过在java代码中使用html实现 -->
<TextView
android:id="@+id/tv03"
android:layout_width="fill_parent"
android:layout_height="match_parent"
/>
<!-- 通过java代码直接实现 -->
<TextView
android:id="@+id/tv04"
android:layout_width="fill_parent"
android:layout_height="match_parent"
/>
</LinearLayout>
Java代码
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//设置textview可点击,实现第二种方式
TextView t2=(TextView)findViewById(R.id.tv02);
t2.setMovementMethod(LinkMovementMethod.getInstance());
//使用第三种方式实现
TextView t3=(TextView)findViewById(R.id.tv03);
t3.setText(
Html.fromHtml("<b>text3:</b>"+"<a href=\"http://www.google.com\">连接到google</a>")
);
t3.setMovementMethod(LinkMovementMethod.getInstance());
//创建一个spannablestring对象
SpannableString ss=new SpannableString("text4:点击这里拨打电话,点击这里链接到google");
ss.setSpan(new StyleSpan(Typeface.BOLD), 0, 6,
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);//0-6个字符为粗体
ss.setSpan(new URLSpan("tel:415113464"), 9, 11,
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);//9-11为拨号链接
ss.setSpan(new URLSpan("http://www.google.com"), 18, 20,
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);//18-20为网站链接
ss.setSpan(new BackgroundColorSpan(Color.RED), 23, 29,
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);//23-29为红色
TextView t4=(TextView)findViewById(R.id.tv04);
t4.setText(ss);
//实现第四种方式
t4.setMovementMethod(LinkMovementMethod.getInstance());
}}
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//设置textview可点击,实现第二种方式
TextView t2=(TextView)findViewById(R.id.tv02);
t2.setMovementMethod(LinkMovementMethod.getInstance());
//使用第三种方式实现
TextView t3=(TextView)findViewById(R.id.tv03);
t3.setText(
Html.fromHtml("<b>text3:</b>"+"<a href=\"http://www.google.com\">连接到google</a>")
);
t3.setMovementMethod(LinkMovementMethod.getInstance());
//创建一个spannablestring对象
SpannableString ss=new SpannableString("text4:点击这里拨打电话,点击这里链接到google");
ss.setSpan(new StyleSpan(Typeface.BOLD), 0, 6,
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);//0-6个字符为粗体
ss.setSpan(new URLSpan("tel:415113464"), 9, 11,
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);//9-11为拨号链接
ss.setSpan(new URLSpan("http://www.google.com"), 18, 20,
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);//18-20为网站链接
ss.setSpan(new BackgroundColorSpan(Color.RED), 23, 29,
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);//23-29为红色
TextView t4=(TextView)findViewById(R.id.tv04);
t4.setText(ss);
//实现第四种方式
t4.setMovementMethod(LinkMovementMethod.getInstance());
}}
String:
Xml代码
<string name="first_link">
<b>第一种方式</b>
通过xml属性实现的链接:www.google.cn,
电话:12345645647
</string>
<string name="second_link">
<b>第二种方式</b>
<a href="http://www.google.com">google</a>
</string>
<string name="first_link">
<b>第一种方式</b>
通过xml属性实现的链接:www.google.cn,
电话:12345645647
</string>
<string name="second_link">
<b>第二种方式</b>
<a href="http://www.google.com">google</a>
</string>
EditText:
android:hint 编辑框空是显示的字符
android:textColorHint 编辑框空时显示字符的颜色
android:inputType 限制输入内容的类型,number,text等
android:digits 限制输入内容,只可取制定的字符
android:maxLenth 限制输入的最长字符数
android:inputType="textPassword" 输入密码模式
妈呀,一个英文的引号,写成了中文的引号了,结果出了其它一堆错误,怎么改都不对。
Xml代码
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/yh"
/>
<EditText
android:id="@+id/et"
android:textColorHint="#ff2323"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/yonhuming"/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/mm"
/>
<EditText
android:id="@+id/et1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="textPassword"
android:hint="@string/mima"
/>
<TextView
android:id="@+id/tv"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:textSize="20sp"
/>
</LinearLayout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/yh"
/>
<EditText
android:id="@+id/et"
android:textColorHint="#ff2323"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/yonhuming"/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/mm"
/>
<EditText
android:id="@+id/et1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="textPassword"
android:hint="@string/mima"
/>
<TextView
android:id="@+id/tv"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:textSize="20sp"
/>
</LinearLayout>
Java代码
package example.first;
import android.os.Bundle;
import android.view.KeyEvent;
import android.view.View;
import android.view.View.OnKeyListener;
import android.widget.EditText;
import android.widget.TextView;
import android.app.Activity;
public class MainActivity extends Activity {
private EditText et;
private EditText et1;
private TextView tv;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
et=(EditText)findViewById(R.id.et);
et1=(EditText)findViewById(R.id.et1);
tv=(TextView)findViewById(R.id.tv);
//设置监听器
et1.setOnKeyListener(new OnKeyListener()
{
@Override
public boolean onKey(View v,int keyCode,KeyEvent event){
if(keyCode==KeyEvent.KEYCODE_ENTER){
tv.setText("您的用户名为:"+et.getText().toString()+
"\n"+"您的密码为:"+et1.getText().toString());
}
return false;
}
});
}
}
package example.first;
import android.os.Bundle;
import android.view.KeyEvent;
import android.view.View;
import android.view.View.OnKeyListener;
import android.widget.EditText;
import android.widget.TextView;
import android.app.Activity;
public class MainActivity extends Activity {
private EditText et;
private EditText et1;
private TextView tv;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
et=(EditText)findViewById(R.id.et);
et1=(EditText)findViewById(R.id.et1);
tv=(TextView)findViewById(R.id.tv);
//设置监听器
et1.setOnKeyListener(new OnKeyListener()
{
@Override
public boolean onKey(View v,int keyCode,KeyEvent event){
if(keyCode==KeyEvent.KEYCODE_ENTER){
tv.setText("您的用户名为:"+et.getText().toString()+
"\n"+"您的密码为:"+et1.getText().toString());
}
return false;
}
});
}
}
运行结果:点击回车后显示用户名和密码
布局:
Xml代码
<TextView
android:id="@+id/textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:text="@string/hello_world"
tools:context=".MainActivity" />
<TextView
android:id="@+id/textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:text="@string/hello_world"
tools:context=".MainActivity" />
调用:
Java代码
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mTextView=(TextView)findViewById(R.id.textview);获得控件
mTextView.setText("我的第一个文本");设置文本内容
mTextView.setTextColor(Color.GREEN);设置字体颜色
mTextView.setBackgroundColor(color.black);}设置背景 <SPAN style="COLOR: #ff0000">这些也可在xml中设置</SPAN>
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mTextView=(TextView)findViewById(R.id.textview);获得控件
mTextView.setText("我的第一个文本");设置文本内容
mTextView.setTextColor(Color.GREEN);设置字体颜色
mTextView.setBackgroundColor(color.black);}设置背景 这些也可在xml中设置
当出现URL E-mail 电话号码时,可以为TextView设置链接:
四种方法实现:
Xml代码
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<!-- xml属性实现,添加 android:<SPAN style="COLOR: #ff0000">autoLink="all"</SPAN>实现,为所有种类添加链接-->
<TextView
android:id="@+id/tv01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
<SPAN style="COLOR: #ff0000"> android:autoLink="all"</SPAN>
android:text="@string/first_link"
/>
<!--通过<a>标签的string资源文件实现-->
<TextView
android:id="@+id/tv02"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/second_link"
/>
<!-- 通过在java代码中使用html实现 -->
<TextView
android:id="@+id/tv03"
android:layout_width="fill_parent"
android:layout_height="match_parent"
/>
<!-- 通过java代码直接实现 -->
<TextView
android:id="@+id/tv04"
android:layout_width="fill_parent"
android:layout_height="match_parent"
/>
</LinearLayout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<!-- xml属性实现,添加 android:autoLink="all"实现,为所有种类添加链接-->
<TextView
android:id="@+id/tv01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:autoLink="all"
android:text="@string/first_link"
/>
<!--通过<a>标签的string资源文件实现-->
<TextView
android:id="@+id/tv02"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/second_link"
/>
<!-- 通过在java代码中使用html实现 -->
<TextView
android:id="@+id/tv03"
android:layout_width="fill_parent"
android:layout_height="match_parent"
/>
<!-- 通过java代码直接实现 -->
<TextView
android:id="@+id/tv04"
android:layout_width="fill_parent"
android:layout_height="match_parent"
/>
</LinearLayout>
Java代码
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//设置textview可点击,实现第二种方式
TextView t2=(TextView)findViewById(R.id.tv02);
t2.setMovementMethod(LinkMovementMethod.getInstance());
//使用第三种方式实现
TextView t3=(TextView)findViewById(R.id.tv03);
t3.setText(
Html.fromHtml("<b>text3:</b>"+"<a href=\"http://www.google.com\">连接到google</a>")
);
t3.setMovementMethod(LinkMovementMethod.getInstance());
//创建一个spannablestring对象
SpannableString ss=new SpannableString("text4:点击这里拨打电话,点击这里链接到google");
ss.setSpan(new StyleSpan(Typeface.BOLD), 0, 6,
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);//0-6个字符为粗体
ss.setSpan(new URLSpan("tel:415113464"), 9, 11,
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);//9-11为拨号链接
ss.setSpan(new URLSpan("http://www.google.com"), 18, 20,
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);//18-20为网站链接
ss.setSpan(new BackgroundColorSpan(Color.RED), 23, 29,
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);//23-29为红色
TextView t4=(TextView)findViewById(R.id.tv04);
t4.setText(ss);
//实现第四种方式
t4.setMovementMethod(LinkMovementMethod.getInstance());
}}
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//设置textview可点击,实现第二种方式
TextView t2=(TextView)findViewById(R.id.tv02);
t2.setMovementMethod(LinkMovementMethod.getInstance());
//使用第三种方式实现
TextView t3=(TextView)findViewById(R.id.tv03);
t3.setText(
Html.fromHtml("<b>text3:</b>"+"<a href=\"http://www.google.com\">连接到google</a>")
);
t3.setMovementMethod(LinkMovementMethod.getInstance());
//创建一个spannablestring对象
SpannableString ss=new SpannableString("text4:点击这里拨打电话,点击这里链接到google");
ss.setSpan(new StyleSpan(Typeface.BOLD), 0, 6,
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);//0-6个字符为粗体
ss.setSpan(new URLSpan("tel:415113464"), 9, 11,
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);//9-11为拨号链接
ss.setSpan(new URLSpan("http://www.google.com"), 18, 20,
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);//18-20为网站链接
ss.setSpan(new BackgroundColorSpan(Color.RED), 23, 29,
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);//23-29为红色
TextView t4=(TextView)findViewById(R.id.tv04);
t4.setText(ss);
//实现第四种方式
t4.setMovementMethod(LinkMovementMethod.getInstance());
}}
String:
Xml代码
<string name="first_link">
<b>第一种方式</b>
通过xml属性实现的链接:www.google.cn,
电话:12345645647
</string>
<string name="second_link">
<b>第二种方式</b>
<a href="http://www.google.com">google</a>
</string>
<string name="first_link">
<b>第一种方式</b>
通过xml属性实现的链接:www.google.cn,
电话:12345645647
</string>
<string name="second_link">
<b>第二种方式</b>
<a href="http://www.google.com">google</a>
</string>
EditText:
android:hint 编辑框空是显示的字符
android:textColorHint 编辑框空时显示字符的颜色
android:inputType 限制输入内容的类型,number,text等
android:digits 限制输入内容,只可取制定的字符
android:maxLenth 限制输入的最长字符数
android:inputType="textPassword" 输入密码模式
妈呀,一个英文的引号,写成了中文的引号了,结果出了其它一堆错误,怎么改都不对。
Xml代码
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/yh"
/>
<EditText
android:id="@+id/et"
android:textColorHint="#ff2323"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/yonhuming"/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/mm"
/>
<EditText
android:id="@+id/et1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="textPassword"
android:hint="@string/mima"
/>
<TextView
android:id="@+id/tv"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:textSize="20sp"
/>
</LinearLayout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/yh"
/>
<EditText
android:id="@+id/et"
android:textColorHint="#ff2323"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/yonhuming"/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/mm"
/>
<EditText
android:id="@+id/et1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="textPassword"
android:hint="@string/mima"
/>
<TextView
android:id="@+id/tv"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:textSize="20sp"
/>
</LinearLayout>
Java代码
package example.first;
import android.os.Bundle;
import android.view.KeyEvent;
import android.view.View;
import android.view.View.OnKeyListener;
import android.widget.EditText;
import android.widget.TextView;
import android.app.Activity;
public class MainActivity extends Activity {
private EditText et;
private EditText et1;
private TextView tv;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
et=(EditText)findViewById(R.id.et);
et1=(EditText)findViewById(R.id.et1);
tv=(TextView)findViewById(R.id.tv);
//设置监听器
et1.setOnKeyListener(new OnKeyListener()
{
@Override
public boolean onKey(View v,int keyCode,KeyEvent event){
if(keyCode==KeyEvent.KEYCODE_ENTER){
tv.setText("您的用户名为:"+et.getText().toString()+
"\n"+"您的密码为:"+et1.getText().toString());
}
return false;
}
});
}
}
package example.first;
import android.os.Bundle;
import android.view.KeyEvent;
import android.view.View;
import android.view.View.OnKeyListener;
import android.widget.EditText;
import android.widget.TextView;
import android.app.Activity;
public class MainActivity extends Activity {
private EditText et;
private EditText et1;
private TextView tv;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
et=(EditText)findViewById(R.id.et);
et1=(EditText)findViewById(R.id.et1);
tv=(TextView)findViewById(R.id.tv);
//设置监听器
et1.setOnKeyListener(new OnKeyListener()
{
@Override
public boolean onKey(View v,int keyCode,KeyEvent event){
if(keyCode==KeyEvent.KEYCODE_ENTER){
tv.setText("您的用户名为:"+et.getText().toString()+
"\n"+"您的密码为:"+et1.getText().toString());
}
return false;
}
});
}
}
运行结果:点击回车后显示用户名和密码
发表评论
-
Starting emulator for AVD 'android' PANIC: Could not open: android
2013-05-21 13:29 1929我的电脑-->属性-->高级-->环境变量。 ... -
eclipse4.2版本下面安装ADT,安装已经完成了,但没有ADT的那个图标显示
2013-05-21 13:26 944如果安装过程没错,直接在Eclipse ->window ... -
Android 打包签名 从生成keystore到完成签名 -
2012-10-30 00:49 959首先,我们需要一个keystore,当然已经有了的话就不用这一 ... -
解决更新并使用最新ADT20不能创建android项目问题
2012-10-18 22:20 1056不知道谷歌又怎么了,每次更新ADT插件就会出现各种各样的问题, ... -
ORACLE分页查询SQL语法
2012-10-18 22:20 1212oracle数据库 --1:无ORDER BY ... -
Activity生命周期
2012-10-18 22:20 1142博客分类: Android 新的activit ... -
布局
2012-10-18 22:21 1097padding:描述控件里面的内容与控件的关机,内边距;有四个 ... -
按钮控件
2012-10-13 13:32 1184监听器: 监听器 方法 内容 OnClickList ... -
菜单
2012-10-13 13:31 1119menu键触发 三种形式:普通的option menu;上下 ... -
HttpClient
2012-10-13 13:31 1136在Android开发中我们经常会用到网络连接功能与服务器进行数 ... -
Android 的一些提示框
2012-10-08 00:57 7911.在测试时,如何实现一个提示 可以使用 Toast.ma ... -
Intent的几种用法
2012-10-08 00:57 936下面列出几种Intent的用法 1. 启动一个新的Activ ... -
Android改变窗口标题栏的布局
2012-10-10 23:26 929一、 重点 一般应用的Title都是建立应用时在Androi ... -
android中如何自定义attributes
2012-10-10 23:26 991写程序中可能需要用到一些自定义的view控件,这样就需要增加一 ... -
android manifest.xml中元素含义
2012-10-08 00:56 845android:allowTaskReparenting 是 ... -
十二个android编程技巧
2012-10-10 23:26 10081.让一个图片透明: Java代码 1. Bitm ... -
Android Phone类分析
2012-10-10 23:26 1232AccelerometerListener:感应 ... -
android控件设置居中方式
2012-10-07 00:16 8468垂直居中 android:layout_centerVert ... -
android TextView属性大全
2012-10-10 23:28 986android:autoLink设置是否当 ... -
Android之使用HTTP的get,post,HttpClient三种方式向服务器端提交文本数据
2012-10-11 00:16 916客户端代码示例: /** * HTTP请求 * ...
相关推荐
本实例主要探讨了四个常见的Android控件:EditText、TextView、Button以及Menu的使用方法,非常适合Android初学者入门学习。 1. **EditText**: EditText控件是Android中的文本输入框,用户可以在其中输入文本。在...
TextView是Android中最基本的显示文本的控件,它用于展示不可编辑的静态文本。而EditText则是一个输入控件,允许用户输入文本,通常用于获取用户的交互数据。 自定义TextView和EditText的核心在于继承现有的系统...
在android中,文本控件主要包括TextView控件和EditView控件,本节先对TextView控件的用法进行详细介绍。 TextView类继承自View类,TextView控件的功能是向用户显示文本的内容,但不允许编辑,而其子类EditView允许...
Android常用控件的声明 TextView:文本显示框 EditView:文本编辑框 Button:按钮 Menu:菜单 RadioButton:单选按钮 RadioGroup:单选按钮组 CheckBox:复选框 ScrollView:滚动条
在Android开发中,EditView是不可或缺的一个组件,它主要用于接收用户输入的数据,是TextView的扩展,具有可编辑性。在创建交互式的用户界面时,EditView通常用于收集用户信息,如用户名、密码或其他文本数据。下面...
listview,editview,textview,floatbutton,imagebutton. 难点listview的自定义,选择item,item内部触发外部消息. 欢迎有开发学习安卓apk的爱好者,互相学习讨论. 后续慢慢增加本人认为极好的一些代码.
EditView是Android系统提供的一个用于输入和显示文本的视图控件,用户可以在其中进行编辑操作,如输入、删除、选择文本等。EditView基于TextView,继承了TextView的基本功能,并扩展了文本编辑功能。 二、源码结构...
在本文中,我们将深入探讨一些Android基础控件的使用,包括TextView、ImageView、Button、EditText、ProgressBar、SeekBar、ScrollView以及WebView。 1. TextView(文本) TextView用于显示文本,是最基本的控件之...
Android UI控件集合,包括Button,TextView,EditView,CheckBox,RadioGroup,Spinner,AutoCompleteTextView,DatePicker,TimePicker,ProgressBar,SeekBar,RatingBar,ImageView,ImageButton,ImageSwicrher,Gallery,...
6. **TextView与EditView**:TextView是用于显示文本的视图,而EditView则提供文本输入功能。文章会深入讨论这两者的属性和方法,如设置文字样式、限制输入长度等。 7. **Activity间跳转与传值**:Android应用中的...
2. 设置圆角编辑框EditView:文件提到了通过在drawable文件夹中新建一个shape.xml文件来定义圆角的形状,然后在EditText控件中通过android:background属性引用这个形状。这是进行UI美化的一个常见做法,通过自定义...
- **特点**:DroidDraw提供了丰富的控件库,包括TextView、EditText、Button等常见的Android UI组件,用户可以通过简单的拖拽操作将这些控件放置到设计界面上。 - **优势**:无需编写繁琐的XML代码即可完成复杂的...
此次新闻app应用程序开发主要利用java语言在android框架中对各种组件包括TextView、EditView、ListView进行系统性、框架性、整合性的学习,在编写app过程中,解决日常学习中遇到的一些单一性问题,同时通过编程实践...
我们知道Android中其实并不提供圆形的东西,像Button,TextView,EditView等等都是没有弧形元素在里面(看看这些控件的属性就知道了)......详细请参见本从的博客:...
例如,使用TextView显示GPS定位信息,EditView接收用户输入的起点地址,Button用于触发导航功能,而Dialog则用于向用户显示错误提示。 **GPS定位功能实现** Android支持GPS服务,通过LocationManager、Location...
在Android开发中,EditText是一个非常常见的用户输入控件,它允许用户在界面上直接编辑文本。然而,有时候我们可能需要让EditText变得不可编辑,只允许用户查看文本而不能修改。在旧版本的Android SDK中,可以通过...