我对android studio很新,但我看不到头文件的任何XML,所以我无法编辑它。我想做一些事情,比如改变它的位置,身高等,所以有什么方法可以做到这一点吗?
activity_main.xml中
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.zorgan.app.MainActivity"
tools:layout_editor_absoluteY="81dp"
tools:layout_editor_absoluteX="0dp">
</android.support.constraint.ConstraintLayout>
答案 0 :(得分:1)
将ToolBar添加到您的活动中:
1)创建名为new_activity_main.xml
的新布局并添加以下代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:minHeight="?attr/actionBarSize"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:titleTextColor="@android:color/white"
android:background="?attr/colorPrimary">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="My Title"
android:layout_gravity="center"
android:id="@+id/toolbar_title" />
</android.support.v7.widget.Toolbar>
<!-- include your activity_main.xml here -->
<include layout="@layout/activity_main" />
</LinearLayout>
2)创建样式以禁用 style.xml 中的ActionBar:
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
3)将此样式设置为清单中的活动:
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
4)设置活动的布局:
setContentView(R.layout.new_activity_main);
5)并将以下代码添加到onCreate()。首先启动工具栏,然后禁用默认标题:
Toolbar toolbar = (Toolbar)findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
getSupportActionBar().setDisplayShowTitleEnabled(false);
希望它有所帮助。 (感谢this回答)。
答案 1 :(得分:0)
如果您只想更改名称和简单内容,请转到应用程序标记下的AndroidManifest.xml文件,您可以更改基本内容。
如果您正在谈论工具栏,可以查看本教程https://guides.codepath.com/android/Using-the-App-Toolbar
希望它有所帮助。
答案 2 :(得分:0)
只需在活动
中的setContentView下添加setTitle("any");
即可