2017-11-22 2 views

答えて

2

が....この

<?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:orientation="vertical"> 


    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:orientation="horizontal"> 

     <ImageButton 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:layout_margin="10dp" 
      android:layout_weight="1" 
      android:src="@mipmap/ic_launcher_round" /> 


     <View 
      android:layout_width="1dp" 
      android:layout_height="match_parent" 
      android:background="@color/colorPrimary" /> 

     <ImageButton 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:layout_margin="10dp" 
      android:layout_weight="1" 
      android:src="@mipmap/ic_launcher_round" /> 

    </LinearLayout> 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:orientation="horizontal"> 

     <View 
      android:layout_width="match_parent" 
      android:layout_height="1dp" 
      android:layout_marginRight="10dp" 
      android:layout_marginTop="10dp" 
      android:layout_weight="1" 
      android:background="@color/colorPrimary" /> 

     <View 
      android:layout_width="match_parent" 
      android:layout_height="1dp" 
      android:layout_marginLeft="10dp" 
      android:layout_marginTop="10dp" 
      android:layout_weight="1" 
      android:background="@color/colorPrimary" /> 


    </LinearLayout> 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_marginTop="10dp" 
     android:orientation="horizontal"> 

     <ImageButton 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:layout_margin="10dp" 
      android:layout_weight="1" 
      android:src="@mipmap/ic_launcher_round" /> 


     <View 
      android:layout_width="1dp" 
      android:layout_height="match_parent" 
      android:background="@color/colorPrimary" /> 

     <ImageButton 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:layout_margin="10dp" 
      android:layout_weight="1" 
      android:src="@mipmap/ic_launcher_round" /> 

    </LinearLayout> 


</LinearLayout> 

出力

enter image description here

+2

に感謝してみてください作品の魅力のように...! – Ashutosh

+0

@Ashutoshあなたがコードを楽しむのを喜んで支援する – Prem

関連する問題