关于VM虚拟机的一些问题

在升级系统之后,VM虚拟机提示是否移动了虚拟机,然后网络不能连接上,应该是网络适配器没有正常工作。
可以在移除之后重新添加一个。

Read more

Android关于TextView 点击的问题

在xml文件中定义一个android:onClick="NextQuestion"之后在方法类中点击Textview进行操作没反应,需要在onCreate中定义onClick方法才可以。

Android hander错误及后续错误

在用Android Studio的时候用原生的Handler的时候,要手动导入android.os.Handler,否则会报错。

把一个对象实例化的时候,在一个类里面的实例化的话,只能在这个类里面调用。

Android 从输入框获取信息

activity_main.xml中加入以下代码

1
2
3
4
5
6
7
8
9
10
11
12
<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/button"/>

<EditText
android:id="@+id/edit_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="2"
android:hint="Type something here"/>
Read more
Your browser is out-of-date!

Update your browser to view this website correctly.&npsb;Update my browser now

×