mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-28 13:23:58 +01:00
* implement Ability to show captions and descriptions in all entered languages *Add Javadoc * handle Back event of fragment(mediaDetailFragment) * fix minor bugs * add internationalization * revert previous changes * fix visibility bug * resolve conflict
33 lines
No EOL
1.1 KiB
XML
33 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="wrap_content"
|
|
android:background="?attr/mainBackground"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:id="@+id/caption_language_textview"
|
|
style="@style/CaptionTextLabel"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:inputType="textMultiLine"
|
|
android:text="Caption"
|
|
android:textColor="?attr/caption_description_text_color"
|
|
android:textSize="16dp"
|
|
android:textStyle="bold" />
|
|
|
|
<TextView
|
|
android:id="@+id/caption_text"
|
|
style="@style/CaptionTextLabel"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:inputType="textMultiLine"
|
|
android:textColor="?attr/caption_description_text_color"
|
|
android:textStyle="normal" />
|
|
</LinearLayout>
|
|
</LinearLayout> |