如何将textview与android中工具栏的右侧对齐,给出的答案未给出解决方案

时间:2018-10-31 10:58:38

标签: android xml

我得到的,

i

我的代码,“很多问题在stackoverflow中匹配,但未找到解决方案”

<android.support.v7.widget.Toolbar 
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:id="@+id/mytoolbar"
android:orientation="horizontal"
android:theme="@style/AppTheme.PopupOverlay"
android:background="?attr/colorPrimary"
xmlns:android="http://schemas.android.com/apk/res/android">

我想要右对齐的textview

<TextView
 android:id="@+id/skiplogin"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:text="Skip Login"
 android:background="@color/white"
 android:layout_gravity="right"
 android:textColor="@color/textcolor"
 android:backgroundTint="@color/white"
 android:padding="10dp"
 android:visibility="gone"/>
 </android.support.v7.widget.Toolbar>

我想要

 i want

0 个答案:

没有答案