2022-03-10 16:31:03 +02:00
|
|
|
<?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:orientation="horizontal">
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/icon"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2022-03-14 11:53:00 +02:00
|
|
|
android:src="@drawable/ic_launcher"
|
2022-03-10 16:31:03 +02:00
|
|
|
android:paddingLeft="5dp"
|
|
|
|
android:paddingRight="5dp"
|
|
|
|
android:paddingTop="5dp"
|
|
|
|
android:paddingBottom="5dp"/>
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:gravity="center_vertical">
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/language"
|
|
|
|
android:textSize="20dp"
|
|
|
|
android:textColor="#000000"
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|