我有两个按钮的登录活动,一个是我的,另一个来自Facebook SDK。 我可以看到带有id" auth"等于宽度和高度的facebook按钮。 如果在清单中我设置
机器人:主题=" @android:风格/ Theme.NoTitleBar.Fullscreen"
要全屏显示活动,我得到一个奇怪的结果:我的按钮的高度减小了,所以我看到一个捣碎的矩形。
这是login.xml的代码:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:facebook="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/login_bg"
android:fillViewport="true" >
<LinearLayout
android:id="@+id/container"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<LinearLayout
android:id="@+id/header"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:padding="10dip"
android:gravity="center" >
<!-- Logo Start -->
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/logo_claim" />
<!-- Logo Ends -->
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:padding="10dip"
android:orientation="vertical">
<Button
android:id="@+id/auth"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="@drawable/loginbutton"
android:textColor="#FFFFFF"
android:textStyle="bold"
android:textSize="16sp"
android:text="Login" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_margin="10dp"
android:padding="10dip" >
<com.facebook.widget.LoginButton
android:id="@+id/authButton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
facebook:login_text="Login with Facebook" />
<com.facebook.widget.LoginButton
android:id="@+id/logoutButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Logout"
android:visibility="gone" />
</LinearLayout>
</LinearLayout>
</ScrollView>
答案 0 :(得分:2)
您可以通过java代码而不是xml来全屏显示活动:
requestWindowFeature(Window.FEATURE_NO_TITLE);
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FUL LSCREEN);
setContentView(R.layout.activity_main);