我正在尝试在Android的活动标题栏的右侧添加ImageButton
,但是当我执行应用程序时,它会给出错误Unfortunately app stopped
。请帮助:
custom_title.xml
<?xml version="1.0" encoding="utf-8"?>
<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.example.abc.myapplication.MainActivity">
<ImageButton
android:id="@+id/button"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_alignParentRight="true"
android:focusable="true"
android:focusableInTouchMode="false"
android:src="@android:drawable/star_big_on"
android:background="@null" />
</RelativeLayout>
MainActivity.java
package com.example.abc.myapplication;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Window;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
this.getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.custom_title);
}
}
答案 0 :(得分:0)
在RelativeLayout中替换android:layout_height:
android:layout_height="wrap_content"
答案 1 :(得分:0)
按照Android开发者网站上的这些指南,您将成为高手! Adding the App Bar