私はXamarin.Formsを使用してクロスプラットフォームアプリケーションを開発しています。私はネイティブXFでサポートされていない勾配、に私のTabLayoutsの背景を設定したいように、私は私のTabbedPagesのカスタムレンダラを書いた:AndroidサブページのFindViewById(Xamarin.Formsを使用)
今たびにトリガしますレンダラを意図したとおりにusing Android.App;
using Android.Graphics;
using Android.Support.Design.Widget;
using Xamarin.Forms;
using Xamarin.Forms.Platform.Android;
using Xamarin.Forms.Platform.Android.AppCompat;
using MyApp.Droid.Renderer;
[assembly: ExportRenderer(typeof(TabbedPage), typeof(CustomTabbedPageRenderer))]
namespace MyApp.Droid.Renderer
{
public class CustomTabbedPageRenderer : TabbedPageRenderer
{
private Activity _activity;
protected override void OnElementChanged(ElementChangedEventArgs<TabbedPage> e)
{
base.OnElementChanged(e);
_activity = this.Context as FormsAppCompatActivity;
}
protected override void DispatchDraw(Canvas canvas)
{
base.DispatchDraw(canvas);
TabLayout tabs = _activity.FindViewById<TabLayout>(Resource.Id.sliding_tabs);
var gradient = new MyGradient();
tabs.SetBackground(gradient);
}
}
}
アプリはTabbedPageを読み込みます。 しかし、_activity.FindViewById<TabLayout>(Resource.Id.sliding_tabs)
は常にMainPageのTabLayoutを返します(またMyGradientを背景として適切に設定しています)。私のサブページの1つでTabLayoutを取得する方法もわかりません。
これはXamarinやAndroidに問題があるかどうかわからない...
は、あなたたちは私を助けることができる願っています。
ありがとうございます!
月
EDIT:ここのstyles.xmlは(私はそれがコード-見習いが言及された@何を望む)です。また
<resources>
<style name="MainTheme" parent="MainTheme.Base">
</style>
<!-- Base theme applied no matter what API -->
<style name="MainTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
<!--If you are using revision 22.1 please use just windowNoTitle. Without android:-->
<item name="windowNoTitle">true</item>
<!--We will be using the toolbar so no need to show ActionBar-->
<item name="windowActionBar">false</item>
<!-- Set theme colors from http://www.google.com/design/spec/style/color.html#color-color-palette -->
<!-- colorPrimary is used for the default action bar background -->
<item name="colorPrimary">#2196F3</item>
<!-- colorPrimaryDark is used for the status bar -->
<!--<item name="colorPrimaryDark">#1976D2</item>-->
<item name="colorPrimaryDark">#FF8630</item>
<!--<item name="android:windowTranslucentStatus">true</item>-->
<!-- colorAccent is used as the default value for colorControlActivated
which is used to tint widgets -->
<item name="colorAccent">#FF4081</item>
<!-- You can also set colorControlNormal, colorControlActivated
colorControlHighlight and colorSwitchThumbNormal. -->
<item name="windowActionModeOverlay">true</item>
<item name="android:datePickerDialogTheme">@style/AppCompatDialogStyle</item>
</style>
<style name="AppCompatDialogStyle" parent="Theme.AppCompat.Light.Dialog">
<item name="colorAccent">#FF4081</item>
</style>
</resources>
メインページのトップのスクリーンショット:http://i.imgur.com/VyX3YX7.png
それはサブページです(MainPage.Navigation.PushAsync(new SubPage());):http://i.imgur.com/pRmecjE.png
適切なXMLレイアウトファイルを表示してください。また、いくつかのスクリーンショットを表示できますか? –
私の質問に変更が追加されました – japhwil
私はかなり理解していません、サブページのレイアウトはPCLで定義する必要がありますか?レンダラーでそれを探したいのはなぜですか? –