相关文章推荐
飞翔的小刀  ·  javascript ...·  1 年前    · 
听话的牛肉面  ·  Vue ref vs React refs ...·  2 年前    · 
开朗的胡萝卜  ·  .NET Core ...·  2 年前    · 
唠叨的鸵鸟  ·  mysql ...·  2 年前    · 
威武的马克杯  ·  gitlab ci android ...·  3 年前    · 

在XML中的TextView属性中设置:android:gravity="right" 属性即可让TextView中的文字靠右对齐,代码如下

<TextView
                android:id="@+id/tv_data"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:gravity="right"
                android:layout_marginBottom="5dp"
                android:textColor="#ffffffff" />