黑马程序员技术交流社区
标题:
Fragment怎么全屏啊,为什么我载入后只有一细条啊
[打印本页]
作者:
zhangjiao
时间:
2014-5-7 10:02
标题:
Fragment怎么全屏啊,为什么我载入后只有一细条啊
Fragment怎么全屏啊,为什么我载入后只有一细条啊
要载入到LinearLayout "@+id/ll1"里
下面是Activity代码
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
tools:context="com.example.kh.MainActivity"
tools:ignore="MergeRootFrame" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
>
<TextView
android:id="@+id/tv1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/hbxx" />
<TextView
android:id="@+id/tv2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/hbxx" />
<TextView
android:id="@+id/tv3"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/hbxx"
/>
<TextView
android:id="@+id/tv4"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/hbxx"
/>
</LinearLayout>
<LinearLayout
android:id="@+id/ll1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
>
</LinearLayout>
</LinearLayout>
下面是FRAGMENT的代码
<?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:visibility="visible"
android:orientation="vertical"
android:background="#FF1493"
android:gravity="center"
>
<TextView
android:id="@+id/textView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="TextView"
android:gravity="center"
/>
</LinearLayout>
这是效果图
1111151111.jpg
(39.76 KB, 下载次数: 5)
下载附件
2014-5-7 10:02 上传
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2