我决定将我的iOS应用转换为Android,并开始阅读/使用“Android应用程序绝对初学者”这本书。
在第7章中,有一个简单的教程,它根据是否按下按钮来生成一个改变状态的按钮。
我一开始就卡住了!我所做的就是创建项目,将文件button1.xml
添加到drawable-xhdpi
文件夹中,并添加3个图形png文件@ 96x96,称为button1_pressed.png
等。
然后我将这些代码行添加到button1.xml
:
<selector xmlns:android="http://schemas.android.com/apk/res/android ">
<item android:state_pressed="true"
android:drawable="@drawable/button1_pressed" />
<item android:state_focussed="true"
android:drawable="@drawable/button1_focussed" />
<item android:drawable="@drawable/button1_normal" />
这是MainActivity.java:
package third.example.userinterfacedesign;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
这是activity_main.xml
:
<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=".MainActivity" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
这是显示错误的图片:
这里有什么问题?