-1

左側に画像、中央にスイッチテキスト、右隅にスイッチボタンが必要です。これが私のコードです

  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >
    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/ic_mobile_data_usage"
        android:layout_marginStart="10dp"
        />

    <android.support.v7.widget.SwitchCompat
        android:id="@+id/switch_compat"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:checked="false"
        android:text="Mobile Data"
        android:textAlignment="center"
        android:textOff=""
        android:textOn=""
        app:showText="true" />

</LinearLayout>
4

5 に答える 5

0
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:orientation="horizontal">

<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/ic_mobile_data_usage"
    android:layout_gravity="center"
    android:layout_marginStart="10dp"/>


<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:gravity="center"
    android:layout_gravity="center"
    android:layout_weight="1"
    android:text="Mobile Data" />

<android.support.v7.widget.SwitchCompat
    android:id="@+id/switch_compat"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:checked="false"
    android:textOff=""
    android:textOn=""
/>


</LinearLayout> 

この実装を試してください

于 2017-04-20T10:52:28.023 に答える