同じパディングの行に3つのフローティングアクションボタンを配置したいと思います。結果は次のようになります。 How it should lookLinearLayoutポジション3つのボタンの間に同じパディングがあります
しかし、今のところ、それはHow it look right now(その中間キャプチャFABは表示されません)のように見えます。あなたがそこに見ることができますが、それだけでは動作しませんようlayout_weight:私はアンドロイドを設定しようとしました
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto" >
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/relativeLayoutCamera2">
<TextureView
android:id="@+id/textureView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<LinearLayout
android:gravity="bottom"
android:layout_alignParentBottom="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:id="@+id/baseline"
android:weightSum="3"
android:background="@color/strapGrey">
<android.support.design.widget.FloatingActionButton
android:layout_width="0dp"
android:layout_height="wrap_content"
android:id="@+id/browseImagesFAB"
android:src="@drawable/ic_photo_library_white_24dp"
app:elevation="0dp"
android:layout_weight="1"
android:paddingTop="10dp"
android:paddingBottom="10dp"
app:backgroundTint="@color/strapGrey"
app:fabSize="mini"/>
<android.support.design.widget.FloatingActionButton
android:layout_width="0dp"
android:layout_height="wrap_content"
android:id="@+id/captureInvisible"
android:src="@drawable/ic_photo_camera_white_24dp"
app:fabSize="mini"
android:layout_gravity="center_horizontal"
android:layout_weight="1"
android:paddingTop="10dp"
android:paddingBottom="10dp"
app:backgroundTint="@color/strapGrey" />
<android.support.design.widget.FloatingActionButton
android:layout_width="0dp"
android:layout_height="wrap_content"
android:id="@+id/flashFAB"
android:src="@drawable/ic_flash_off_white_24dp"
app:elevation="0dp"
android:layout_weight="1"
android:paddingTop="10dp"
android:paddingBottom="10dp"
app:backgroundTint="@color/strapGrey"
app:fabSize="mini"/>
</LinearLayout>
<android.support.design.widget.FloatingActionButton
android:id="@+id/captureImageFAB"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/fab_margin"
android:src="@drawable/ic_photo_camera_white_24dp"
app:fabSize="normal"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true" />
</RelativeLayout>
</android.support.design.widget.CoordinatorLayout>
:
は、ここに私のレイアウトファイルです。助けてください!
短い答えは 'FloatingActionButton'が持つ素敵を果たしていないということであるように結果が見えるはずですLinearLayout代わりに 'CircleImageView'を使ってみてください。 – privatestaticint