logincheck + togglepasswordvisibility added
This commit is contained in:
parent
c690cbfde7
commit
41df46611d
@ -1,5 +1,6 @@
|
|||||||
package de.jg_cody.Teraplex.ui.home;
|
package de.jg_cody.Teraplex.ui.home;
|
||||||
|
|
||||||
|
import android.annotation.SuppressLint;
|
||||||
import android.app.Activity;
|
import android.app.Activity;
|
||||||
import android.app.AlertDialog;
|
import android.app.AlertDialog;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
@ -10,8 +11,11 @@ import android.graphics.drawable.BitmapDrawable;
|
|||||||
import android.media.MediaPlayer;
|
import android.media.MediaPlayer;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.os.Vibrator;
|
import android.os.Vibrator;
|
||||||
|
import android.text.method.HideReturnsTransformationMethod;
|
||||||
|
import android.text.method.PasswordTransformationMethod;
|
||||||
import android.util.Base64;
|
import android.util.Base64;
|
||||||
import android.view.LayoutInflater;
|
import android.view.LayoutInflater;
|
||||||
|
import android.view.MotionEvent;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.view.ViewGroup;
|
import android.view.ViewGroup;
|
||||||
import android.widget.Button;
|
import android.widget.Button;
|
||||||
@ -24,11 +28,16 @@ import androidx.annotation.NonNull;
|
|||||||
import androidx.fragment.app.Fragment;
|
import androidx.fragment.app.Fragment;
|
||||||
import androidx.lifecycle.ViewModelProvider;
|
import androidx.lifecycle.ViewModelProvider;
|
||||||
|
|
||||||
|
import com.jcraft.jsch.Channel;
|
||||||
|
import com.jcraft.jsch.JSch;
|
||||||
|
import com.jcraft.jsch.Session;
|
||||||
|
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
|
|
||||||
import de.jg_cody.Teraplex.MainActivity;
|
import de.jg_cody.Teraplex.MainActivity;
|
||||||
import de.jg_cody.Teraplex.R;
|
import de.jg_cody.Teraplex.R;
|
||||||
import de.jg_cody.Teraplex.SSH_connection;
|
import de.jg_cody.Teraplex.SSH_connection;
|
||||||
|
import de.jg_cody.Teraplex.ui.terminal.Terminal;
|
||||||
|
|
||||||
public class HomeFragment extends Fragment {
|
public class HomeFragment extends Fragment {
|
||||||
|
|
||||||
@ -37,18 +46,22 @@ public class HomeFragment extends Fragment {
|
|||||||
public static EditText ipInput;
|
public static EditText ipInput;
|
||||||
public static EditText userInput;
|
public static EditText userInput;
|
||||||
public static EditText passwordInput;
|
public static EditText passwordInput;
|
||||||
|
boolean isPasswordVisible = false;
|
||||||
Button reboot_Button;
|
Button reboot_Button;
|
||||||
Button shutdown_Button;
|
Button shutdown_Button;
|
||||||
Button loginButton;
|
Button loginButton;
|
||||||
Button logoutButton;
|
Button logoutButton;
|
||||||
|
Terminal terminal;
|
||||||
Button wlan_aus_Button;
|
Button wlan_aus_Button;
|
||||||
Button wlan_an_Button;
|
Button wlan_an_Button;
|
||||||
Button kodian;
|
Button kodian;
|
||||||
Button kodiaus;
|
Button kodiaus;
|
||||||
|
ImageView togglepassword;
|
||||||
|
|
||||||
|
|
||||||
private HomeViewModel homeViewModel;
|
private HomeViewModel homeViewModel;
|
||||||
|
|
||||||
|
@SuppressLint("ClickableViewAccessibility")
|
||||||
public View onCreateView(@NonNull LayoutInflater inflater,
|
public View onCreateView(@NonNull LayoutInflater inflater,
|
||||||
ViewGroup container, Bundle savedInstanceState) {
|
ViewGroup container, Bundle savedInstanceState) {
|
||||||
SharedPreferences prefs = requireContext().getSharedPreferences("appsettings", Context.MODE_PRIVATE);
|
SharedPreferences prefs = requireContext().getSharedPreferences("appsettings", Context.MODE_PRIVATE);
|
||||||
@ -80,13 +93,16 @@ public class HomeFragment extends Fragment {
|
|||||||
loginButton = (Button) root.findViewById(R.id.loginButton);
|
loginButton = (Button) root.findViewById(R.id.loginButton);
|
||||||
reboot_Button = (Button) root.findViewById(R.id.reboot);
|
reboot_Button = (Button) root.findViewById(R.id.reboot);
|
||||||
shutdown_Button = (Button) root.findViewById(R.id.shutdown);
|
shutdown_Button = (Button) root.findViewById(R.id.shutdown);
|
||||||
|
togglepassword = (ImageView) root.findViewById(R.id.togglepassword);
|
||||||
SharedPreferences t = requireContext().getSharedPreferences("appsettings", Context.MODE_PRIVATE);
|
SharedPreferences t = requireContext().getSharedPreferences("appsettings", Context.MODE_PRIVATE);
|
||||||
if (user == null || ip == null) {
|
if (user == null || ip == null) {
|
||||||
loginButton.setVisibility(View.VISIBLE);
|
loginButton.setVisibility(View.VISIBLE);
|
||||||
|
togglepassword.setVisibility(View.VISIBLE);
|
||||||
reboot_Button.setVisibility(View.GONE);
|
reboot_Button.setVisibility(View.GONE);
|
||||||
shutdown_Button.setVisibility(View.GONE);
|
shutdown_Button.setVisibility(View.GONE);
|
||||||
} else {
|
} else {
|
||||||
loginButton.setVisibility(View.INVISIBLE);
|
loginButton.setVisibility(View.INVISIBLE);
|
||||||
|
togglepassword.setVisibility(View.INVISIBLE);
|
||||||
ipInput.setVisibility(View.GONE);
|
ipInput.setVisibility(View.GONE);
|
||||||
userInput.setVisibility(View.GONE);
|
userInput.setVisibility(View.GONE);
|
||||||
passwordInput.setVisibility(View.GONE);
|
passwordInput.setVisibility(View.GONE);
|
||||||
@ -108,7 +124,7 @@ public class HomeFragment extends Fragment {
|
|||||||
|
|
||||||
// Specifying a listener allows you to take an action before dismissing the dialog.
|
// Specifying a listener allows you to take an action before dismissing the dialog.
|
||||||
// The dialog is automatically dismissed when a dialog button is clicked.
|
// The dialog is automatically dismissed when a dialog button is clicked.
|
||||||
.setPositiveButton(android.R.string.yes, null )
|
.setPositiveButton(android.R.string.yes, null)
|
||||||
.create();
|
.create();
|
||||||
Objects.requireNonNull(mDialog.getWindow()).setBackgroundDrawableResource(R.drawable.button_round);
|
Objects.requireNonNull(mDialog.getWindow()).setBackgroundDrawableResource(R.drawable.button_round);
|
||||||
mDialog.getWindow().getAttributes().windowAnimations = R.style.DialogAnimation; //style id
|
mDialog.getWindow().getAttributes().windowAnimations = R.style.DialogAnimation; //style id
|
||||||
@ -117,17 +133,43 @@ public class HomeFragment extends Fragment {
|
|||||||
user = userInput.getText().toString();
|
user = userInput.getText().toString();
|
||||||
password = passwordInput.getText().toString();
|
password = passwordInput.getText().toString();
|
||||||
ip = ipInput.getText().toString();
|
ip = ipInput.getText().toString();
|
||||||
|
new Thread(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
try {
|
||||||
|
JSch jsch = new JSch();
|
||||||
|
Session session;
|
||||||
|
session = jsch.getSession(user, ip, 22);
|
||||||
|
session.setPassword(password);
|
||||||
|
session.setUserInfo(new Terminal.MyUserInfo() {
|
||||||
|
@Override
|
||||||
|
public String getPassword() {
|
||||||
|
return super.getPassword();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
session.setConfig("StrictHostKeyChecking", "no");
|
||||||
|
System.out.println("CONNECT");
|
||||||
|
session.connect(30000);
|
||||||
|
Channel channel = session.openChannel("shell");
|
||||||
|
channel.connect(3 * 1000);
|
||||||
|
session.disconnect();
|
||||||
|
System.out.println("DISCONNECT");
|
||||||
|
getActivity().runOnUiThread(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
Toast.makeText(getContext(), "CONNECTED", Toast.LENGTH_SHORT).show();
|
||||||
SharedPreferences p = requireContext().getSharedPreferences("appsettings", Context.MODE_PRIVATE);
|
SharedPreferences p = requireContext().getSharedPreferences("appsettings", Context.MODE_PRIVATE);
|
||||||
p.edit().putString("user", user).putString("password", password).putString("ip", ip).apply();
|
p.edit().putString("user", user).putString("password", password).putString("ip", ip).apply();
|
||||||
Toast.makeText(getContext(), getString(R.string.login_saved), Toast.LENGTH_SHORT).show();
|
|
||||||
if (user == null || ip == null) {
|
if (user == null || ip == null) {
|
||||||
login_data.setText("");
|
login_data.setText("");
|
||||||
reboot_Button.setVisibility(View.GONE);
|
reboot_Button.setVisibility(View.GONE);
|
||||||
shutdown_Button.setVisibility(View.GONE);
|
shutdown_Button.setVisibility(View.GONE);
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
login_data.setText(getString(R.string.sie_sind_als_angemeldet).replace("{IP}", ip).replace("{USERNAME}", user));
|
login_data.setText(getString(R.string.sie_sind_als_angemeldet).replace("{IP}", ip).replace("{USERNAME}", user));
|
||||||
logoutButton.setVisibility(View.VISIBLE);
|
logoutButton.setVisibility(View.VISIBLE);
|
||||||
loginButton.setVisibility(View.INVISIBLE);
|
loginButton.setVisibility(View.INVISIBLE);
|
||||||
|
togglepassword.setVisibility(View.INVISIBLE);
|
||||||
ipInput.setVisibility(View.GONE);
|
ipInput.setVisibility(View.GONE);
|
||||||
userInput.setVisibility(View.GONE);
|
userInput.setVisibility(View.GONE);
|
||||||
passwordInput.setVisibility(View.GONE);
|
passwordInput.setVisibility(View.GONE);
|
||||||
@ -135,6 +177,21 @@ public class HomeFragment extends Fragment {
|
|||||||
shutdown_Button.setVisibility(View.VISIBLE);
|
shutdown_Button.setVisibility(View.VISIBLE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
});
|
||||||
|
} catch (Exception e) {
|
||||||
|
getActivity().runOnUiThread(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
e.printStackTrace();
|
||||||
|
Toast.makeText(getContext(), "INVALID INPUT", Toast.LENGTH_SHORT).show();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}).start();
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
logoutButton = (Button) root.findViewById(R.id.logoutButton);
|
logoutButton = (Button) root.findViewById(R.id.logoutButton);
|
||||||
@ -201,8 +258,6 @@ public class HomeFragment extends Fragment {
|
|||||||
mDialog.show();
|
mDialog.show();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
shutdown_Button = (Button) root.findViewById(R.id.shutdown);
|
shutdown_Button = (Button) root.findViewById(R.id.shutdown);
|
||||||
@ -246,6 +301,27 @@ public class HomeFragment extends Fragment {
|
|||||||
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
return root;
|
|
||||||
|
|
||||||
|
if (togglepassword.getVisibility() == View.VISIBLE) {
|
||||||
|
togglepassword.setOnTouchListener(new View.OnTouchListener() {
|
||||||
|
@Override
|
||||||
|
public boolean onTouch(View view, MotionEvent motionEvent) {
|
||||||
|
if (isPasswordVisible == true) {
|
||||||
|
passwordInput.setTransformationMethod(HideReturnsTransformationMethod.getInstance());
|
||||||
|
isPasswordVisible = false;
|
||||||
|
} else {
|
||||||
|
passwordInput.setTransformationMethod(PasswordTransformationMethod.getInstance());
|
||||||
|
isPasswordVisible = true;
|
||||||
}
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return root;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@ public class Terminal {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
JSch jsch = new JSch();
|
JSch jsch = new JSch();
|
||||||
Session session = jsch.getSession(HomeFragment.user, HomeFragment.ip, 22);
|
session = jsch.getSession(HomeFragment.user, HomeFragment.ip, 22);
|
||||||
session.setPassword(HomeFragment.password);
|
session.setPassword(HomeFragment.password);
|
||||||
|
|
||||||
session.setUserInfo(new MyUserInfo() {
|
session.setUserInfo(new MyUserInfo() {
|
||||||
@ -59,26 +59,30 @@ public class Terminal {
|
|||||||
channel.setOutputStream(Output);
|
channel.setOutputStream(Output);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
channel.connect(3 * 1000);
|
channel.connect(3 * 1000);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getTerminalOutput(){
|
public String getTerminalOutput() {
|
||||||
return new String(Output.toByteArray()).replaceAll("(\u001B\\[\\d+;\\d+m)+", "").replaceAll("\u2584", "");
|
return new String(Output.toByteArray()).replaceAll("\u001B\\[[;\\d]*m", "");
|
||||||
}
|
}
|
||||||
public void sendTerminalCommand(String terminalcommand){
|
|
||||||
|
public void sendTerminalCommand(String terminalcommand) {
|
||||||
try {
|
try {
|
||||||
Input.write((terminalcommand+"\n").getBytes());
|
Input.write((terminalcommand + "\n").getBytes());
|
||||||
Input.flush();
|
Input.flush();
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void closeTerminal() {
|
||||||
|
session.disconnect();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
public static abstract class MyUserInfo
|
public static abstract class MyUserInfo
|
||||||
implements UserInfo, UIKeyboardInteractive {
|
implements UserInfo, UIKeyboardInteractive {
|
||||||
public String getPassword() {
|
public String getPassword() {
|
||||||
@ -111,5 +115,6 @@ public class Terminal {
|
|||||||
boolean[] echo) {
|
boolean[] echo) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -7,6 +7,8 @@ import android.view.KeyEvent;
|
|||||||
import android.view.LayoutInflater;
|
import android.view.LayoutInflater;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.view.ViewGroup;
|
import android.view.ViewGroup;
|
||||||
|
import android.view.inputmethod.EditorInfo;
|
||||||
|
import android.widget.Button;
|
||||||
import android.widget.EditText;
|
import android.widget.EditText;
|
||||||
import android.widget.ScrollView;
|
import android.widget.ScrollView;
|
||||||
import android.widget.TextView;
|
import android.widget.TextView;
|
||||||
@ -22,6 +24,7 @@ public class TerminalFragment extends Fragment {
|
|||||||
|
|
||||||
public static String command;
|
public static String command;
|
||||||
|
|
||||||
|
Button send_button;
|
||||||
EditText terminal_edit_text;
|
EditText terminal_edit_text;
|
||||||
TextView terminal_textView;
|
TextView terminal_textView;
|
||||||
Terminal terminal;
|
Terminal terminal;
|
||||||
@ -47,18 +50,49 @@ public class TerminalFragment extends Fragment {
|
|||||||
Toast.makeText(getContext(), ("test"), Toast.LENGTH_SHORT).show();
|
Toast.makeText(getContext(), ("test"), Toast.LENGTH_SHORT).show();
|
||||||
scrollView = (ScrollView) root.findViewById((R.id.scrollView));
|
scrollView = (ScrollView) root.findViewById((R.id.scrollView));
|
||||||
terminal_edit_text = (EditText) root.findViewById(R.id.terminal_edit_text);
|
terminal_edit_text = (EditText) root.findViewById(R.id.terminal_edit_text);
|
||||||
terminal_edit_text.setOnKeyListener(new View.OnKeyListener() {
|
send_button = (Button) root.findViewById(R.id.send_button);
|
||||||
|
send_button.setOnClickListener(new View.OnClickListener() {
|
||||||
@Override
|
@Override
|
||||||
public boolean onKey(View view, int keyCode, KeyEvent keyEvent) {
|
public void onClick(View view) {
|
||||||
if ((keyEvent.getAction() == KeyEvent.ACTION_DOWN) && (keyCode == KeyEvent.KEYCODE_ENTER)) {
|
|
||||||
|
if (terminal != null) {
|
||||||
terminal.sendTerminalCommand(terminal_edit_text.getText().toString());
|
terminal.sendTerminalCommand(terminal_edit_text.getText().toString());
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
} else {
|
});
|
||||||
|
terminal_edit_text.setOnEditorActionListener(new EditText.OnEditorActionListener() {
|
||||||
|
@Override
|
||||||
|
public boolean onEditorAction(final TextView v, final int actionId, final KeyEvent event)
|
||||||
|
{
|
||||||
|
boolean handled=false;
|
||||||
|
|
||||||
|
// Some phones disregard the IME setting option in the xml, instead
|
||||||
|
// they send IME_ACTION_UNSPECIFIED so we need to catch that
|
||||||
|
if(EditorInfo.IME_ACTION_DONE==actionId || EditorInfo.IME_ACTION_UNSPECIFIED==actionId)
|
||||||
|
{
|
||||||
|
if (terminal != null) {
|
||||||
|
terminal.sendTerminalCommand(terminal_edit_text.getText().toString());
|
||||||
|
Toast.makeText(getContext(), getString(R.string.login_saved), Toast.LENGTH_SHORT).show();
|
||||||
|
}
|
||||||
|
|
||||||
|
handled=true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return handled;
|
||||||
|
}
|
||||||
|
});
|
||||||
terminal_textView = (TextView) root.findViewById(R.id.terminal_textView);
|
terminal_textView = (TextView) root.findViewById(R.id.terminal_textView);
|
||||||
new Thread() {
|
new Thread() {
|
||||||
public void run() {
|
public void run() {
|
||||||
terminal = new Terminal();
|
terminal = new Terminal();
|
||||||
|
requireActivity().runOnUiThread(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
Toast.makeText(getContext(),"VERBUNDEN", Toast.LENGTH_SHORT).show();
|
||||||
|
}
|
||||||
|
});
|
||||||
boolean isFragmentActive = true;
|
boolean isFragmentActive = true;
|
||||||
while (isFragmentActive) {
|
while (isFragmentActive) {
|
||||||
Fragment myFragment = (Fragment) requireActivity().getSupportFragmentManager().findFragmentById(R.id.fragment_terminal);
|
Fragment myFragment = (Fragment) requireActivity().getSupportFragmentManager().findFragmentById(R.id.fragment_terminal);
|
||||||
@ -94,11 +128,6 @@ public class TerminalFragment extends Fragment {
|
|||||||
}
|
}
|
||||||
}.start();
|
}.start();
|
||||||
}
|
}
|
||||||
return false;
|
|
||||||
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
return root;
|
return root;
|
||||||
@ -107,6 +136,11 @@ public class TerminalFragment extends Fragment {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onDestroy() {
|
public void onDestroy() {
|
||||||
|
if (terminal != null) {
|
||||||
|
terminal.closeTerminal();
|
||||||
|
}
|
||||||
super.onDestroy();
|
super.onDestroy();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
9
app/src/main/res/drawable/visibility_black_24dp.xml
Normal file
9
app/src/main/res/drawable/visibility_black_24dp.xml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:width="24dp"
|
||||||
|
android:height="24dp"
|
||||||
|
android:viewportWidth="24"
|
||||||
|
android:viewportHeight="24">
|
||||||
|
<path
|
||||||
|
android:pathData="M12,6c3.79,0 7.17,2.13 8.82,5.5C19.17,14.87 15.79,17 12,17s-7.17,-2.13 -8.82,-5.5C4.83,8.13 8.21,6 12,6m0,-2C7,4 2.73,7.11 1,11.5 2.73,15.89 7,19 12,19s9.27,-3.11 11,-7.5C21.27,7.11 17,4 12,4zM12,9c1.38,0 2.5,1.12 2.5,2.5S13.38,14 12,14s-2.5,-1.12 -2.5,-2.5S10.62,9 12,9m0,-2c-2.48,0 -4.5,2.02 -4.5,4.5S9.52,16 12,16s4.5,-2.02 4.5,-4.5S14.48,7 12,7z"
|
||||||
|
android:fillColor="#000000"/>
|
||||||
|
</vector>
|
@ -159,7 +159,8 @@
|
|||||||
app:layout_constraintEnd_toEndOf="@+id/text_home"
|
app:layout_constraintEnd_toEndOf="@+id/text_home"
|
||||||
app:layout_constraintHorizontal_bias="0.5"
|
app:layout_constraintHorizontal_bias="0.5"
|
||||||
app:layout_constraintStart_toStartOf="@+id/text_home"
|
app:layout_constraintStart_toStartOf="@+id/text_home"
|
||||||
app:layout_constraintTop_toBottomOf="@+id/loginuserInput" />
|
app:layout_constraintTop_toBottomOf="@+id/loginuserInput"
|
||||||
|
app:passwordToggleEnabled="true"/>
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
android:id="@+id/loginButton"
|
android:id="@+id/loginButton"
|
||||||
@ -189,6 +190,17 @@
|
|||||||
app:layout_constraintEnd_toEndOf="@+id/text_home"
|
app:layout_constraintEnd_toEndOf="@+id/text_home"
|
||||||
app:layout_constraintTop_toBottomOf="@+id/loginpasswordInput" />
|
app:layout_constraintTop_toBottomOf="@+id/loginpasswordInput" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/togglepassword"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginStart="-30dp"
|
||||||
|
android:src="@drawable/visibility_black_24dp"
|
||||||
|
app:tint="@color/mtrl_btn_text_color_selector"
|
||||||
|
app:layout_constraintBottom_toBottomOf="@+id/loginpasswordInput"
|
||||||
|
app:layout_constraintStart_toEndOf="@+id/loginpasswordInput"
|
||||||
|
app:layout_constraintTop_toBottomOf="@+id/loginuserInput" />
|
||||||
|
|
||||||
|
|
||||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
|
|
||||||
|
@ -1,12 +1,11 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<androidx.constraintlayout.widget.ConstraintLayout
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:clickable="true"
|
|
||||||
android:id="@+id/fragment_terminal"
|
android:id="@+id/fragment_terminal"
|
||||||
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
|
android:clickable="true"
|
||||||
tools:context=".ui.terminal.TerminalFragment">
|
tools:context=".ui.terminal.TerminalFragment">
|
||||||
|
|
||||||
<ScrollView
|
<ScrollView
|
||||||
@ -14,32 +13,36 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="0dp"
|
android:layout_height="0dp"
|
||||||
android:layout_marginBottom="10dp"
|
android:layout_marginBottom="10dp"
|
||||||
|
android:scrollbars="horizontal|vertical"
|
||||||
app:layout_constraintBottom_toTopOf="@+id/divider2"
|
app:layout_constraintBottom_toTopOf="@+id/divider2"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toTopOf="parent">
|
app:layout_constraintTop_toTopOf="parent">
|
||||||
|
|
||||||
|
<HorizontalScrollView
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:orientation="vertical">
|
android:orientation="vertical">
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/terminal_textView"
|
android:id="@+id/terminal_textView"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="wrap_content"
|
||||||
android:text="TextView"
|
android:text="TextView"
|
||||||
android:textColor="#FFFFFF" />
|
android:textColor="#FFFFFF" />
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
</HorizontalScrollView>
|
||||||
</ScrollView>
|
</ScrollView>
|
||||||
|
|
||||||
<View
|
<View
|
||||||
android:id="@+id/divider2"
|
android:id="@+id/divider2"
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="2dp"
|
android:layout_height="2dp"
|
||||||
android:layout_marginStart="10dp"
|
|
||||||
android:layout_marginEnd="10dp"
|
|
||||||
android:layout_marginBottom="10dp"
|
android:layout_marginBottom="10dp"
|
||||||
android:background="@drawable/background_full"
|
android:background="@drawable/background_full"
|
||||||
app:layout_constraintBottom_toTopOf="@+id/terminal_edit_text"
|
app:layout_constraintBottom_toTopOf="@+id/terminal_edit_text"
|
||||||
@ -49,16 +52,27 @@
|
|||||||
<EditText
|
<EditText
|
||||||
android:id="@+id/terminal_edit_text"
|
android:id="@+id/terminal_edit_text"
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="40dp"
|
||||||
android:layout_marginStart="10dp"
|
android:layout_marginStart="10dp"
|
||||||
android:layout_marginEnd="10dp"
|
|
||||||
android:layout_marginBottom="10dp"
|
android:layout_marginBottom="10dp"
|
||||||
android:ems="10"
|
android:ems="10"
|
||||||
android:inputType="textPersonName"
|
|
||||||
android:hint="type commands"
|
android:hint="type commands"
|
||||||
|
android:imeOptions="actionDone"
|
||||||
|
android:inputType="text"
|
||||||
android:textColor="#FFFFFF"
|
android:textColor="#FFFFFF"
|
||||||
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toStartOf="@+id/send_button"
|
||||||
app:layout_constraintStart_toStartOf="parent" />
|
app:layout_constraintStart_toStartOf="parent" />
|
||||||
|
|
||||||
|
<Button
|
||||||
|
android:id="@+id/send_button"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="40dp"
|
||||||
|
android:layout_marginEnd="10dp"
|
||||||
|
android:layout_marginBottom="10dp"
|
||||||
|
android:background="@drawable/button_right"
|
||||||
|
android:text="SEND"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent" />
|
||||||
|
|
||||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
Loading…
Reference in New Issue
Block a user