我以为这本书的代码不正确。在我家试过了,效果很好。发现我的日食其实坏了。必须删除并重新安装Eclipse。
<ImageButton
android:id="@+id/button_one"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/button1"
android:contentDescription="@string/app_name"/>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true"
android:drawable="@drawable/button1_pressed" />
<item android:state_focused="true"
android:drawable="@drawable/button1_focused" />
<item android:drawable="@drawable/button1_normal" />
</selector>
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.activity_main, menu);
return true;
}
ImageButton imageButton = new ImageButton(context);
imageButton.setImageResource(R.drawable.button1);
}
截图链接:http://s7.postimage.org/3v4tu9ifv/ui_designs.png
我以为这本书的代码不正确。在我家试过了,效果很好。发现我的日食其实坏了。必须删除并重新安装Eclipse。
我对我可能造成的任何不便表示歉意,并感谢社会各界的帮助。
错误:找不到与给定名称匹配得资源(位于值为“@drawable/icon”得“icon”处). 这是我的舱单...我对此非常陌生,今天早上才开始,之前没有编程经验。
错误:未找到与给定名称匹配的资源(在“icon”处,值为“@drawable/icon”)。 这是我的舱单。。。我对这个非常陌生,今天早上刚开始,以前没有编程经验。另外,对于邮政编码的格式设置非常抱歉,我真的很不擅长。
当我尝试在Android Studio中启动我的应用程序时,它会产生如下3个错误: 错误:(3)检索项的父项时出错:找不到与给定名称“Android:TextApparance.Material.Widget.Button.Borderless.Colored”匹配的资源。 com.android.ide.common.Process.processException:org.gradle.Pro
我知道在使用android Studio创建一个android项目时,可以通过修改清单文件或类似的方法来修复这些错误。但是我如何在Unity中修复这样的错误呢? 以下是全部错误: 生成播放机时出错:CommandInvokationFailure:无法重新打包资源。有关详细信息,请参阅控制台。C:\program Files(x86)\android\android-sdk\build-tools
平台:4.3 我是一个Android新手,非常感谢!
我正在学习材料设计,特别是我想定制我的应用程序材料设计也为旧的Android版本。我正在读这本指南:https://developer.android.com/training/material/compatibility.html#SupportLib 关于调色板,指南说: 要获得材质设计样式并使用Android v7支持库自定义调色板,请应用其中一个主题。AppCompat主题: 当我尝试运行