layout fix

This commit is contained in:
NudeDude 2019-06-16 11:44:04 +02:00
parent e50f257a7e
commit b785b3b3a7
3 changed files with 55 additions and 26 deletions

View File

@ -243,18 +243,24 @@
android:layout_marginTop="@dimen/margin_layout" android:layout_marginTop="@dimen/margin_layout"
android:orientation="horizontal"> android:orientation="horizontal">
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="2"
android:singleLine="true"
android:text="@string/proxy_address_text" />
<EditText <EditText
android:id="@+id/edit_proxyadress" android:id="@+id/edit_proxyadress"
android:layout_width="0dp" android:layout_width="0dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginRight="@dimen/padding_side" android:layout_weight="4"
android:layout_marginEnd="@dimen/padding_side"
android:background="@android:color/transparent" android:background="@android:color/transparent"
android:ems="10"
android:hint="@string/enter_proxy" android:hint="@string/enter_proxy"
android:inputType="textPersonName" android:inputType="textPersonName"
android:singleLine="true" android:singleLine="true"
android:layout_weight="4" android:textSize="14sp" />
android:ems="10" />
<EditText <EditText
android:id="@+id/edit_proxyport" android:id="@+id/edit_proxyport"
@ -265,29 +271,48 @@
android:ems="10" android:ems="10"
android:hint="@string/proxy_port" android:hint="@string/proxy_port"
android:inputType="number" android:inputType="number"
android:singleLine="true" /> android:singleLine="true"
android:textSize="14sp" />
</LinearLayout> </LinearLayout>
<EditText <LinearLayout
android:id="@+id/edit_proxyuser"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="match_parent"
android:background="@android:color/transparent" android:orientation="horizontal">
android:hint="@string/edit_proxyuser"
android:inputType="textPersonName"
android:singleLine="true"
android:ems="10" />
<EditText <TextView
android:id="@+id/edit_proxypass" android:layout_width="0dp"
android:layout_width="match_parent" android:layout_height="match_parent"
android:layout_height="wrap_content" android:layout_weight="2"
android:background="@android:color/transparent" android:singleLine="true"
android:hint="@string/proxy_password" android:text="@string/proxy_authentication" />
android:inputType="textPassword"
android:singleLine="true" <EditText
android:ems="10" /> android:id="@+id/edit_proxyuser"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="3"
android:background="@android:color/transparent"
android:ems="10"
android:hint="@string/edit_proxyuser"
android:inputType="textPersonName"
android:singleLine="true"
android:textSize="14sp" />
<EditText
android:id="@+id/edit_proxypass"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2"
android:background="@android:color/transparent"
android:ems="10"
android:hint="@string/proxy_password"
android:inputType="textPassword"
android:singleLine="true"
android:textSize="14sp" />
</LinearLayout>
</LinearLayout> </LinearLayout>

View File

@ -103,15 +103,17 @@
<string name="tweet_unfavored">tweet aus den favoriten entfernt!</string> <string name="tweet_unfavored">tweet aus den favoriten entfernt!</string>
<string name="proxy_port">Port</string> <string name="proxy_port">Port</string>
<string name="proxy_settings">Proxy Einstellung</string> <string name="proxy_settings">Proxy Einstellung</string>
<string name="verifierbutton" translatable="false">Login</string> <string name="verifierbutton">Login</string>
<string name="woeid" translatable="false">World ID</string> <string name="woeid">World ID</string>
<string name="popup">Popup</string> <string name="popup">Popup</string>
<string name="pin">PIN</string> <string name="pin">PIN</string>
<string name="following" translatable="false">Following</string> <string name="following">Following</string>
<string name="follower" translatable="false">Follower</string> <string name="follower">Follower</string>
<string name="enter_proxy">Proxy IP oder Adresse</string> <string name="enter_proxy">Proxy IP oder Adresse</string>
<string name="edit_proxyuser">Nutzername</string> <string name="edit_proxyuser">Nutzername</string>
<string name="app_name">Shitter</string> <string name="app_name">Shitter</string>
<string name="tweet">Tweet</string> <string name="tweet">Tweet</string>
<string name="proxy_password">Passwort</string> <string name="proxy_password">Passwort</string>
<string name="proxy_address_text">HTTPS Proxy</string>
<string name="proxy_authentication">Authentifierung</string>
</resources> </resources>

View File

@ -114,4 +114,6 @@
<string name="proxy_port">Port</string> <string name="proxy_port">Port</string>
<string name="edit_proxyuser">username</string> <string name="edit_proxyuser">username</string>
<string name="proxy_password">password</string> <string name="proxy_password">password</string>
<string name="proxy_address_text">HTTPS Proxy</string>
<string name="proxy_authentication">Authentication</string>
</resources> </resources>