New Icon & Tabs: Google Maps 15th Birthday
- By Unforgiven
- Apps & Games
- 2 Replies
I just got the updated icon in Chrome. Hate it. 

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.

I can live with it, but I was hoping there would be a way without disabling google voice search.
Yes, Google setting navigation is terrible.
I agree, I think it's intentional. I thought Windows was bad.
Thanks much,
James
Keep up the good work. Honestly... the fact that you got this far and are posting to Android Forums asking for help and advice is a great sign. Keep coming back and letting us know how you're doing as things develop!
Thanks for the reply,
It is the dual-SIM version and with the video I can now see there is a slot above SIM 1. What would be a reasonable capacity card for storing a lot of music files?
Thank you for the suggestions. I spent almost 10 mins setting up the app choosing the artist I like from a large list and now play its customized list, which I assume is adjusted if I thumb up or down a tune. Although it's not required, I find that feature neat. Is either of those apps have something alike?
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".test">
<com.example.tictactoebot.Activities.SquareGridLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:background="@color/black">
<ImageView
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@color/white"
android:layout_row="0"
android:layout_column="0"
android:layout_rowWeight="1"
android:layout_columnWeight="1"
android:layout_margin="10dp"/>
<ImageView
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@color/white"
android:layout_row="0"
android:layout_column="1"
android:layout_rowWeight="1"
android:layout_columnWeight="1"
android:layout_margin="10dp"/>
<ImageView
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@color/white"
android:layout_row="0"
android:layout_column="2"
android:layout_rowWeight="1"
android:layout_columnWeight="1"
android:layout_margin="10dp"/>
<ImageView
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@color/white"
android:layout_row="1"
android:layout_column="0"
android:layout_rowWeight="1"
android:layout_columnWeight="1"
android:layout_margin="10dp"/>
<ImageView
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@color/white"
android:layout_row="1"
android:layout_column="1"
android:layout_rowWeight="1"
android:layout_columnWeight="1"
android:layout_margin="10dp"/>
<ImageView
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@color/white"
android:layout_row="1"
android:layout_column="2"
android:layout_rowWeight="1"
android:layout_columnWeight="1"
android:layout_margin="10dp"/>
<ImageView
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@color/white"
android:layout_row="2"
android:layout_column="0"
android:layout_rowWeight="1"
android:layout_columnWeight="1"
android:layout_margin="10dp"/>
<ImageView
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@color/white"
android:layout_row="2"
android:layout_column="1"
android:layout_rowWeight="1"
android:layout_columnWeight="1"
android:layout_margin="10dp"/>
<ImageView
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@color/white"
android:layout_row="2"
android:layout_column="2"
android:layout_rowWeight="1"
android:layout_columnWeight="1"
android:layout_margin="10dp"/>
</com.example.tictactoebot.Activities.SquareGridLayout>
private Square[][] board;
private static int boardSize = 3;
private SquareGridLayout grid;
private int squareMargin = 5;
public TicTacToeBoard() {
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_tic_tac_toe_board, container, false);
FrameLayout frame = view.findViewById(R.id.tic_tac_toe_board);
frame.setBackgroundColor(getResources().getColor(R.color.colorAccent));
grid = new SquareGridLayout(getContext());
grid.setLayoutParams(new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.MATCH_PARENT,
0
));
grid.setBackgroundColor(getResources().getColor(R.color.colorPrimaryDark));
grid.setRowCount(boardSize);
grid.setColumnCount(boardSize);
frame.addView(grid);
Square square;
board = new Square[boardSize][boardSize];
for(int x=0; x<boardSize; x++){
for(int y=0; y<boardSize; y++){
square = new Square(getContext());
//Square definition
square.setBackgroundColor(getResources().getColor(R.color.white));
square.setEnabled(true);
square.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
humanClickedButton((Square)v);
}
});
//Grid location
GridLayout.LayoutParams gridParams = new GridLayout.LayoutParams();
gridParams.height = 0;
gridParams.width = 0;
gridParams.topMargin = squareMargin;
gridParams.bottomMargin = squareMargin;
gridParams.leftMargin = squareMargin;
gridParams.rightMargin = squareMargin;
if(x == 0){
gridParams.topMargin = 0;
}
else if(x == boardSize-1){
gridParams.bottomMargin = 0;
}
if (y == 0) {
gridParams.leftMargin = 0;
}
else if(y == boardSize-1){
gridParams.rightMargin = 0;
}
gridParams.rowSpec = GridLayout.spec(x, 1f);//Setting weight to 1
gridParams.columnSpec = GridLayout.spec(y, 1f);//Setting weight to 1
square.setLayoutParams(gridParams);
//Store copy locally
board[x][y] = square;
grid.addView(square, (x*3+y));
}
}
return view;
}
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout 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"
tools:context=".Activities.Fragments.TicTacToeBoard"
android:layout_margin="20dp"
android:layout_gravity="center_vertical"
android:id="@+id/tic_tac_toe_board">
</FrameLayout>

Earlier on today I got an email saying an item I have for sale on market place was against copy rights so had been removed.
Since then each time I try and access Facebook either through the app or on Internet browser, on my phone or laptop. It asks me to log in, then identify myself and when I click to go onto the next stage it comes up with a white screen saying connection lost.
My Internet is fine. Everything else is working apart from Facebook messenger.
I have followed every help online I can find. I have rest my phone, factory reset it, deleted and reinstalled the app countless times. I have cleared the cache twice.
I am at a loss please help.
But is my bootloader locked or not?
Knew her family forever too Mr.Javi, so I cannot have the heart to tell them either. They knew me forever too.Yes, that a wise decision and I agree. Nothing good comes from breaking the law. It will bring nothing but trouble and unpleasantness to all concerned. In time, you be glad you kept it cool. Things will get better.
Who are you replying to?ru usin a VPN... virtual private network... xx
This 3-year-old thread was posted as a solution to a problem, and hasn't had any requests for help in a long time.
So the -fact- that the OP hadn't saved their reminder, resulting in its loss, is due to bad programming? Interesting.Guys calendar apps are generally bad due to poor programming, that is a fact..so we cant expect nothing more than just simple use![]()

"Pie".What was Android 9 called?