本文实例讲述了Android编程实现修改标题栏位置使其居中的方法。分享给大家供大家参考,具体如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package com.example.libraryclient; import android.app.Activity; import android.os.Bundle; import android.view.Menu; import android.view.Window; import com.example.R; public class HomePageActivity extends Activity{ @Override protected void onCreate(Bundle savedInstanceState) { super .onCreate(savedInstanceState); //设置布局 requestWindowFeature(Window.FEATURE_CUSTOM_TITLE); setContentView(R.layout.activity_homepage); getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,R.layout.title); } @Override public boolean onCreateOptionsMenu(Menu menu) { return super .onCreateOptionsMenu(menu); } } |
希望本文所述对大家Android程序设计有所帮助。