Android活动上的渲染问题

时间:2016-04-02 21:26:51

标签: android xml android-studio

我有一个示例登录活动,如下所示。但为什么我会收到渲染问题? Preview

当我尝试刷新屏幕时,会出现如下情况。 Preview

我该如何解决这个问题?

这是我的代码

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
>

<TextView android:text="Login With Facebook"

    android:id="@+id/btnLogin"
    android:padding="16dp"
    android:layout_centerInParent="true"
    android:background="#494949"
    android:textColor="#fff"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

<com.facebook.login.widget.LoginButton
    android:visibility="gone"
    android:id="@+id/login_button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    android:layout_marginTop="30dp"
    android:layout_marginBottom="30dp" />

</RelativeLayout>

0 个答案:

没有答案