mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 10:35:19 +00:00
4c3b7cbe08
1) Change all instances which use concatenation to build strings with variables in them to use string formatting instead. 2) Extract all string literals from layouts and menus into strings.xml 3) Extract all string literals from code into strings.xml
29 lines
1.0 KiB
XML
29 lines
1.0 KiB
XML
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:orientation="vertical">
|
|
|
|
<ListView android:id="@android:id/list"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:fastScrollEnabled="true" />
|
|
|
|
<ScrollView android:id="@android:id/empty"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:fillViewport="true">
|
|
<TextView android:id="@+id/emptyText"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/no_contacts"
|
|
android:textSize="20sp"
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
android:paddingLeft="10dip"
|
|
android:paddingRight="10dip"
|
|
android:paddingTop="10dip"
|
|
android:lineSpacingMultiplier="0.92"
|
|
/>
|
|
</ScrollView>
|
|
</LinearLayout>
|