staram się osiągnąć ten (timer w toolbar
z czerwonym tle):Dodaj własny pogląd na prawo od paska
Próbuję dodać customView
w toolbar
. Zawsze kończy się na skrajnym lewym rogu, tuż obok tylnej strzałki. Podobnie jak w tekście na poniższym obrazku, znajduje się niestandardowy Textview
dodany do paska narzędzi. .
Kod dla toolbar
:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
android:id="@+id/base_activity_toolbar"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:elevation="4dp"
android:minHeight="?attr/actionBarSize"
android:popupTheme="@style/ThemeOverlay.AppCompat.Light"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" />
Kod dodawania układ:
LayoutInflater mInflater= LayoutInflater.from(context);
View mCustomView = mInflater.inflate(R.layout.textview, null);
toolbar.addView(mCustomView);
Jest to układ dodaję teraz do testowania:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="wrap_content"
android:gravity="end"
android:layout_height="wrap_content">
<TextView android:layout_width="wrap_content"
android:text="yp"
android:layout_height="wrap_content"/>
</LinearLayout>
I Brakuje mi czegoś poważnego, nie mogłem się zorientować. Wyciągam moje włosy.
zmienić LinearLayout za 'layout_width' do' match_parent'. –