我在按钮上收到一个错误,这很烦人,我很困惑。问题是按钮。layout_centerHorizontal
它说在包 android 中找不到属性的资源标识符。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.companey.ali.Main" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizantal="true"
android:layout_centerHorizontal="true"
android:text="@string/alireza" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/alireza"
</RelativeLayout>
这是我的string.xml
:
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<string name="app_name">Ali</string>
<string name="alireza">Alireza</string>
<string name="action_settings">Settings</string>
</resources>
有什么想法可以解决这个问题吗?