我是学习Android编程的新手。我按照这本书,Android编程大书呆子牧场指南。我认为这是一个很好的教程。
当我阅读第16章动作栏时,我注意到我从书中学到的所有应用程序的图标都无法在我的Nexus 5上显示。
我从第1步一步一步检查。我相信我没有犯任何错误。
我也按照this link进行测试。不幸的是,Hello World样本的图标也无法显示。
有人可以帮我一把吗?
我被告知AndroidManifest.xml可能是错误的。我的一个列出如下。这是来自https://developer.android.com/training/basics/firstapp/index.html的hello world样本。
由于示例很简单,我没有对所有XML和Java代码进行任何更新。
<?xml version="1.0" encoding="utf-8"?>
<manifest package="com.greatfree.test.myfirstapp"
xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity
android:name=".MyActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>
以下几行是MyActivity.java。
package com.greatfree.test.myfirstapp;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
public class MyActivity extends ActionBarActivity
{
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_my);
}
@Override
public boolean onCreateOptionsMenu(Menu menu)
{
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_my, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item)
{
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings)
{
return true;
}
return super.onOptionsItemSelected(item);
}
}
以下是activity_my.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=".MyActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world"/>
</RelativeLayout>
答案 0 :(得分:0)
我得到了谷歌的答案。
应将以下行添加到MyActivity.java中。我被告知API 21有一些不兼容的东西。
getSupportActionBar().setDisplayShowHomeEnabled(true);
getSupportActionBar().setLogo(R.drawable.ic_launcher);
getSupportActionBar().setDisplayUseLogoEnabled(true);
答案 1 :(得分:0)