android+饭否+开源,fanfou(饭否) android客户端 代码学习一

fanfou(饭否) android客户端 代码学习1

LoginActivity.class类

0229181808.jpg

Intent intent = getIntent().getParcelableExtra(Intent.EXTRA_INTENT);

String action = intent.getAction();

if (intent.getAction() == null || !Intent.ACTION_SEND.equals(action)) {

intent = new Intent(this, TwitterActivity.class);

}

getIntent().getParcelableExtra(String activityname).. 从intent中检索继承的数据

Intent.EXTRA_INTENT    intent里面传递的类名

// 发送消息给

widget Intent reflogin = new Intent(this.getBaseContext(), FanfouWidget.class);

reflogin.setActio("android.appwidget.action.APPWIDGET_UPDATE");

PendingIntent l = PendingIntent.getBroadcast(this.getBaseContext(), 0, reflogin, PendingIntent.FLAG_UPDATE_CURRENT);

try {

l.send();

} catch...

Intent和PendingIntent的区别

ApplicationContext 和Context的区别

从线程的角度考虑,更多的用applicationContext,但是在用到spinner时候出现uncaught exception

LayoutInflater layoutInflater = LayoutInflater.from(this

.getBaseContext());

// beneath param will brought uncaught problem

// LayoutInflater layoutInflater = LayoutInflater.from(this.getApplicationContext());

View view = ContactViewer.mLayoutInflater.inflate(R.layout.aViewContainingASpinner,

theParentView, false);

Spinner spinner = (Spinner) view.findViewById(R.id.theSpinnerId);

String[] myStringArray = new String[] {"sweet","love"};

// managing adapter part

// The context used here don't have any importance -- both work.

ArrayAdapter adapter = ArrayAdapter.createFromResource(

this.getApplicationContext(), myStringArray, android.R.layout.simple_spinner_item);

adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);

spinner.setAdapter(adapter);

theParentView.addView(view);

the baseContext is required when dealing with contextMenu in your Activity...

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值