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

Android 提示信息的乱码问题

在使用Android Studio中,错误信息的提示有时会出现乱码。
这主要是因为Projiect Encoding的编码默认是UTF-16,只要将其改为UTF-8即可。

Read more
Your browser is out-of-date!

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

×