最新回答 / qq_宸子_04228031
<item android:id="@id/menu1" android:title="title" android:layout_width="fill_parent" android:layour_height="fill_parent" />
2017-09-27
最新回答 / 慕设计0257411
值得一提的是以下方法在sdk22可以使用。但sdk23中已经不能使用 Notification notification = new Notification(R.mipmap.ic_launcher,”this is ticker text”,System.currentTimeMillis());//创建的这个对象用于存储通知所需的各种信息。第一个参数指定通知的图标,第二个指定通知的内容,第三个指定通知被创建的时间 notification.setLatestEventInfo(this,”thisi...
2017-04-15
最新回答 / Win_me
指当前类对象例如:public class Demo{private int age;public Demo(int age){/** this.age表示当前类Demo中的变量age(这个age是当前对象的属性)* age表示构造方法的形式参数**/this.age=age;}}
2017-02-12
最新回答 / 慕盖茨4755631
因为double是浮点型啊,所以后来会以科学计数法的方式显示,你可以设置格式DecimalFormat decimalFormat = new DecimalFormat("#,####.00");//格式化设置 text.setText("类别:"+ cal +"顾客 "+" 金额:...
2017-01-04
最新回答 / qq_ALISAxiang_0
在布局文件中添加一个Button,其中的属性text=“登录”在MainActivity.java中得到该布局文件,并设置一个点击事件,当你点击“登录”的时候跳转的第二个页面,这就需要在监听中写一个Intent方法:Intent intent = new Intent(this,MainActivity2.class);(第一个参数是上下文,第二个是所要跳转到的页面)要跳转到的页面:新建一个Activity,取名叫MainAcrtivity2.java新建一个xml,取名叫login.xml,该布局文件中...
2016-11-16