このデザインを特別に茶色の境界線に適用するにはどうすればよいですか? 画面の最後に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>
前もって感謝します