2016-10-09 109 views
-2

您好我正在嘗試將幾個按鈕和一個webview與admob廣告對齊。但我需要的路線不是我正在得到。Android佈局組件對齊問題

這裏是我的代碼

連接的屏幕截圖是我所需要的佈局。

<?xml version="1.0" encoding="utf-8"?> 

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    xmlns:ads="http://schemas.android.com/apk/res-auto" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:paddingBottom="0dp" 
    android:paddingLeft="0dp" 
    android:paddingRight="0dp" 
    android:paddingTop="0dp" 
    app:layout_behavior="@string/appbar_scrolling_view_behavior" 
    tools:context="com.profilephotos.dp.MainActivity" 
    tools:showIn="@layout/activity_view_image"> 
    <com.google.android.gms.ads.AdView 
     android:background="@color/adbackcolor" 
     android:id="@+id/adView" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_centerHorizontal="true" 
     android:layout_alignParentBottom="true" 
     ads:adSize="BANNER" 
     ads:adUnitId="@string/banner_ad_unit_id"> 
    </com.google.android.gms.ads.AdView> 


    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:orientation="vertical" 
     android:layout_alignParentTop="true" 
     android:layout_alignParentLeft="true" 
     android:layout_alignParentStart="true" 
     android:paddingBottom="@dimen/activity_vertical_margin"> 

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

      <TableLayout 
       android:layout_width="match_parent" 
       android:layout_height="match_parent" 
       android:layout_alignParentRight="true"> 

       <TableRow> 
        <WebView 
         android:id="@+id/webViewimage" 
         android:layout_width="match_parent" 
         android:layout_height="match_parent" 
         android:background="#8a0707" 
         android:layout_marginBottom="110dp" 
         android:layout_marginTop="0dp" 
         android:layout_marginLeft="0dp" 
         android:layout_marginRight="0dp" 
         /> 
       </TableRow> 
       <TableRow android:layout_height="match_parent"> 

        <Button 
         android:id="@+id/btnsaveimage" 
         android:layout_width="wrap_content" 
         android:layout_height="56dp" 
         android:layout_marginBottom ="5dp" 
         android:layout_weight="1" 
         android:text="Save" 
         android:onClick="triggeractionbtnclick" 
         android:layout_above="@+id/adView" /> 

        <Button 
         android:id="@+id/btnshareimage" 
         android:layout_width="wrap_content" 
         android:layout_height="56dp" 
         android:layout_marginBottom ="5dp" 
         android:layout_weight="1" 
         android:text="Share" 
         android:onClick="triggeractionbtnclick" 
         android:layout_above="@+id/adView" /> 

        <Button 
         android:id="@+id/btnsetas" 
         android:layout_width="wrap_content" 
         android:layout_height="56dp" 
         android:layout_marginBottom ="5dp" 
         android:layout_weight="1" 
         android:text="Set As" 
         android:onClick="triggeractionbtnclick" 
         android:layout_above="@+id/adView"/> 

       </TableRow> 

      </TableLayout> 

     </LinearLayout> 

    </LinearLayout> 


</RelativeLayout> 

我做錯了什麼? layout sample

回答

1

解決方案:

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout 
     xmlns:android="http://schemas.android.com/apk/res/android" 
     xmlns:tools="http://schemas.android.com/tools" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     xmlns:ads="http://schemas.android.com/apk/res-auto"> 

    <android.support.v7.widget.Toolbar 
     android:layout_width="match_parent" 
     android:id="@+id/toolbar" 
     android:background="@color/colorPrimary" 
     android:layout_height="wrap_content"> 

    </android.support.v7.widget.Toolbar> 

    <com.google.android.gms.ads.AdView 
     android:id="@+id/adView" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     ads:adSize="BANNER" 
     android:layout_alignParentBottom="true" 
     ads:adUnitId="@string/banner_home_footer"> 
    </com.google.android.gms.ads.AdView> 


    <TableLayout 
     android:layout_width="match_parent" 
     android:layout_above="@+id/adView" 
     android:id="@+id/table" 
     android:layout_height="wrap_content"> 

     <TableRow 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" > 

      <Button android:layout_width="wrap_content" 
       android:layout_weight="1" 
       android:text="Button 1" 
       android:layout_height="wrap_content"/> 

      <Button android:layout_width="wrap_content" 
       android:layout_weight="1" 
       android:text="Button 2" 
       android:layout_height="wrap_content"/> 

      <Button android:layout_width="wrap_content" 
       android:layout_weight="1" 
       android:text="Button 3" 
       android:layout_height="wrap_content"/> 
     </TableRow> 

    </TableLayout> 


    <WebView 
     android:layout_width="match_parent" 
     android:layout_below="@+id/toolbar" 
     android:id="@+id/webview" 
     android:layout_above="@+id/table" 
     android:layout_height="match_parent"/> 

</RelativeLayout> 
+0

由於它的工作原理就像一個魅力! – user3391693

+0

不添加解決方案,添加爲什麼這個來和相關的參考。 –

0

所以你可以做到這一點就像我只是概述你的觀點。

<RelativeLayout 

    <WebView 
     height="match_parent" 
     widht="match_parent" 
     id="webview1"/> 

    <LinearLayout 
    layout_above="@id/webview1" 
    align_parent_bottom="true" 
    orientation="vertical" 

     <LinearLayout weight_sum=3 
      orientation="horizontal"> 

       <Buttion width=0" 
        weight=1 /> 

       <Buttion width=0" 
        weight=1 /> 

       <Buttion width=0" 
        weight=1 /> 

     </LinearLayout> 

     <AdMobView /> 

    </LinearLayout> 

</RelativeLayout> 

一個大概的想法,但它會解決你的問題。