2014-07-03 07:48:39 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-12-24 05:39:21 +01:00
|
|
|
<!--
|
|
|
|
~ Twidere - Twitter client for Android
|
|
|
|
~
|
|
|
|
~ Copyright (C) 2012-2014 Mariotaku Lee <mariotaku.lee@gmail.com>
|
|
|
|
~
|
|
|
|
~ This program is free software: you can redistribute it and/or modify
|
|
|
|
~ it under the terms of the GNU General Public License as published by
|
|
|
|
~ the Free Software Foundation, either version 3 of the License, or
|
|
|
|
~ (at your option) any later version.
|
|
|
|
~
|
|
|
|
~ This program is distributed in the hope that it will be useful,
|
|
|
|
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
~ GNU General Public License for more details.
|
|
|
|
~
|
|
|
|
~ You should have received a copy of the GNU General Public License
|
|
|
|
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
-->
|
|
|
|
|
2014-11-09 06:02:43 +01:00
|
|
|
<FrameLayout
|
2014-12-06 15:40:22 +01:00
|
|
|
android:id="@+id/media_preview"
|
2014-12-24 05:39:21 +01:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-11-09 06:02:43 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2014-07-28 12:42:48 +02:00
|
|
|
<LinearLayout
|
2014-12-07 16:13:07 +01:00
|
|
|
android:id="@+id/media_preview_grid"
|
2014-07-28 12:42:48 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-10-22 09:36:41 +02:00
|
|
|
android:orientation="vertical"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2014-07-28 12:42:48 +02:00
|
|
|
<LinearLayout
|
2014-12-07 16:13:07 +01:00
|
|
|
android:id="@+id/media_preview_load"
|
2014-07-28 12:42:48 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/action_button_size"
|
|
|
|
android:background="?android:selectableItemBackground"
|
|
|
|
android:gravity="center"
|
2014-12-24 05:39:21 +01:00
|
|
|
android:orientation="horizontal"
|
2014-07-28 12:42:48 +02:00
|
|
|
android:visibility="gone">
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-01-14 09:47:51 +01:00
|
|
|
<org.mariotaku.twidere.view.ActionIconThemedTextView
|
2014-07-28 12:42:48 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
2014-12-24 05:39:21 +01:00
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:drawableLeft="@drawable/ic_action_gallery"
|
2014-12-06 15:40:22 +01:00
|
|
|
android:text="@string/load_media"
|
2014-07-28 12:42:48 +02:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
2014-10-22 09:36:41 +02:00
|
|
|
android:textStyle="bold"/>
|
2014-07-28 12:42:48 +02:00
|
|
|
</LinearLayout>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
|
|
|
</FrameLayout>
|