mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-28 05:13:53 +01:00
* bug fix, locales not showing up in the spinner in ShareActivity [issue #1793] * removed extra padding from the languages edit text in the spinner * reduced weight percentage of spinner to 30% and increased that of the descriptions in row_item_descriptions to 70%
30 lines
1,000 B
XML
30 lines
1,000 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/ll_container_description_language"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
<TextView
|
|
android:id="@+id/tv_language"
|
|
style="@style/Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="10dp"
|
|
android:paddingBottom="10dp"
|
|
android:paddingLeft="4dp"
|
|
android:paddingRight="4dp"
|
|
android:imeOptions="flagNoExtractUi"
|
|
android:maxLines="1"
|
|
android:singleLine="true"
|
|
android:textAlignment="center"
|
|
tools:text="en"
|
|
/>
|
|
|
|
<View
|
|
android:id="@+id/view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="@color/item_white_background"></View>
|
|
</LinearLayout>
|