clean up
This commit is contained in:
parent
2ebb34f41f
commit
877ce903c1
|
|
@ -18,5 +18,4 @@ android {
|
|||
|
||||
dependencies {
|
||||
provided "com.android.support:appcompat-v7:24.2.1"
|
||||
compile project(':libraries:Android-Pdf-Viewer-Library:gestureimageview')
|
||||
}
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<size android:width="3dp"/>
|
||||
<solid android:color="@android:color/black"/>
|
||||
</shape>
|
||||
|
|
@ -20,7 +20,7 @@
|
|||
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
-->
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical">
|
||||
|
||||
|
|
@ -29,7 +29,8 @@
|
|||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:text="Password protected PDF-File:"/>
|
||||
android:text="Password protected PDF-File:"
|
||||
android:textColor="@android:color/black"/>
|
||||
|
||||
<EditText
|
||||
android:id="@+id/etPassword"
|
||||
|
|
@ -37,14 +38,17 @@
|
|||
android:layout_height="60dp"
|
||||
android:layout_weight="10"
|
||||
android:hint="please enter password for PDF"
|
||||
android:inputType="textPassword">
|
||||
android:inputType="textPassword"
|
||||
android:textColor="@android:color/black"
|
||||
android:textColorHint="@android:color/darker_gray"
|
||||
android:textCursorDrawable="@drawable/color_cursor">
|
||||
|
||||
<requestFocus/>
|
||||
</EditText>
|
||||
|
||||
<!-- Buttons 'OK' + 'Exit' -->
|
||||
<LinearLayout
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="horizontal">
|
||||
|
|
|
|||
|
|
@ -1,2 +1 @@
|
|||
include ':PdfView', ':pdfviewsample'
|
||||
include ':gestureimageview'
|
||||
include ':PdfView'
|
||||
Loading…
Reference in New Issue