第二阶段冲刺4

完成了查询无课表,今天主要和队友一起完成了界面的转换:

 

public class LoginActivity extends Activity
{
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_login);
}

//这里是在登录界面label上右上角添加三个点,里面可添加其他功能
@Override
public boolean onCreateOptionsMenu(Menu menu)
{
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);//这里是调用menu文件夹中的main.xml,在登陆界面label右上角的三角里显示其他功能
return true;
}
}
用getMenuInflater().inflate(R.menu.main,menu)这句话调用menu文件中的main.xml,用这个xml设置三点里面的内容
main.xml里可以这样写


<menu xmlns:android="http://schemas.android.com/apk/res/android" >

<item
android:id="@+id/action_settings"
android:orderInCategory="100"
android:showAsAction="never"
android:title="setting"/>

</menu>

 

posted @ 2020-05-26 20:21  树某人  阅读(88)  评论(0编辑  收藏  举报