mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-26 00:08:11 +00:00
26 lines
866 B
XML
26 lines
866 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/topLayout"
|
|
android:background="@drawable/background"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<TextView
|
|
android:paddingTop="40dp"
|
|
android:textSize="20sp"
|
|
android:textStyle="bold"
|
|
android:textColor="@android:color/black"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="In-app store"/>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/purchasable_items"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:paddingTop="40dp"
|
|
android:gravity="center"
|
|
android:orientation="vertical"/>
|
|
|
|
</RelativeLayout>
|