我正在为我的应用程序使用appcompatv7。在字符串中,我已定义Login
并在登录时显示默认操作栏文本Login
,但我无法操作该文本(除了在字符串中删除它)。
我需要更改颜色或文本对齐方式,但无法在登录页面的样式和布局中执行此操作。
当我在该操作栏上放置一个图标时使用:
Toolbar toolbar = (Toolbar)findViewById(R.id.action_bar);
toolbar.setNavigationIcon(R.drawable.login);
我也无法操纵对齐或其他任何东西。
答案 0 :(得分:0)
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="10dp"
>
这是我的xml文件的标题。
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="AppTheme" parent="Theme.AppCompat.Light">
<item name="colorPrimary">#008000</item>
</style>
</resources>
这是我的样式文件。