私はエラーが何を伝えているのか理解していますが、私がカスタムタイトルと結合しようとしているタイトル機能を考慮しています。カスタムタイトルと他のタイトル機能を組み合わせることはできません
inspection_title.axml
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/inspectionTitle"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:ellipsize="marquee"
android:marqueeRepeatLimit="-1"/>
LiftInspection.cs
[Activity(ScreenOrientation = Android.Content.PM.ScreenOrientation.Portrait)]
public class LiftInspection : ExpandableListActivity
{
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
string callInfo = Intent.GetStringExtra("CallInfo");
RequestWindowFeature(WindowFeatures.CustomTitle);
SetContentView(Resource.Layout.LiftInspection);
Window.SetFeatureInt(WindowFeatures.CustomTitle, Resource.Layout.inspection_title);
TextView title = (TextView) FindViewById(Resource.Id.inspectionTitle);
title.Text = callInfo;
}
マニフェストか何かで追加のタイトルのカスタマイズはありません。この例外を生成するためにCustomTitleと組み合わせることができますか?
私を助けてくれ、あなたをしました問題を解決する ?私は同じことに直面しています:( – kinghomer