1
Im Folgenden ist der Code von main.xml
, die ich verwendet habeWie setze ich TextView ins Zentrum?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="4dp"
android:orientation="vertical"
android:weightSum="1">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<LinearLayout
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="50dp"
android:layout_weight="0.88"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="pumpName"
android:id="@+id/tvPump" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Time"
android:id="@+id/tvTime"
android:gravity="center_vertical" />
</LinearLayout>
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/ivIcon"
android:src="@drawable/yes" />
</FrameLayout>
</LinearLayout>
</LinearLayout>
Der obige Code erzeugt keine Fehler eine Reihe Adapter für JSON zu schaffen, sondern die Zeit TextView
nicht in der Mitte nicht kommen.
Ich habe versucht android:gravity="center"
, aber es hat nicht funktioniert.
This is the image of my android studio
Verwenden 'RelativeLayout' mit' layout_centerInParent' auf true gesetzt Attribut. –
Mögliches Duplikat von [So zentrieren Sie eine Textansicht in einem linearen Layout] (http://stackoverflow.com/questions/13474982/how-to-center-a-textview-inside-a-linearlayout) –