【问题标题】:Error:(23, 26) String types not allowed (at 'src' with value 'pen').?错误:(23, 26) 不允许使用字符串类型(在 'src' 处,值为 'pen')。?
【发布时间】:2016-04-23 18:03:59
【问题描述】:

所以我正在尝试学习 android 开发并尝试使用这个程序,但是当我尝试在我的 Nexus 6 上运行它时,它给了我错误 Error:(23, 26) String types not allowed (at 'src' with value 'pen').

Java 代码: 导入android.support.v7.app.AppCompatActivity; 导入android.os.Bundle; 导入android.widget.Button; 导入 android.widget.TextView; 导入android.widget.EditText;

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        Button ImageButton = (Button)findViewById(R.id.Image);

        ImageButton.setOnClickListener(
                new Button.OnClickListener(){
                    public void onClick(View v)
                    {
                        TextView NL = (TextView)findViewById(R.id.Asd)
                        NL.setText("AAA");
                    }
                }
        );


    }
}

XML 代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
    tools:context="com.example.bassammetwally.anew.MainActivity">
    <RelativeLayout
        android:layout_width="400dp"
        android:layout_height="50dp"
        android:background="#3955a1">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Learning program"
            android:textColor="#ffffff"
            android:textSize="30dp"
            android:layout_marginLeft="10dp"
            android:layout_marginTop="8dp"
            android:id="@+id/Asd"/>
        <ImageButton
            android:layout_width="40dp"
            android:layout_height="40dp"
            android:src="pen"
            android:layout_marginLeft="330dp"
            android:layout_marginTop="5dp"
            android:scaleType="fitXY"
            android:adjustViewBounds="true"
            android:id="@+id/image"/>
        </RelativeLayout>
</LinearLayout>

ManiFest:

 <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.example.A.anew">

        <application
            android:allowBackup="true"
            android:icon="@mipmap/ic_launcher"
            android:label="@string/app_name"
            android:supportsRtl="true"
            android:theme="@style/AppTheme">
            <activity android:name=".MainActivity">
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />

                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>
        </application>

    </manifest>

【问题讨论】:

    标签: java android xml android-layout android-studio


    【解决方案1】:

    错误消息清楚地说明了您的错误。您必须设置对 imageView 的可绘制引用。但是你设置了一个字符串:

    android:src="pen"
    

    如果您有一个名为 pen 的可绘制(图像),则将该行更改为:

    android:src="@drawable/pen"
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2017-04-03
      • 1970-01-01
      • 2016-05-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多