android 聊天室窗体

Posted liguangsunls

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android 聊天室窗体相关的知识,希望对你有一定的参考价值。

public class MainActivity extends Activity {
	 ScrollView scrollView;
	  Button button;
	  LinearLayout layout;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
       
    //    File f=new File("");
        scrollView=(ScrollView)findViewById(R.id.scrollView1);
     //   scrollView.fullScroll(ScrollView.FOCUS_DOWN);
        button=(Button)findViewById(R.id.button1);
        layout=(LinearLayout)findViewById(R.id.linear);
        button.setOnClickListener(new OnClickListener() {
			
			@Override
			public void onClick(View arg0) {
				// TODO Auto-generated method stub
				TextView textView=new TextView(MainActivity.this);
				textView.setId(1);
				textView.setText("1");
				layout.addView(textView);
				scrollView.fullScroll(ScrollView.FOCUS_DOWN);
			}
		});
    }


以上是关于android 聊天室窗体的主要内容,如果未能解决你的问题,请参考以下文章

Fragment实践之聊天窗体

如何在recyclerview中使用编辑文本进行搜索?

QQ聊天机器人 Delphi代码

uniapp 使用原生子窗体进行视频聊天

uniapp 使用原生子窗体进行视频聊天

关于Java聊天收到消息自动弹出窗口代码