Android:文字不在textView中居中?

时间:2016-04-28 10:08:40

标签: android textview android-linearlayout

编辑:抱歉,我的实施中存在问题,布局权重不是最多1,因此问题。在我修复了layoutWeight后,它工作了。

我不知道为什么,但我无法将文字置于此custom TextView内,有人可以帮忙。我尝试了各种各样的东西,但没有一个是有效的。我的IconTextView中的图标更靠近右侧而不是中心。谢谢!!

<LinearLayout
          android:layout_width="0dp"
          android:layout_height="match_parent"
          android:layout_weight="0.25">

          <com.malinskiy.materialicons.widget.IconTextView 
                    xmlns:app="http://schemas.android.com/apk/res-auto"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:background="@drawable/ripple_effect"
                    android:gravity="center"
                    android:text="{zmdi-play}"
                    android:textColor="#ffffff"
                    android:textSize="40dp"
                    app:hacky_preview="true" />
    </LinearLayout>

4 个答案:

答案 0 :(得分:0)

尝试添加

android:textAlignment="gravity"

到您的IconTextView元素

答案 1 :(得分:0)

这不是一个合适的解决方案但是,因为问题可能在于IconTextView的实现,你可以尝试将IconTextView设置为wrap_content并将整个IconTextView置于包装LinearLayout中。像这样:

<LinearLayout
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_weight="0.25"
    android:gravity="center">

    <com.malinskiy.materialicons.widget.IconTextView 
            xmlns:app="http://schemas.android.com/apk/res-auto"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:background="@drawable/ripple_effect"
            android:text="{zmdi-play}"
            android:textColor="#ffffff"
            android:textSize="40dp"
            app:hacky_preview="true" />
 </LinearLayout>

答案 2 :(得分:0)

  

您可以在相对相对布局中使用文本视图,如下面的代码

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
 >

<com.malinskiy.materialicons.widget.IconTextView 
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:background="@drawable/ripple_effect"
        android:text="{zmdi-play}"
        android:textColor="#ffffff"
        android:textSize="40dp"
        app:hacky_preview="true" />
</RelativeLayout>

希望这会对你有所帮助

答案 3 :(得分:0)

<LinearLayout
      android:layout_width="match_parent"
      android:layout_height="match_parent">

      <com.malinskiy.materialicons.widget.IconTextView 
                xmlns:app="http://schemas.android.com/apk/res-auto"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:background="@drawable/ripple_effect"
                android:gravity="center"
                android:text="{zmdi-play}"
                android:textColor="#ffffff"
                android:textSize="40dp"
                app:hacky_preview="true" />
</LinearLayout>

试试这个......可以帮到你......