安卓点击按钮调用当前界面中的方法
1、在开发中,我们经常需要更新列表,并将列表拉倒最底部,比如发表微博,聊天界面等等,这里有两种办法,第一种,使用scrollTo():

3、addView完之后,不等于马上就会显示,而是在队列中等待处理,虽然很快,但是如果立即调用fullScroll, view可能还没有显示出来,所以会失败应该通过handler在新线程中更新。

5、配置第二个layout<LinearLayoutxmlns:android=android:orientation="vertical"android:layout_width="fill_parent"android:layout_height="match_parent"><TextViewandroid:layout_width="fill_parent"android:layout_height="match_parent"android:text="other activiy"/></LinearLayout>

7、对主activity配置.点击button可以跳转到第二个页面Button button = (Button)this.findViewById(R.id.button);button.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View arg0) {// 打开另一个activity,通过意图,意图作用是激活其他组件Intent intent = new Intent();intent.setClass(MainActivityActivity.this, OtherActivity.class);//发送意图.将意图发送给android系统,系统根据意图来激活组件startActivity(intent);}});}
