mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-28 05:13:53 +01:00
32 lines
No EOL
1.1 KiB
XML
32 lines
No EOL
1.1 KiB
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"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical">
|
|
|
|
<fr.free.nrw.commons.nearby.NearbyNotificationCardView
|
|
android:id="@+id/card_view_nearby"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:cardBackgroundColor="?attr/mainCardBackground"
|
|
/>
|
|
|
|
<fr.free.nrw.commons.campaigns.CampaignView
|
|
android:id="@+id/campaigns_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="2dp"
|
|
app:cardBackgroundColor="?attr/mainCardBackground"
|
|
></fr.free.nrw.commons.campaigns.CampaignView>
|
|
|
|
<FrameLayout
|
|
android:id="@+id/root_frame"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginTop="2dp"
|
|
android:background="#000"
|
|
>
|
|
</FrameLayout>
|
|
|
|
</LinearLayout> |