Skip to content
Snippets Groups Projects
Commit 4b132a6f authored by Francesco Andreuzzi's avatar Francesco Andreuzzi
Browse files

5.2.1

parent f6f19b63
No related branches found
No related tags found
No related merge requests found
Showing
with 172 additions and 0 deletions
app/src/main/res/drawable-hdpi/ic_back.png

296 B

app/src/main/res/drawable-hdpi/ic_clear.png

372 B

app/src/main/res/drawable-hdpi/ic_enter.png

336 B

app/src/main/res/drawable-hdpi/ic_paste.png

468 B

app/src/main/res/drawable-mdpi/ic_back.png

212 B

app/src/main/res/drawable-mdpi/ic_clear.png

257 B

app/src/main/res/drawable-mdpi/ic_enter.png

237 B

app/src/main/res/drawable-mdpi/ic_paste.png

314 B

app/src/main/res/drawable-xhdpi/ic_back.png

292 B

app/src/main/res/drawable-xhdpi/ic_clear.png

406 B

app/src/main/res/drawable-xhdpi/ic_enter.png

346 B

app/src/main/res/drawable-xhdpi/ic_paste.png

554 B

app/src/main/res/drawable-xxhdpi/ic_back.png

486 B

app/src/main/res/drawable-xxhdpi/ic_clear.png

663 B

app/src/main/res/drawable-xxhdpi/ic_enter.png

561 B

app/src/main/res/drawable-xxhdpi/ic_paste.png

924 B

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout android:id="@+id/input_group"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum="@integer/input_group_weightsum"
android:orientation="horizontal"
android:gravity="center_vertical"
android:layout_alignParentBottom="true">
<TextView
android:id="@+id/prefix_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="@dimen/input_padding"/>
<EditText
android:id="@+id/input_view"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="@integer/input_view_weight"
android:background="@null"
android:imeOptions="actionGo|flagNoFullscreen"
android:textCursorDrawable="@drawable/cursor"
android:paddingTop="@dimen/input_padding"
android:lines="1"
android:singleLine="true" />
<ImageButton
android:id="@+id/submit_tv"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="@integer/enter_view_weight"
android:background="@null"
android:src="@drawable/ic_enter"
android:paddingTop="@dimen/input_padding"/>
</LinearLayout>
<TextView
android:id="@+id/output_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@id/input_group"
android:scrollHorizontally="false"
android:scrollbars="vertical"
android:textIsSelectable="true"/>
<EditText android:id="@+id/file_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@id/output_view"
android:inputType="textFilter|textMultiLine"
android:isScrollContainer="true"
android:textCursorDrawable="@drawable/cursor"
android:background="@null"/>
</RelativeLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout android:id="@id/input_group"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum="@integer/input_group_weightsum"
android:orientation="horizontal"
android:gravity="center_vertical"
android:layout_alignParentTop="true">
<TextView
android:id="@+id/prefix_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="@dimen/input_padding"/>
<EditText
android:id="@+id/input_view"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="@integer/input_view_weight"
android:background="@null"
android:imeOptions="actionGo|flagNoFullscreen"
android:textCursorDrawable="@drawable/cursor"
android:paddingTop="@dimen/input_padding"
android:lines="1"
android:singleLine="true" />
<ImageButton
android:id="@+id/submit_tv"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="@integer/enter_view_weight"
android:background="@null"
android:src="@drawable/ic_enter"
android:paddingTop="@dimen/input_padding"/>
</LinearLayout>
<TextView
android:id="@+id/output_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/input_group"
android:gravity="bottom"
android:scrollHorizontally="false"
android:scrollbars="vertical"
android:textIsSelectable="true"/>
<EditText
android:id="@+id/file_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/output_view"
android:inputType="textFilter|textMultiLine"
android:isScrollContainer="true"
android:textCursorDrawable="@drawable/cursor"
android:background="@null"/>
</RelativeLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources>
<item type="id" name="suggestion_id"/>
<integer name="enter_view_weight">1</integer>
<integer name="input_view_weight">7</integer>
<integer name="input_group_weightsum">8</integer>
<integer name="tools_view_weightsum">4</integer>
<integer name="tools_view_weight">1</integer>
<integer name="tutorial_bigicon_weightsum">3</integer>
<integer name="tutorial_bigicon_weight">1</integer>
<integer name="tutorial_items_bigmargin">35</integer>
<integer name="tutorial_items_smallmargin">15</integer>
<integer name="tutorial_end_icon_weightsum">7</integer>
<integer name="tutorial_end_icon_weight">1</integer>
</resources>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment