1

このコードを適用したために、そのクロスラインをバックグラウンドで適用しようとしていました

<?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="fill_parent"
android:background="@drawable/tiles"
android:orientation="vertical" >

<Button
    android:id="@+id/Button1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="left"
    android:layout_marginTop="@dimen/dp50"
    android:alpha="0.8"
    android:background="#99cc00"
    android:gravity="left|center_vertical"
    android:paddingLeft="@dimen/dp5"
    android:text="Login"
    android:textAppearance="?android:attr/textAppearanceLarge"
    android:textColor="@android:color/white" />

<Button
    android:id="@+id/Button2"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="@dimen/dp2"
    android:alpha=".8"
    android:background="#99cc00"
    android:gravity="left|center_vertical"
    android:paddingLeft="@dimen/dp5"
    android:text="Register"
    android:textAppearance="?android:attr/textAppearanceLarge"
    android:textColor="@android:color/white" />

<Button
    android:id="@+id/Button3"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="@dimen/dp2"
    android:alpha=".8"
    android:background="#99cc00"
    android:gravity="left|center_vertical"
    android:paddingLeft="@dimen/dp5"
    android:text="Policies"
    android:textAppearance="?android:attr/textAppearanceLarge"
    android:textColor="@android:color/white" />

</LinearLayout>

そして出力は

ここに画像の説明を入力

私も android:layout_height="match_parent" & android:layout_height="wrap_content" を試しました

しかし、それは役に立たなかった..

誰かが私が間違っていることを教えてください

4

1 に答える 1

0

このレイアウトは a のFragment内側で使用されていると思いますよねViewPager?セットはViewPagerその親を満たすか?

于 2012-12-11T18:02:28.900 に答える