Instagram Multiple Photo Post
- By NewLife211
- VIP Lounge
- 3 Replies
I have the same problems. And in general, there are quite a few bugs in Instagram that really annoy me a lot, but which no one bothers to fix.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Your Note 3 is running Android 4.x (KitKat) or 5.x (Lollipop) isn't it? Your Z Fold 4 is running version 12, yes? Don't expect your Note 3 to have the same feature set as your Fold -- there's a more than significant difference between those two models as far as hardware configurations, the operating systems, and the user interface options.
Try what @Dannydet suggested, install and configure the Nova Launcher app on your Note. Or just keep using Samsung's TouchWiz launcher, and remove the apps you don't want on the Home screen when you finish setting up your Note for your trip. Is it that much of an inconvenience? How often are you going to be installing new apps once you're done setting things up?
Still think about the long term, is he going to be active, like shooting hoops, playing soccer, bowling et all, video games help that plentful.Interesting question, by the way. Looking at my son, I can say that playing games improves fine motor skills and concentration, but it can't be counted as exercise.
care to explain in more detail? how was it removed? was it deleted? was it all of your chats? or a specfic chat that was removed?My WhatsApp chats remove please Restore.
EXTRA INFO
- Rating: 4.5
- Installs: 100+
- Download Size: 26M
- Version: 2.1.0.11
package com.huth.system;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.TextView;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.Statement;
public class MainActivity extends AppCompatActivity {
Connection connect;
String ConnectionResult = "";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void GetTextFromSQL(View v)
{
TextView tx1 = (TextView) findViewById(R.id.textView);
TextView tx2 = (TextView) findViewById(R.id.textView2);
try {
ConnectionHelper connectionHelper = new ConnectionHelper();
connect = connectionHelper.connectionclass();
if(connect!=null)
{
String query = "SELECT * FROM `app`.`app_user` where id='1';";
Statement st = connect.createStatement();
ResultSet rs = st.executeQuery(query);
while (rs.next()){
tx1.setText(rs.getString( 1));
tx2.setText(rs.getString( 2));
}
}
else
{
ConnectionResult = "Check Connection";
}
}
catch (Exception ex){
Log.e("error2", ex.getMessage());
}
}
}
package com.huth.system;
import android.annotation.SuppressLint;
import android.os.StrictMode;
import android.util.Log;
import java.sql.Connection;
import java.sql.DriverManager;
public class ConnectionHelper {
Connection con;
String uname, pass, ip, port,database;
@SuppressLint("NewApi")
public Connection connectionclass(){
ip= "*******************";
port = "*****************";
uname = "*************";
pass = "****************";
database = "************";
StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
StrictMode.setThreadPolicy(policy);
Connection connection = null;
String ConnectionURL = null;
try{
Class.forName("net.sourceforge.jtds.jdbc.Driver");
ConnectionURL = "jdbc:jtds:sqlserver://"+ ip + ":"+ port+";"+ "databasename="+ database+";user="+uname+";password="+pass+";";
connection = DriverManager.getConnection(ConnectionURL);
}
catch (Exception ex){
Log.e("error", ex.getMessage());
}
return connection;
}
}
E/error: I/O Error: Unknown packet type 0x63