Initial commit
This commit is contained in:
32
resources/res/layout-land/encode.xml
Normal file
32
resources/res/layout-land/encode.xml
Normal file
@@ -0,0 +1,32 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:gravity="center"
|
||||
android:orientation="horizontal"
|
||||
android:background="@color/encode_view"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:fillViewport="true">
|
||||
<ImageView
|
||||
android:layout_gravity="center_vertical"
|
||||
android:id="@+id/image_view"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="match_parent"
|
||||
android:scaleType="center"/>
|
||||
<ScrollView
|
||||
android:gravity="center"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="match_parent">
|
||||
<TextView
|
||||
android:textColor="@color/contents_text"
|
||||
android:gravity="center"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:id="@+id/contents_text_view"
|
||||
android:paddingTop="8dp"
|
||||
android:paddingRight="8dp"
|
||||
android:paddingBottom="8dp"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textIsSelectable="true"/>
|
||||
</ScrollView>
|
||||
</LinearLayout>
|
64
resources/res/layout-land/share.xml
Normal file
64
resources/res/layout-land/share.xml
Normal file
@@ -0,0 +1,64 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:gravity="center"
|
||||
android:layout_gravity="center"
|
||||
android:orientation="vertical"
|
||||
android:padding="8dp"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content">
|
||||
<TextView
|
||||
android:gravity="center"
|
||||
android:paddingBottom="12dp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/msg_share_explanation"
|
||||
android:textIsSelectable="false"/>
|
||||
<LinearLayout
|
||||
android:orientation="horizontal"
|
||||
android:paddingBottom="12dp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
<ImageView
|
||||
android:paddingRight="24dp"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:src="@drawable/share_via_barcode"
|
||||
android:scaleType="center"
|
||||
android:layout_weight="1"/>
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1">
|
||||
<Button
|
||||
android:id="@+id/share_app_button"
|
||||
android:text="@string/button_share_app"
|
||||
style="@style/ShareButton"/>
|
||||
<Button
|
||||
android:id="@+id/share_contact_button"
|
||||
android:text="@string/button_share_contact"
|
||||
style="@style/ShareButton"/>
|
||||
</LinearLayout>
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1">
|
||||
<Button
|
||||
android:id="@+id/share_bookmark_button"
|
||||
android:text="@string/button_share_bookmark"
|
||||
style="@style/ShareButton"/>
|
||||
<Button
|
||||
android:id="@+id/share_clipboard_button"
|
||||
android:text="@string/button_share_clipboard"
|
||||
style="@style/ShareButton"/>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
<EditText
|
||||
android:id="@+id/share_text_view"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:hint="@string/msg_share_text"
|
||||
android:singleLine="true"
|
||||
android:selectAllOnFocus="true"/>
|
||||
</LinearLayout>
|
Reference in New Issue
Block a user