将图像固定在工具栏Android

时间:2017-10-26 09:11:30

标签: c# android android-layout xamarin xamarin.forms

我正在使用Xamarin pcl。现在Android项目是工具栏和Tabbar的自动渲染布局。我正在自定义toolbar.axml,在其中心有一个图标。一切都在继续,直到一个页面有一个后退按钮(导航页面属性,我猜)结束图标向右移动,因为它不再是工具栏中唯一的一个。是否有一个简单的解决方案,使图标固定位置?我认为,后退按钮不是在axml中声明的,而是通过Xamarin.Forms函数生成的新NavigationPage()。

我的axml现在看起来像这样:

    <?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#72B1A2"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    android:popupTheme="@style/ThemeOverlay.AppCompat.Light"
    >
  <ImageView
   android:id="@id/image"
   android:layout_height="wrap_content"
   android:layout_width="wrap_content"
   android:paddingTop="5dp"
   android:paddingBottom="5dp"
   android:layout_gravity="center"
   android:baselineAlignBottom="true"
   android:scaleType="fitCenter"
   android:src="@drawable/ictzaak_FC"
    />

</android.support.v7.widget.Toolbar>

我已经考虑过使用android:layout_gravity =“center”和android:layout_gravity =“center_horizo​​ntal”和android:center_horizo​​ntal或其他东西,但它没有修复它

它看起来如何: Startup screen without the return button

With return button and out of center

2 个答案:

答案 0 :(得分:0)

您可以尝试将Image嵌套在RelativeLayout中。在这里你可以集中你的形象。像这样:

<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#72B1A2"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    android:popupTheme="@style/ThemeOverlay.AppCompat.Light"
    >
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <ImageView
            android:id="@id/image"
            android:layout_height="wrap_content"
            android:layout_width="wrap_content"
            android:paddingTop="5dp"
            android:paddingBottom="5dp"
            android:layout_centerInParent="true"
            android:baselineAlignBottom="true"
            android:scaleType="fitCenter"
            android:src="@drawable/ictzaak_FC"
            />
    </RelativeLayout>


</android.support.v7.widget.Toolbar>

答案 1 :(得分:0)

使用LinearLayout在中心设置图像。

search-dropdown-wrapper