2

Я пытаюсь реализовать пользовательскую панель инструментов в своем приложении. Я хочу иметь 1 изображение и 1 textview слева, 1 textview в середине и 1 textview в конце. В режиме предварительного просмотра она выглядит как задумано: enter image description here Однако, когда я запускаю мое приложение на виртуальном устройстве, все виды выравниваются к началу: enter image description hereСодержимое панели инструментов выглядит по-разному в режиме предварительного просмотра, чем эмулятор

Мой код:

<android.support.v7.widget.Toolbar 
     xmlns:android="http://schemas.android.com/apk/res/android" 
     xmlns:app="http://schemas.android.com/apk/res-auto" 
     xmlns:tools="http://schemas.android.com/tools" 
     android:id="@+id/toolbar" 
     android:layout_height="wrap_content" 
     android:layout_width="match_parent" 
     android:minHeight="?attr/actionBarSize" 
     android:background="?attr/colorPrimary" 
     tools:context=".OptionListActivity"> 
     <LinearLayout 
      android:orientation="horizontal" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:gravity="center_vertical" 
      android:weightSum="3"> 

      <ImageView 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       app:srcCompat="@android:drawable/btn_star_big_on" 
       android:id="@+id/imageView" /> 

      <TextView 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:id="@+id/nameSurname" 
       android:text="June Office" 
       android:textColor="@android:color/white" 
       android:textAlignment="viewStart" 
       android:layout_weight="1" 
       android:layout_marginStart="5dp" /> 

      <TextView 
       android:text="Dec 19, 12:47 PM" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:id="@+id/dateTime" 
       android:textColor="@android:color/white" 
       android:textAlignment="center" 
       android:layout_weight="1"/> 

      <TextView 
       android:text="415-555-1212" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:id="@+id/number" 
       android:textColor="@android:color/white" 
       android:textAlignment="viewEnd" 
       android:layout_weight="1"/> 
     </LinearLayout> 

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

Что мне нужно изменить для получения предполагаемого результата? А может быть, кто-то может объяснить мне, почему это хорошо выглядит в режиме предварительного просмотра и некорректным на эмуляторе ...

ответ

0

замените код ниже код, это может помочь вам

<android.support.v7.widget.Toolbar 
     xmlns:android="http://schemas.android.com/apk/res/android" 
     xmlns:app="http://schemas.android.com/apk/res-auto" 
     xmlns:tools="http://schemas.android.com/tools" 
     android:id="@+id/toolbar" 
     android:layout_height="wrap_content" 
     android:layout_width="match_parent" 
     android:minHeight="?attr/actionBarSize" 
     android:background="?attr/colorPrimary" 
     tools:context=".OptionListActivity"> 
     <LinearLayout 
      android:orientation="horizontal" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:gravity="center_vertical" 
      android:weightSum="3"> 

     <LinearLayout 
      android:orientation="horizontal" 
      android:layout_width="0dp" 
      android:layout_height="match_parent" 
      android:layout_weight=1> 

      <ImageView 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       app:srcCompat="@android:drawable/btn_star_big_on" 
       android:id="@+id/imageView" /> 

      <TextView 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:id="@+id/nameSurname" 
       android:text="June Office" 
       android:textColor="@android:color/white" 
       android:textAlignment="viewStart" 
       android:layout_marginStart="5dp" /> 

     </LinearLayout> 

      <TextView 
       android:text="Dec 19, 12:47 PM" 
       android:layout_width="0dp" 
       android:layout_height="wrap_content" 
       android:id="@+id/dateTime" 
       android:textColor="@android:color/white" 
       android:textAlignment="center" 
       android:layout_weight="1"/> 

      <TextView 
       android:text="415-555-1212" 
       android:layout_width="0dp" 
       android:layout_height="wrap_content" 
       android:id="@+id/number" 
       android:textColor="@android:color/white" 
       android:textAlignment="viewEnd" 
       android:layout_weight="1"/> 
     </LinearLayout> 

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

К сожалению, это не сработало, поэтому проблема сохраняется ... –

0

проблема решена: в другой XML-файл, мне нужно изменить layout_width от wrap_content до match_parent ... Спасибо за попытку помочь мне ...