所以我试图使用一个开始的第一个 activity.java 类来集中我的应用程序标题。
这是我的代码
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
-----setTitle(R.string.app_name1); //Sets the title for this activity using the app_name1 string
setContentView(R.layout.main);
所以带有“-----”的行是我的标题代码(当然,我的真实代码中没有这个问题)。我正在使用字符串 app_name 从中提取标题,那么我将如何准确地将其居中?谢谢!