mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-12 17:57:29 +00:00
38 lines
1.4 KiB
XML
Executable File
38 lines
1.4 KiB
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
tools:context=".activities.Login">
|
|
|
|
<WebView
|
|
android:id="@+id/webView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1" />
|
|
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
style="@style/Widget.AppCompat.ButtonBar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<androidx.appcompat.widget.AppCompatButton
|
|
android:id="@+id/cookies"
|
|
style="@style/Widget.AppCompat.Button.ButtonBar.AlertDialog"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="@string/get_cookies" />
|
|
|
|
<androidx.appcompat.widget.AppCompatButton
|
|
android:id="@+id/refresh"
|
|
style="@style/Widget.AppCompat.Button.ButtonBar.AlertDialog"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="@string/refresh" />
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
|
</LinearLayout>
|