0

このデザインを特別に茶色の境界線に適用するにはどうすればよいですか? 画面の最後に2つのフラグメントと静的ボタンのリストを使用して、そのようなものを適用するにはどうすればよいですか?

申し訳ありませんが、画像をアップロードできません Web サイト エラー:「画像を投稿するには、少なくとも 10 の評判が必要です。」

このリンクで画像を見つけることができます

画像

これは私の試みです

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>

前もって感謝します

4

2 に答える 2

0

次を使用してそれを行うことができます。

  • まず、他のコンポーネントのコンテナとなる大きなLinearLayoutorを描画しますRelativeLayout
  • フラグメントで膨らませるLinearLayout他の2つを含むaを追加します-使用する場合、重み機能を使用してフラグメント幅を比例的に分割できますFrameLayoutsLinearLayout
  • LinearLayout の下に、これらのボタンを追加する新しいコンテナー レイアウト (RelativeまたはLinear Layout) を追加できます。

フラグメントに境界線を設定するには、それらの境界線を持つ背景画像/ドローアブルをFrameLayouts..

お役に立てば幸いです。

于 2013-06-15T17:46:48.433 に答える