我已经添加了android-support-v7-appcompat,android-support-v7-mediarouter库项目来构建路径。
以下是我的主要活动,并且没有导入按钮的错误,但是当执行应用程序时,会发生错误膨胀MediaRouteButton。 非常感谢任何建议!
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<android.support.v7.app.MediaRouteButton
android:id="@+id/castbutton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="2"
>
</android.support.v7.app.MediaRouteButton>'
...
public class MainActivity extends android.support.v4.app.FragmentActivity
implements OnClickListener {
private android.support.v7.app.MediaRouteButton castbutton;
答案 0 :(得分:0)
首先你应该替换这个
<android.support.v7.app.`MediaRouteButton`
android:id="@+id/castbutton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="2"
>
</android.support.v7.app.MediaRouteButton>
使用
<android.support.v7.app.MediaRouteButton
android:id="@+id/castbutton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="2"
>
</android.support.v7.app.MediaRouteButton>
更新:您必须先appcompat referecning
。要将appcompat库添加到您的步骤Right Click Project--> go to properties--> android ---> ib tab
,请添加appcompat项目。