边界有2个片段

时间:2013-06-15 17:12:04

标签: android android-layout android-fragments

如何将此设计特别应用于棕色边框,如何在屏幕末尾应用2个片段和静态按钮列表。

抱歉,我无法上传图片网站错误:“您需要至少10个声望才能发布图片。”

所以你可以在这个链接找到图像

image

这是我的尝试

fragment_list.xml

 <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  

        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="left"
        android:orientation="vertical"    
         >
         <TextView
                android:id="@+id/chapter_list_entry"
               android:layout_width="wrap_content"
               android:layout_height="wrap_content"
               android:textSize="28dip"
            />

           <TextView
               android:id="@+id/chapterid_list_entry"
               android:layout_width="wrap_content"
               android:layout_height="wrap_content"
               android:textSize="28dip"
               android:visibility="invisible"  />

    </LinearLayout>

hadith_details_activity_layout.xml

<?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="match_parent"
    android:orientation="vertical" 
    android:id="@+id/country_details_fragment_container"    
    >
</LinearLayout>

hadith_details_fragment_layout.xml

<?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="match_parent"
    android:orientation="vertical" >

    <TextView 
        android:id="@+id/country_details"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="25dp"
        android:layout_gravity="center"
        android:textColor="@color/blue"
        />

</LinearLayout>

main.xml中

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <fragment 
        android:id="@+id/hadith_list_fragment"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:name="rewaya.books.alhadith.HadithExpandableListFragment"

        />

</LinearLayout>

提前致谢

2 个答案:

答案 0 :(得分:0)

你可以使用类似的东西:

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

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/buttonContainer"
        android:orientation="horizontal" >

        <fragment
            android:name="com.example.DetailsFragment"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1" />

        <fragment
            android:name="com.example.ListFragment"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1" />
    </LinearLayout>

    <LinearLayout
        android:id="@+id/buttonContainer"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:orientation="horizontal" >

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
    </LinearLayout>

</RelativeLayout>

答案 1 :(得分:0)

您可以使用以下方法执行此操作:

  • 首先绘制一个大LinearLayoutRelativeLayout作为其他组件的容器
  • 添加一个LinearLayout,其中包含另外两个FrameLayouts,这些LinearLayout将使用您的片段充气 - 如果您使用Relative,则可以使用权重功能按比例分割片段宽度
  • 您可以在LinearLayout下方
  • 添加新容器布局(LinearLayout FrameLayouts)添加这些按钮

要为您的片段设置边框,您可以设置具有这些边框的背景图片/可绘制到您的{{1}} ..

我希望它有所帮助。