-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Long press InfoBar text for a toast containing the same text
Fixed a bug in Lollipop with MediaContentScanner Quick GoTo is disabled by default (toggled in Advanced Settings) Press and hold to scroll is now delayed by 750ms before scrolling at 100ms Only first photo name is exported in table mode Fixed some issues with search layout Updated summary dialog Reworked location code Updated sample files
- Loading branch information
trife
committed
Apr 22, 2015
1 parent
407bf89
commit a1071c6
Showing
26 changed files
with
1,518 additions
and
422 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
<?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:background="#FFFFFF" | ||
android:orientation="vertical" | ||
android:padding="5dp"> | ||
|
||
<LinearLayout | ||
android:layout_width="fill_parent" | ||
android:layout_height="wrap_content" | ||
android:gravity="center_horizontal" | ||
android:paddingTop="10dp" | ||
android:orientation="horizontal"> | ||
|
||
<LinearLayout | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content"> | ||
|
||
<Button | ||
android:id="@+id/camBtn" | ||
android:layout_width="45dp" | ||
android:layout_height="45dp" | ||
android:background="@android:drawable/btn_default" | ||
android:drawableTop="@drawable/ic_action_camera" | ||
android:focusable="false" | ||
android:minWidth="30dp" | ||
android:text="" /> | ||
</LinearLayout> | ||
|
||
<EditText | ||
android:id="@+id/barcodeid" | ||
android:layout_width="fill_parent" | ||
android:layout_height="wrap_content" | ||
android:maxLength="200" | ||
android:singleLine="true" | ||
android:textColor="#000000" | ||
android:textSize="20dp" /> | ||
|
||
</LinearLayout> | ||
|
||
<LinearLayout | ||
android:layout_width="fill_parent" | ||
android:layout_height="wrap_content" | ||
android:gravity="center_horizontal" | ||
android:paddingTop="10dp" | ||
android:orientation="horizontal"> | ||
|
||
<Button | ||
android:id="@+id/closeBtn" | ||
android:layout_width="wrap_content" | ||
android:layout_height="60dp" | ||
android:background="@android:drawable/btn_default" | ||
android:layout_gravity="center" | ||
android:minWidth="150dp" | ||
android:text="@string/close" | ||
android:textColor="#000000" | ||
android:textSize="30dp" | ||
android:textStyle="bold" /> | ||
|
||
<Button | ||
android:id="@+id/saveBtn" | ||
android:layout_width="wrap_content" | ||
android:layout_height="60dp" | ||
android:layout_gravity="center" | ||
android:background="@android:drawable/btn_default" | ||
android:minWidth="150dp" | ||
android:text="@string/okay" | ||
android:textColor="#000000" | ||
android:textSize="30dp" | ||
android:textStyle="bold" /> | ||
|
||
</LinearLayout> | ||
|
||
</LinearLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.