xml中的textView中设置android:drawableLeft:
如程序中所见我在xml中设置了
DrawableLeft。我想在代码中改变drawable。有什么方法可以使用代码为textview设置drawableLeft呢?解决方案publicvoidsetCompoundDrawa...
分类:
其他好文 时间:
2014-05-19 12:06:03
阅读次数:
407
注意了:根据实际情况,添加实体里字段的类型,控件类型的判断才可使用。这里控件只有TextView EditText实体类字段只有String
int类型,带值的控件添加tag ,值和实体类的字段值一致package ice.ui.service;import
java.lang.reflect.Fi...
分类:
移动开发 时间:
2014-05-18 20:23:14
阅读次数:
472
public class MainActivity extends Activity {
TextView text1, text2; Button button; Thread th; @Override protected void
onCreate(B...
分类:
编程语言 时间:
2014-05-17 21:30:11
阅读次数:
351
背景 代码 先上布局文件:
这里没有TextView,我最后是将路径以System.out.println方式输出的。初始化:button =
(Button)findViewById(R.id.button); pic = (ImageView) findViewByI...
分类:
移动开发 时间:
2014-05-17 01:44:20
阅读次数:
749
转自:http://www.cnblogs.com/eyu8874521/archive/2012/10/17/2727882.html问题描述:当ListView的Item中的控件只是一些展示类控件时(比如TextView),注册ListView的监听setOnItemClickListener之...
分类:
移动开发 时间:
2014-05-16 22:27:58
阅读次数:
425
MainActivity如下:
package cc.testsmsbroadcastreceiver;
import cc.testsmsbroadcastreceiver.SMSBroadcastReceiver.MessageListener;
import android.os.Bundle;
import android.widget.TextView;
import android....
分类:
移动开发 时间:
2014-05-15 23:56:53
阅读次数:
600
TextView txtShuoming;
SpannableStringBuilder builder = new SpannableStringBuilder(getResources().getString(R.string.shuoming));
//1.设置字体颜色
builder.setSpan(new ForegroundColorSpan(...
分类:
其他好文 时间:
2014-05-15 05:46:49
阅读次数:
251
今天做了一个简单的应用,大致是向服务器请求一张图片,然后点击跳转到另外一个界面上使得这张图片可以自由伸缩。
首先是在ActivityA中请求图片,使用Ajax请求,代码如下所示。
// 2014.5.12晚
AQuery aq = new AQuery(RepairInfoDetail.this);
mViewPhotoText = (TextView) findViewBy...
分类:
其他好文 时间:
2014-05-15 03:48:56
阅读次数:
322
TextView ->txtEditText->editButton ->btn
分类:
移动开发 时间:
2014-05-13 19:07:03
阅读次数:
286
本项目基于 《使用storyboards建立 Navigation Controller and Table View》 http://uliweb.cpython.org/tutorial/view_chapter/424
创建, 代码中使用了 静态的 tableviewcell
增加了 textview,url,json数据解析
部分代码片段:
//
// city...
分类:
移动开发 时间:
2014-05-13 08:19:24
阅读次数:
423